blob: 5dfbff06631c39ffc1a40dc5bdd4243333cc3140 [file] [log] [blame]
Michael Chana4636962009-06-08 18:14:43 -07001/* cnic.c: Broadcom CNIC core network driver.
2 *
Michael Chan1d9cfc42010-02-24 14:42:09 +00003 * Copyright (c) 2006-2010 Broadcom Corporation
Michael Chana4636962009-06-08 18:14:43 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
8 *
9 * Original skeleton written by: John(Zongxi) Chen (zongxi@broadcom.com)
10 * Modified and maintained by: Michael Chan <mchan@broadcom.com>
11 */
12
Joe Perchesddf79b22010-02-17 15:01:54 +000013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Michael Chana4636962009-06-08 18:14:43 -070015#include <linux/module.h>
16
17#include <linux/kernel.h>
18#include <linux/errno.h>
19#include <linux/list.h>
20#include <linux/slab.h>
21#include <linux/pci.h>
22#include <linux/init.h>
23#include <linux/netdevice.h>
24#include <linux/uio_driver.h>
25#include <linux/in.h>
26#include <linux/dma-mapping.h>
27#include <linux/delay.h>
28#include <linux/ethtool.h>
29#include <linux/if_vlan.h>
30#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
31#define BCM_VLAN 1
32#endif
33#include <net/ip.h>
34#include <net/tcp.h>
35#include <net/route.h>
36#include <net/ipv6.h>
37#include <net/ip6_route.h>
David S. Millerc05e85a2009-10-12 23:18:35 -070038#include <net/ip6_checksum.h>
Michael Chana4636962009-06-08 18:14:43 -070039#include <scsi/iscsi_if.h>
40
41#include "cnic_if.h"
42#include "bnx2.h"
Dmitry Kravkov5d1e8592010-07-27 12:31:10 +000043#include "bnx2x/bnx2x_reg.h"
44#include "bnx2x/bnx2x_fw_defs.h"
45#include "bnx2x/bnx2x_hsi.h"
Michael Chane2513062009-10-10 13:46:58 +000046#include "../scsi/bnx2i/57xx_iscsi_constants.h"
47#include "../scsi/bnx2i/57xx_iscsi_hsi.h"
Michael Chana4636962009-06-08 18:14:43 -070048#include "cnic.h"
49#include "cnic_defs.h"
50
51#define DRV_MODULE_NAME "cnic"
Michael Chana4636962009-06-08 18:14:43 -070052
53static char version[] __devinitdata =
54 "Broadcom NetXtreme II CNIC Driver " DRV_MODULE_NAME " v" CNIC_MODULE_VERSION " (" CNIC_MODULE_RELDATE ")\n";
55
56MODULE_AUTHOR("Michael Chan <mchan@broadcom.com> and John(Zongxi) "
57 "Chen (zongxi@broadcom.com");
58MODULE_DESCRIPTION("Broadcom NetXtreme II CNIC Driver");
59MODULE_LICENSE("GPL");
60MODULE_VERSION(CNIC_MODULE_VERSION);
61
Michael Chan8adc92402010-12-23 07:42:57 +000062/* cnic_dev_list modifications are protected by both rtnl and cnic_dev_lock */
Michael Chana4636962009-06-08 18:14:43 -070063static LIST_HEAD(cnic_dev_list);
Michael Chana3ceeeb2010-10-13 14:06:50 +000064static LIST_HEAD(cnic_udev_list);
Michael Chana4636962009-06-08 18:14:43 -070065static DEFINE_RWLOCK(cnic_dev_lock);
66static DEFINE_MUTEX(cnic_lock);
67
Eric Dumazet13707f92011-01-26 19:28:23 +000068static struct cnic_ulp_ops __rcu *cnic_ulp_tbl[MAX_CNIC_ULP_TYPE];
69
70/* helper function, assuming cnic_lock is held */
71static inline struct cnic_ulp_ops *cnic_ulp_tbl_prot(int type)
72{
73 return rcu_dereference_protected(cnic_ulp_tbl[type],
74 lockdep_is_held(&cnic_lock));
75}
Michael Chana4636962009-06-08 18:14:43 -070076
77static int cnic_service_bnx2(void *, void *);
Michael Chan71034ba2009-10-10 13:46:59 +000078static int cnic_service_bnx2x(void *, void *);
Michael Chana4636962009-06-08 18:14:43 -070079static int cnic_ctl(void *, struct cnic_ctl_info *);
80
81static struct cnic_ops cnic_bnx2_ops = {
82 .cnic_owner = THIS_MODULE,
83 .cnic_handler = cnic_service_bnx2,
84 .cnic_ctl = cnic_ctl,
85};
86
Michael Chan71034ba2009-10-10 13:46:59 +000087static struct cnic_ops cnic_bnx2x_ops = {
88 .cnic_owner = THIS_MODULE,
89 .cnic_handler = cnic_service_bnx2x,
90 .cnic_ctl = cnic_ctl,
91};
92
Michael Chanfdf24082010-10-13 14:06:47 +000093static struct workqueue_struct *cnic_wq;
94
Michael Chan86b53602009-10-10 13:46:57 +000095static void cnic_shutdown_rings(struct cnic_dev *);
96static void cnic_init_rings(struct cnic_dev *);
Michael Chana4636962009-06-08 18:14:43 -070097static int cnic_cm_set_pg(struct cnic_sock *);
98
99static int cnic_uio_open(struct uio_info *uinfo, struct inode *inode)
100{
Michael Chancd801532010-10-13 14:06:49 +0000101 struct cnic_uio_dev *udev = uinfo->priv;
102 struct cnic_dev *dev;
Michael Chana4636962009-06-08 18:14:43 -0700103
104 if (!capable(CAP_NET_ADMIN))
105 return -EPERM;
106
Michael Chancd801532010-10-13 14:06:49 +0000107 if (udev->uio_dev != -1)
Michael Chana4636962009-06-08 18:14:43 -0700108 return -EBUSY;
109
Michael Chan86b53602009-10-10 13:46:57 +0000110 rtnl_lock();
Michael Chancd801532010-10-13 14:06:49 +0000111 dev = udev->dev;
112
Michael Chana3ceeeb2010-10-13 14:06:50 +0000113 if (!dev || !test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
Michael Chan86b53602009-10-10 13:46:57 +0000114 rtnl_unlock();
115 return -ENODEV;
116 }
117
Michael Chancd801532010-10-13 14:06:49 +0000118 udev->uio_dev = iminor(inode);
Michael Chana4636962009-06-08 18:14:43 -0700119
Michael Chana3ceeeb2010-10-13 14:06:50 +0000120 cnic_shutdown_rings(dev);
Michael Chan86b53602009-10-10 13:46:57 +0000121 cnic_init_rings(dev);
122 rtnl_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700123
124 return 0;
125}
126
127static int cnic_uio_close(struct uio_info *uinfo, struct inode *inode)
128{
Michael Chancd801532010-10-13 14:06:49 +0000129 struct cnic_uio_dev *udev = uinfo->priv;
Michael Chan6ef57a02009-09-21 15:39:37 +0000130
Michael Chancd801532010-10-13 14:06:49 +0000131 udev->uio_dev = -1;
Michael Chana4636962009-06-08 18:14:43 -0700132 return 0;
133}
134
135static inline void cnic_hold(struct cnic_dev *dev)
136{
137 atomic_inc(&dev->ref_count);
138}
139
140static inline void cnic_put(struct cnic_dev *dev)
141{
142 atomic_dec(&dev->ref_count);
143}
144
145static inline void csk_hold(struct cnic_sock *csk)
146{
147 atomic_inc(&csk->ref_count);
148}
149
150static inline void csk_put(struct cnic_sock *csk)
151{
152 atomic_dec(&csk->ref_count);
153}
154
155static struct cnic_dev *cnic_from_netdev(struct net_device *netdev)
156{
157 struct cnic_dev *cdev;
158
159 read_lock(&cnic_dev_lock);
160 list_for_each_entry(cdev, &cnic_dev_list, list) {
161 if (netdev == cdev->netdev) {
162 cnic_hold(cdev);
163 read_unlock(&cnic_dev_lock);
164 return cdev;
165 }
166 }
167 read_unlock(&cnic_dev_lock);
168 return NULL;
169}
170
Michael Chan7fc1ece2009-08-14 15:49:47 +0000171static inline void ulp_get(struct cnic_ulp_ops *ulp_ops)
172{
173 atomic_inc(&ulp_ops->ref_count);
174}
175
176static inline void ulp_put(struct cnic_ulp_ops *ulp_ops)
177{
178 atomic_dec(&ulp_ops->ref_count);
179}
180
Michael Chana4636962009-06-08 18:14:43 -0700181static void cnic_ctx_wr(struct cnic_dev *dev, u32 cid_addr, u32 off, u32 val)
182{
183 struct cnic_local *cp = dev->cnic_priv;
184 struct cnic_eth_dev *ethdev = cp->ethdev;
185 struct drv_ctl_info info;
186 struct drv_ctl_io *io = &info.data.io;
187
188 info.cmd = DRV_CTL_CTX_WR_CMD;
189 io->cid_addr = cid_addr;
190 io->offset = off;
191 io->data = val;
192 ethdev->drv_ctl(dev->netdev, &info);
193}
194
Michael Chan71034ba2009-10-10 13:46:59 +0000195static void cnic_ctx_tbl_wr(struct cnic_dev *dev, u32 off, dma_addr_t addr)
196{
197 struct cnic_local *cp = dev->cnic_priv;
198 struct cnic_eth_dev *ethdev = cp->ethdev;
199 struct drv_ctl_info info;
200 struct drv_ctl_io *io = &info.data.io;
201
202 info.cmd = DRV_CTL_CTXTBL_WR_CMD;
203 io->offset = off;
204 io->dma_addr = addr;
205 ethdev->drv_ctl(dev->netdev, &info);
206}
207
208static void cnic_ring_ctl(struct cnic_dev *dev, u32 cid, u32 cl_id, int start)
209{
210 struct cnic_local *cp = dev->cnic_priv;
211 struct cnic_eth_dev *ethdev = cp->ethdev;
212 struct drv_ctl_info info;
213 struct drv_ctl_l2_ring *ring = &info.data.ring;
214
215 if (start)
216 info.cmd = DRV_CTL_START_L2_CMD;
217 else
218 info.cmd = DRV_CTL_STOP_L2_CMD;
219
220 ring->cid = cid;
221 ring->client_id = cl_id;
222 ethdev->drv_ctl(dev->netdev, &info);
223}
224
Michael Chana4636962009-06-08 18:14:43 -0700225static void cnic_reg_wr_ind(struct cnic_dev *dev, u32 off, u32 val)
226{
227 struct cnic_local *cp = dev->cnic_priv;
228 struct cnic_eth_dev *ethdev = cp->ethdev;
229 struct drv_ctl_info info;
230 struct drv_ctl_io *io = &info.data.io;
231
232 info.cmd = DRV_CTL_IO_WR_CMD;
233 io->offset = off;
234 io->data = val;
235 ethdev->drv_ctl(dev->netdev, &info);
236}
237
238static u32 cnic_reg_rd_ind(struct cnic_dev *dev, u32 off)
239{
240 struct cnic_local *cp = dev->cnic_priv;
241 struct cnic_eth_dev *ethdev = cp->ethdev;
242 struct drv_ctl_info info;
243 struct drv_ctl_io *io = &info.data.io;
244
245 info.cmd = DRV_CTL_IO_RD_CMD;
246 io->offset = off;
247 ethdev->drv_ctl(dev->netdev, &info);
248 return io->data;
249}
250
251static int cnic_in_use(struct cnic_sock *csk)
252{
253 return test_bit(SK_F_INUSE, &csk->flags);
254}
255
Dmitry Kravkovc2bff632010-10-06 03:33:18 +0000256static void cnic_spq_completion(struct cnic_dev *dev, int cmd, u32 count)
Michael Chana4636962009-06-08 18:14:43 -0700257{
258 struct cnic_local *cp = dev->cnic_priv;
259 struct cnic_eth_dev *ethdev = cp->ethdev;
260 struct drv_ctl_info info;
261
Dmitry Kravkovc2bff632010-10-06 03:33:18 +0000262 info.cmd = cmd;
263 info.data.credit.credit_count = count;
Michael Chana4636962009-06-08 18:14:43 -0700264 ethdev->drv_ctl(dev->netdev, &info);
265}
266
Michael Chan71034ba2009-10-10 13:46:59 +0000267static int cnic_get_l5_cid(struct cnic_local *cp, u32 cid, u32 *l5_cid)
268{
269 u32 i;
270
Michael Chan520efdf2010-06-24 14:58:37 +0000271 for (i = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +0000272 if (cp->ctx_tbl[i].cid == cid) {
273 *l5_cid = i;
274 return 0;
275 }
276 }
277 return -EINVAL;
278}
279
Michael Chana4636962009-06-08 18:14:43 -0700280static int cnic_send_nlmsg(struct cnic_local *cp, u32 type,
281 struct cnic_sock *csk)
282{
283 struct iscsi_path path_req;
284 char *buf = NULL;
285 u16 len = 0;
286 u32 msg_type = ISCSI_KEVENT_IF_DOWN;
287 struct cnic_ulp_ops *ulp_ops;
Michael Chancd801532010-10-13 14:06:49 +0000288 struct cnic_uio_dev *udev = cp->udev;
Michael Chan939b82e2010-12-23 07:42:58 +0000289 int rc = 0, retry = 0;
Michael Chana4636962009-06-08 18:14:43 -0700290
Michael Chancd801532010-10-13 14:06:49 +0000291 if (!udev || udev->uio_dev == -1)
Michael Chana4636962009-06-08 18:14:43 -0700292 return -ENODEV;
293
294 if (csk) {
295 len = sizeof(path_req);
296 buf = (char *) &path_req;
297 memset(&path_req, 0, len);
298
299 msg_type = ISCSI_KEVENT_PATH_REQ;
300 path_req.handle = (u64) csk->l5_cid;
301 if (test_bit(SK_F_IPV6, &csk->flags)) {
302 memcpy(&path_req.dst.v6_addr, &csk->dst_ip[0],
303 sizeof(struct in6_addr));
304 path_req.ip_addr_len = 16;
305 } else {
306 memcpy(&path_req.dst.v4_addr, &csk->dst_ip[0],
307 sizeof(struct in_addr));
308 path_req.ip_addr_len = 4;
309 }
310 path_req.vlan_id = csk->vlan_id;
311 path_req.pmtu = csk->mtu;
312 }
313
Michael Chan939b82e2010-12-23 07:42:58 +0000314 while (retry < 3) {
315 rc = 0;
316 rcu_read_lock();
317 ulp_ops = rcu_dereference(cnic_ulp_tbl[CNIC_ULP_ISCSI]);
318 if (ulp_ops)
319 rc = ulp_ops->iscsi_nl_send_msg(
320 cp->ulp_handle[CNIC_ULP_ISCSI],
321 msg_type, buf, len);
322 rcu_read_unlock();
323 if (rc == 0 || msg_type != ISCSI_KEVENT_PATH_REQ)
324 break;
325
326 msleep(100);
327 retry++;
328 }
Michael Chana4636962009-06-08 18:14:43 -0700329 return 0;
330}
331
Eddie Wai42ecbb82010-12-23 07:43:02 +0000332static void cnic_cm_upcall(struct cnic_local *, struct cnic_sock *, u8);
333
Michael Chana4636962009-06-08 18:14:43 -0700334static int cnic_iscsi_nl_msg_recv(struct cnic_dev *dev, u32 msg_type,
335 char *buf, u16 len)
336{
337 int rc = -EINVAL;
338
339 switch (msg_type) {
340 case ISCSI_UEVENT_PATH_UPDATE: {
341 struct cnic_local *cp;
342 u32 l5_cid;
343 struct cnic_sock *csk;
344 struct iscsi_path *path_resp;
345
346 if (len < sizeof(*path_resp))
347 break;
348
349 path_resp = (struct iscsi_path *) buf;
350 cp = dev->cnic_priv;
351 l5_cid = (u32) path_resp->handle;
352 if (l5_cid >= MAX_CM_SK_TBL_SZ)
353 break;
354
Michael Chand02a5e62010-02-24 14:42:06 +0000355 rcu_read_lock();
356 if (!rcu_dereference(cp->ulp_ops[CNIC_ULP_L4])) {
357 rc = -ENODEV;
358 rcu_read_unlock();
359 break;
360 }
Michael Chana4636962009-06-08 18:14:43 -0700361 csk = &cp->csk_tbl[l5_cid];
362 csk_hold(csk);
Eddie Wai42ecbb82010-12-23 07:43:02 +0000363 if (cnic_in_use(csk) &&
364 test_bit(SK_F_CONNECT_START, &csk->flags)) {
365
Michael Chana4636962009-06-08 18:14:43 -0700366 memcpy(csk->ha, path_resp->mac_addr, 6);
367 if (test_bit(SK_F_IPV6, &csk->flags))
368 memcpy(&csk->src_ip[0], &path_resp->src.v6_addr,
369 sizeof(struct in6_addr));
370 else
371 memcpy(&csk->src_ip[0], &path_resp->src.v4_addr,
372 sizeof(struct in_addr));
Eddie Wai42ecbb82010-12-23 07:43:02 +0000373
374 if (is_valid_ether_addr(csk->ha)) {
Michael Chana4636962009-06-08 18:14:43 -0700375 cnic_cm_set_pg(csk);
Eddie Wai42ecbb82010-12-23 07:43:02 +0000376 } else if (!test_bit(SK_F_OFFLD_SCHED, &csk->flags) &&
377 !test_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
378
379 cnic_cm_upcall(cp, csk,
380 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
381 clear_bit(SK_F_CONNECT_START, &csk->flags);
382 }
Michael Chana4636962009-06-08 18:14:43 -0700383 }
384 csk_put(csk);
Michael Chand02a5e62010-02-24 14:42:06 +0000385 rcu_read_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700386 rc = 0;
387 }
388 }
389
390 return rc;
391}
392
393static int cnic_offld_prep(struct cnic_sock *csk)
394{
395 if (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
396 return 0;
397
398 if (!test_bit(SK_F_CONNECT_START, &csk->flags)) {
399 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
400 return 0;
401 }
402
403 return 1;
404}
405
406static int cnic_close_prep(struct cnic_sock *csk)
407{
408 clear_bit(SK_F_CONNECT_START, &csk->flags);
409 smp_mb__after_clear_bit();
410
411 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
412 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
413 msleep(1);
414
415 return 1;
416 }
417 return 0;
418}
419
420static int cnic_abort_prep(struct cnic_sock *csk)
421{
422 clear_bit(SK_F_CONNECT_START, &csk->flags);
423 smp_mb__after_clear_bit();
424
425 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
426 msleep(1);
427
428 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
429 csk->state = L4_KCQE_OPCODE_VALUE_RESET_COMP;
430 return 1;
431 }
432
433 return 0;
434}
435
436int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops)
437{
438 struct cnic_dev *dev;
439
roel kluin0d37f362009-11-02 06:53:44 +0000440 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000441 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700442 return -EINVAL;
443 }
444 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000445 if (cnic_ulp_tbl_prot(ulp_type)) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000446 pr_err("%s: Type %d has already been registered\n",
447 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700448 mutex_unlock(&cnic_lock);
449 return -EBUSY;
450 }
451
452 read_lock(&cnic_dev_lock);
453 list_for_each_entry(dev, &cnic_dev_list, list) {
454 struct cnic_local *cp = dev->cnic_priv;
455
456 clear_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]);
457 }
458 read_unlock(&cnic_dev_lock);
459
Michael Chan7fc1ece2009-08-14 15:49:47 +0000460 atomic_set(&ulp_ops->ref_count, 0);
Michael Chana4636962009-06-08 18:14:43 -0700461 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], ulp_ops);
462 mutex_unlock(&cnic_lock);
463
464 /* Prevent race conditions with netdev_event */
465 rtnl_lock();
Michael Chana4636962009-06-08 18:14:43 -0700466 list_for_each_entry(dev, &cnic_dev_list, list) {
467 struct cnic_local *cp = dev->cnic_priv;
468
469 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]))
470 ulp_ops->cnic_init(dev);
471 }
Michael Chana4636962009-06-08 18:14:43 -0700472 rtnl_unlock();
473
474 return 0;
475}
476
477int cnic_unregister_driver(int ulp_type)
478{
479 struct cnic_dev *dev;
Michael Chan7fc1ece2009-08-14 15:49:47 +0000480 struct cnic_ulp_ops *ulp_ops;
481 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700482
roel kluin0d37f362009-11-02 06:53:44 +0000483 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000484 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700485 return -EINVAL;
486 }
487 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000488 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
Michael Chan7fc1ece2009-08-14 15:49:47 +0000489 if (!ulp_ops) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000490 pr_err("%s: Type %d has not been registered\n",
491 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700492 goto out_unlock;
493 }
494 read_lock(&cnic_dev_lock);
495 list_for_each_entry(dev, &cnic_dev_list, list) {
496 struct cnic_local *cp = dev->cnic_priv;
497
498 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000499 pr_err("%s: Type %d still has devices registered\n",
500 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700501 read_unlock(&cnic_dev_lock);
502 goto out_unlock;
503 }
504 }
505 read_unlock(&cnic_dev_lock);
506
507 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], NULL);
508
509 mutex_unlock(&cnic_lock);
510 synchronize_rcu();
Michael Chan7fc1ece2009-08-14 15:49:47 +0000511 while ((atomic_read(&ulp_ops->ref_count) != 0) && (i < 20)) {
512 msleep(100);
513 i++;
514 }
515
516 if (atomic_read(&ulp_ops->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +0000517 netdev_warn(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -0700518 return 0;
519
520out_unlock:
521 mutex_unlock(&cnic_lock);
522 return -EINVAL;
523}
524
525static int cnic_start_hw(struct cnic_dev *);
526static void cnic_stop_hw(struct cnic_dev *);
527
528static int cnic_register_device(struct cnic_dev *dev, int ulp_type,
529 void *ulp_ctx)
530{
531 struct cnic_local *cp = dev->cnic_priv;
532 struct cnic_ulp_ops *ulp_ops;
533
roel kluin0d37f362009-11-02 06:53:44 +0000534 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000535 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700536 return -EINVAL;
537 }
538 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000539 if (cnic_ulp_tbl_prot(ulp_type) == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000540 pr_err("%s: Driver with type %d has not been registered\n",
541 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700542 mutex_unlock(&cnic_lock);
543 return -EAGAIN;
544 }
545 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000546 pr_err("%s: Type %d has already been registered to this device\n",
547 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700548 mutex_unlock(&cnic_lock);
549 return -EBUSY;
550 }
551
552 clear_bit(ULP_F_START, &cp->ulp_flags[ulp_type]);
553 cp->ulp_handle[ulp_type] = ulp_ctx;
Eric Dumazet13707f92011-01-26 19:28:23 +0000554 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700555 rcu_assign_pointer(cp->ulp_ops[ulp_type], ulp_ops);
556 cnic_hold(dev);
557
558 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
559 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[ulp_type]))
560 ulp_ops->cnic_start(cp->ulp_handle[ulp_type]);
561
562 mutex_unlock(&cnic_lock);
563
564 return 0;
565
566}
567EXPORT_SYMBOL(cnic_register_driver);
568
569static int cnic_unregister_device(struct cnic_dev *dev, int ulp_type)
570{
571 struct cnic_local *cp = dev->cnic_priv;
Michael Chan681dbd72009-08-14 15:49:46 +0000572 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700573
roel kluin0d37f362009-11-02 06:53:44 +0000574 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000575 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700576 return -EINVAL;
577 }
578 mutex_lock(&cnic_lock);
579 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
580 rcu_assign_pointer(cp->ulp_ops[ulp_type], NULL);
581 cnic_put(dev);
582 } else {
Joe Perchesddf79b22010-02-17 15:01:54 +0000583 pr_err("%s: device not registered to this ulp type %d\n",
584 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700585 mutex_unlock(&cnic_lock);
586 return -EINVAL;
587 }
588 mutex_unlock(&cnic_lock);
589
Michael Chan42bb8d52011-01-03 15:21:46 +0000590 if (ulp_type == CNIC_ULP_ISCSI)
591 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
592
Michael Chana4636962009-06-08 18:14:43 -0700593 synchronize_rcu();
594
Michael Chan681dbd72009-08-14 15:49:46 +0000595 while (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]) &&
596 i < 20) {
597 msleep(100);
598 i++;
599 }
600 if (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]))
Joe Perchesddf79b22010-02-17 15:01:54 +0000601 netdev_warn(dev->netdev, "Failed waiting for ULP up call to complete\n");
Michael Chan681dbd72009-08-14 15:49:46 +0000602
Michael Chana4636962009-06-08 18:14:43 -0700603 return 0;
604}
605EXPORT_SYMBOL(cnic_unregister_driver);
606
607static int cnic_init_id_tbl(struct cnic_id_tbl *id_tbl, u32 size, u32 start_id)
608{
609 id_tbl->start = start_id;
610 id_tbl->max = size;
611 id_tbl->next = 0;
612 spin_lock_init(&id_tbl->lock);
613 id_tbl->table = kzalloc(DIV_ROUND_UP(size, 32) * 4, GFP_KERNEL);
614 if (!id_tbl->table)
615 return -ENOMEM;
616
617 return 0;
618}
619
620static void cnic_free_id_tbl(struct cnic_id_tbl *id_tbl)
621{
622 kfree(id_tbl->table);
623 id_tbl->table = NULL;
624}
625
626static int cnic_alloc_id(struct cnic_id_tbl *id_tbl, u32 id)
627{
628 int ret = -1;
629
630 id -= id_tbl->start;
631 if (id >= id_tbl->max)
632 return ret;
633
634 spin_lock(&id_tbl->lock);
635 if (!test_bit(id, id_tbl->table)) {
636 set_bit(id, id_tbl->table);
637 ret = 0;
638 }
639 spin_unlock(&id_tbl->lock);
640 return ret;
641}
642
643/* Returns -1 if not successful */
644static u32 cnic_alloc_new_id(struct cnic_id_tbl *id_tbl)
645{
646 u32 id;
647
648 spin_lock(&id_tbl->lock);
649 id = find_next_zero_bit(id_tbl->table, id_tbl->max, id_tbl->next);
650 if (id >= id_tbl->max) {
651 id = -1;
652 if (id_tbl->next != 0) {
653 id = find_first_zero_bit(id_tbl->table, id_tbl->next);
654 if (id >= id_tbl->next)
655 id = -1;
656 }
657 }
658
659 if (id < id_tbl->max) {
660 set_bit(id, id_tbl->table);
661 id_tbl->next = (id + 1) & (id_tbl->max - 1);
662 id += id_tbl->start;
663 }
664
665 spin_unlock(&id_tbl->lock);
666
667 return id;
668}
669
670static void cnic_free_id(struct cnic_id_tbl *id_tbl, u32 id)
671{
672 if (id == -1)
673 return;
674
675 id -= id_tbl->start;
676 if (id >= id_tbl->max)
677 return;
678
679 clear_bit(id, id_tbl->table);
680}
681
682static void cnic_free_dma(struct cnic_dev *dev, struct cnic_dma *dma)
683{
684 int i;
685
686 if (!dma->pg_arr)
687 return;
688
689 for (i = 0; i < dma->num_pages; i++) {
690 if (dma->pg_arr[i]) {
Michael Chan3248e162009-12-02 15:15:39 +0000691 dma_free_coherent(&dev->pcidev->dev, BCM_PAGE_SIZE,
692 dma->pg_arr[i], dma->pg_map_arr[i]);
Michael Chana4636962009-06-08 18:14:43 -0700693 dma->pg_arr[i] = NULL;
694 }
695 }
696 if (dma->pgtbl) {
Michael Chan3248e162009-12-02 15:15:39 +0000697 dma_free_coherent(&dev->pcidev->dev, dma->pgtbl_size,
698 dma->pgtbl, dma->pgtbl_map);
Michael Chana4636962009-06-08 18:14:43 -0700699 dma->pgtbl = NULL;
700 }
701 kfree(dma->pg_arr);
702 dma->pg_arr = NULL;
703 dma->num_pages = 0;
704}
705
706static void cnic_setup_page_tbl(struct cnic_dev *dev, struct cnic_dma *dma)
707{
708 int i;
Michael Chan51388262011-01-25 22:14:50 +0000709 __le32 *page_table = (__le32 *) dma->pgtbl;
Michael Chana4636962009-06-08 18:14:43 -0700710
711 for (i = 0; i < dma->num_pages; i++) {
712 /* Each entry needs to be in big endian format. */
Michael Chan51388262011-01-25 22:14:50 +0000713 *page_table = cpu_to_le32((u64) dma->pg_map_arr[i] >> 32);
Michael Chana4636962009-06-08 18:14:43 -0700714 page_table++;
Michael Chan51388262011-01-25 22:14:50 +0000715 *page_table = cpu_to_le32(dma->pg_map_arr[i] & 0xffffffff);
Michael Chana4636962009-06-08 18:14:43 -0700716 page_table++;
717 }
718}
719
Michael Chan71034ba2009-10-10 13:46:59 +0000720static void cnic_setup_page_tbl_le(struct cnic_dev *dev, struct cnic_dma *dma)
721{
722 int i;
Michael Chan51388262011-01-25 22:14:50 +0000723 __le32 *page_table = (__le32 *) dma->pgtbl;
Michael Chan71034ba2009-10-10 13:46:59 +0000724
725 for (i = 0; i < dma->num_pages; i++) {
726 /* Each entry needs to be in little endian format. */
Michael Chan51388262011-01-25 22:14:50 +0000727 *page_table = cpu_to_le32(dma->pg_map_arr[i] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +0000728 page_table++;
Michael Chan51388262011-01-25 22:14:50 +0000729 *page_table = cpu_to_le32((u64) dma->pg_map_arr[i] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +0000730 page_table++;
731 }
732}
733
Michael Chana4636962009-06-08 18:14:43 -0700734static int cnic_alloc_dma(struct cnic_dev *dev, struct cnic_dma *dma,
735 int pages, int use_pg_tbl)
736{
737 int i, size;
738 struct cnic_local *cp = dev->cnic_priv;
739
740 size = pages * (sizeof(void *) + sizeof(dma_addr_t));
741 dma->pg_arr = kzalloc(size, GFP_ATOMIC);
742 if (dma->pg_arr == NULL)
743 return -ENOMEM;
744
745 dma->pg_map_arr = (dma_addr_t *) (dma->pg_arr + pages);
746 dma->num_pages = pages;
747
748 for (i = 0; i < pages; i++) {
Michael Chan3248e162009-12-02 15:15:39 +0000749 dma->pg_arr[i] = dma_alloc_coherent(&dev->pcidev->dev,
750 BCM_PAGE_SIZE,
751 &dma->pg_map_arr[i],
752 GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700753 if (dma->pg_arr[i] == NULL)
754 goto error;
755 }
756 if (!use_pg_tbl)
757 return 0;
758
759 dma->pgtbl_size = ((pages * 8) + BCM_PAGE_SIZE - 1) &
760 ~(BCM_PAGE_SIZE - 1);
Michael Chan3248e162009-12-02 15:15:39 +0000761 dma->pgtbl = dma_alloc_coherent(&dev->pcidev->dev, dma->pgtbl_size,
762 &dma->pgtbl_map, GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700763 if (dma->pgtbl == NULL)
764 goto error;
765
766 cp->setup_pgtbl(dev, dma);
767
768 return 0;
769
770error:
771 cnic_free_dma(dev, dma);
772 return -ENOMEM;
773}
774
Michael Chan86b53602009-10-10 13:46:57 +0000775static void cnic_free_context(struct cnic_dev *dev)
776{
777 struct cnic_local *cp = dev->cnic_priv;
778 int i;
779
780 for (i = 0; i < cp->ctx_blks; i++) {
781 if (cp->ctx_arr[i].ctx) {
Michael Chan3248e162009-12-02 15:15:39 +0000782 dma_free_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
783 cp->ctx_arr[i].ctx,
784 cp->ctx_arr[i].mapping);
Michael Chan86b53602009-10-10 13:46:57 +0000785 cp->ctx_arr[i].ctx = NULL;
786 }
787 }
788}
789
Michael Chancd801532010-10-13 14:06:49 +0000790static void __cnic_free_uio(struct cnic_uio_dev *udev)
Michael Chana4636962009-06-08 18:14:43 -0700791{
Michael Chancd801532010-10-13 14:06:49 +0000792 uio_unregister_device(&udev->cnic_uinfo);
Michael Chana4636962009-06-08 18:14:43 -0700793
Michael Chancd801532010-10-13 14:06:49 +0000794 if (udev->l2_buf) {
795 dma_free_coherent(&udev->pdev->dev, udev->l2_buf_size,
796 udev->l2_buf, udev->l2_buf_map);
797 udev->l2_buf = NULL;
Michael Chana4636962009-06-08 18:14:43 -0700798 }
799
Michael Chancd801532010-10-13 14:06:49 +0000800 if (udev->l2_ring) {
801 dma_free_coherent(&udev->pdev->dev, udev->l2_ring_size,
802 udev->l2_ring, udev->l2_ring_map);
803 udev->l2_ring = NULL;
Michael Chana4636962009-06-08 18:14:43 -0700804 }
Michael Chana3ceeeb2010-10-13 14:06:50 +0000805
806 pci_dev_put(udev->pdev);
807 kfree(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000808}
809
Michael Chancd801532010-10-13 14:06:49 +0000810static void cnic_free_uio(struct cnic_uio_dev *udev)
Michael Chanc06c0462010-10-13 14:06:48 +0000811{
Michael Chancd801532010-10-13 14:06:49 +0000812 if (!udev)
Michael Chanc06c0462010-10-13 14:06:48 +0000813 return;
814
Michael Chana3ceeeb2010-10-13 14:06:50 +0000815 write_lock(&cnic_dev_lock);
816 list_del_init(&udev->list);
817 write_unlock(&cnic_dev_lock);
Michael Chancd801532010-10-13 14:06:49 +0000818 __cnic_free_uio(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000819}
820
821static void cnic_free_resc(struct cnic_dev *dev)
822{
823 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +0000824 struct cnic_uio_dev *udev = cp->udev;
Michael Chanc06c0462010-10-13 14:06:48 +0000825
Michael Chancd801532010-10-13 14:06:49 +0000826 if (udev) {
Michael Chana3ceeeb2010-10-13 14:06:50 +0000827 udev->dev = NULL;
Michael Chancd801532010-10-13 14:06:49 +0000828 cp->udev = NULL;
Michael Chanc06c0462010-10-13 14:06:48 +0000829 }
Michael Chana4636962009-06-08 18:14:43 -0700830
Michael Chan86b53602009-10-10 13:46:57 +0000831 cnic_free_context(dev);
Michael Chana4636962009-06-08 18:14:43 -0700832 kfree(cp->ctx_arr);
833 cp->ctx_arr = NULL;
834 cp->ctx_blks = 0;
835
836 cnic_free_dma(dev, &cp->gbl_buf_info);
837 cnic_free_dma(dev, &cp->conn_buf_info);
838 cnic_free_dma(dev, &cp->kwq_info);
Michael Chan71034ba2009-10-10 13:46:59 +0000839 cnic_free_dma(dev, &cp->kwq_16_data_info);
Michael Chane21ba412010-12-23 07:43:03 +0000840 cnic_free_dma(dev, &cp->kcq2.dma);
Michael Chane6c28892010-06-24 14:58:39 +0000841 cnic_free_dma(dev, &cp->kcq1.dma);
Michael Chana4636962009-06-08 18:14:43 -0700842 kfree(cp->iscsi_tbl);
843 cp->iscsi_tbl = NULL;
844 kfree(cp->ctx_tbl);
845 cp->ctx_tbl = NULL;
846
Michael Chane1928c82010-12-23 07:43:04 +0000847 cnic_free_id_tbl(&cp->fcoe_cid_tbl);
Michael Chana4636962009-06-08 18:14:43 -0700848 cnic_free_id_tbl(&cp->cid_tbl);
849}
850
851static int cnic_alloc_context(struct cnic_dev *dev)
852{
853 struct cnic_local *cp = dev->cnic_priv;
854
855 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
856 int i, k, arr_size;
857
858 cp->ctx_blk_size = BCM_PAGE_SIZE;
859 cp->cids_per_blk = BCM_PAGE_SIZE / 128;
860 arr_size = BNX2_MAX_CID / cp->cids_per_blk *
861 sizeof(struct cnic_ctx);
862 cp->ctx_arr = kzalloc(arr_size, GFP_KERNEL);
863 if (cp->ctx_arr == NULL)
864 return -ENOMEM;
865
866 k = 0;
867 for (i = 0; i < 2; i++) {
868 u32 j, reg, off, lo, hi;
869
870 if (i == 0)
871 off = BNX2_PG_CTX_MAP;
872 else
873 off = BNX2_ISCSI_CTX_MAP;
874
875 reg = cnic_reg_rd_ind(dev, off);
876 lo = reg >> 16;
877 hi = reg & 0xffff;
878 for (j = lo; j < hi; j += cp->cids_per_blk, k++)
879 cp->ctx_arr[k].cid = j;
880 }
881
882 cp->ctx_blks = k;
883 if (cp->ctx_blks >= (BNX2_MAX_CID / cp->cids_per_blk)) {
884 cp->ctx_blks = 0;
885 return -ENOMEM;
886 }
887
888 for (i = 0; i < cp->ctx_blks; i++) {
889 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +0000890 dma_alloc_coherent(&dev->pcidev->dev,
891 BCM_PAGE_SIZE,
892 &cp->ctx_arr[i].mapping,
893 GFP_KERNEL);
Michael Chana4636962009-06-08 18:14:43 -0700894 if (cp->ctx_arr[i].ctx == NULL)
895 return -ENOMEM;
896 }
897 }
898 return 0;
899}
900
Michael Chane6c28892010-06-24 14:58:39 +0000901static int cnic_alloc_kcq(struct cnic_dev *dev, struct kcq_info *info)
902{
903 int err, i, is_bnx2 = 0;
904 struct kcqe **kcq;
905
906 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags))
907 is_bnx2 = 1;
908
909 err = cnic_alloc_dma(dev, &info->dma, KCQ_PAGE_CNT, is_bnx2);
910 if (err)
911 return err;
912
913 kcq = (struct kcqe **) info->dma.pg_arr;
914 info->kcq = kcq;
915
916 if (is_bnx2)
917 return 0;
918
919 for (i = 0; i < KCQ_PAGE_CNT; i++) {
920 struct bnx2x_bd_chain_next *next =
921 (struct bnx2x_bd_chain_next *) &kcq[i][MAX_KCQE_CNT];
922 int j = i + 1;
923
924 if (j >= KCQ_PAGE_CNT)
925 j = 0;
926 next->addr_hi = (u64) info->dma.pg_map_arr[j] >> 32;
927 next->addr_lo = info->dma.pg_map_arr[j] & 0xffffffff;
928 }
929 return 0;
930}
931
Michael Chancd801532010-10-13 14:06:49 +0000932static int cnic_alloc_uio_rings(struct cnic_dev *dev, int pages)
Michael Chanec0248e2009-08-26 09:49:22 +0000933{
934 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +0000935 struct cnic_uio_dev *udev;
Michael Chanec0248e2009-08-26 09:49:22 +0000936
Michael Chana3ceeeb2010-10-13 14:06:50 +0000937 read_lock(&cnic_dev_lock);
938 list_for_each_entry(udev, &cnic_udev_list, list) {
939 if (udev->pdev == dev->pcidev) {
940 udev->dev = dev;
941 cp->udev = udev;
942 read_unlock(&cnic_dev_lock);
943 return 0;
944 }
945 }
946 read_unlock(&cnic_dev_lock);
947
Michael Chancd801532010-10-13 14:06:49 +0000948 udev = kzalloc(sizeof(struct cnic_uio_dev), GFP_ATOMIC);
949 if (!udev)
Michael Chanec0248e2009-08-26 09:49:22 +0000950 return -ENOMEM;
951
Michael Chancd801532010-10-13 14:06:49 +0000952 udev->uio_dev = -1;
953
954 udev->dev = dev;
955 udev->pdev = dev->pcidev;
956 udev->l2_ring_size = pages * BCM_PAGE_SIZE;
957 udev->l2_ring = dma_alloc_coherent(&udev->pdev->dev, udev->l2_ring_size,
958 &udev->l2_ring_map,
959 GFP_KERNEL | __GFP_COMP);
960 if (!udev->l2_ring)
Jesper Juhlf7e4c972010-12-31 11:18:48 -0800961 goto err_udev;
Michael Chanec0248e2009-08-26 09:49:22 +0000962
Michael Chancd801532010-10-13 14:06:49 +0000963 udev->l2_buf_size = (cp->l2_rx_ring_size + 1) * cp->l2_single_buf_size;
964 udev->l2_buf_size = PAGE_ALIGN(udev->l2_buf_size);
965 udev->l2_buf = dma_alloc_coherent(&udev->pdev->dev, udev->l2_buf_size,
966 &udev->l2_buf_map,
967 GFP_KERNEL | __GFP_COMP);
968 if (!udev->l2_buf)
Jesper Juhlf7e4c972010-12-31 11:18:48 -0800969 goto err_dma;
Michael Chancd801532010-10-13 14:06:49 +0000970
Michael Chana3ceeeb2010-10-13 14:06:50 +0000971 write_lock(&cnic_dev_lock);
972 list_add(&udev->list, &cnic_udev_list);
973 write_unlock(&cnic_dev_lock);
974
975 pci_dev_get(udev->pdev);
976
Michael Chancd801532010-10-13 14:06:49 +0000977 cp->udev = udev;
978
Michael Chanec0248e2009-08-26 09:49:22 +0000979 return 0;
Jesper Juhlf7e4c972010-12-31 11:18:48 -0800980 err_dma:
981 dma_free_coherent(&udev->pdev->dev, udev->l2_ring_size,
982 udev->l2_ring, udev->l2_ring_map);
983 err_udev:
984 kfree(udev);
985 return -ENOMEM;
Michael Chanec0248e2009-08-26 09:49:22 +0000986}
987
Michael Chancd801532010-10-13 14:06:49 +0000988static int cnic_init_uio(struct cnic_dev *dev)
989{
Michael Chan5e9b2db2009-08-26 09:49:23 +0000990 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +0000991 struct cnic_uio_dev *udev = cp->udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +0000992 struct uio_info *uinfo;
Michael Chancd801532010-10-13 14:06:49 +0000993 int ret = 0;
Michael Chan5e9b2db2009-08-26 09:49:23 +0000994
Michael Chancd801532010-10-13 14:06:49 +0000995 if (!udev)
Michael Chan5e9b2db2009-08-26 09:49:23 +0000996 return -ENOMEM;
997
Michael Chancd801532010-10-13 14:06:49 +0000998 uinfo = &udev->cnic_uinfo;
999
Michael Chan5e9b2db2009-08-26 09:49:23 +00001000 uinfo->mem[0].addr = dev->netdev->base_addr;
1001 uinfo->mem[0].internal_addr = dev->regview;
1002 uinfo->mem[0].size = dev->netdev->mem_end - dev->netdev->mem_start;
1003 uinfo->mem[0].memtype = UIO_MEM_PHYS;
1004
Michael Chan5e9b2db2009-08-26 09:49:23 +00001005 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
Michael Chana4dde3a2010-02-24 14:42:08 +00001006 uinfo->mem[1].addr = (unsigned long) cp->status_blk.gen &
Michael Chancd801532010-10-13 14:06:49 +00001007 PAGE_MASK;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001008 if (cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
1009 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE * 9;
1010 else
1011 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE;
1012
1013 uinfo->name = "bnx2_cnic";
Michael Chan71034ba2009-10-10 13:46:59 +00001014 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
1015 uinfo->mem[1].addr = (unsigned long) cp->bnx2x_def_status_blk &
1016 PAGE_MASK;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001017 uinfo->mem[1].size = sizeof(*cp->bnx2x_def_status_blk);
Michael Chan71034ba2009-10-10 13:46:59 +00001018
1019 uinfo->name = "bnx2x_cnic";
Michael Chan5e9b2db2009-08-26 09:49:23 +00001020 }
1021
1022 uinfo->mem[1].memtype = UIO_MEM_LOGICAL;
1023
Michael Chancd801532010-10-13 14:06:49 +00001024 uinfo->mem[2].addr = (unsigned long) udev->l2_ring;
1025 uinfo->mem[2].size = udev->l2_ring_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001026 uinfo->mem[2].memtype = UIO_MEM_LOGICAL;
1027
Michael Chancd801532010-10-13 14:06:49 +00001028 uinfo->mem[3].addr = (unsigned long) udev->l2_buf;
1029 uinfo->mem[3].size = udev->l2_buf_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001030 uinfo->mem[3].memtype = UIO_MEM_LOGICAL;
1031
1032 uinfo->version = CNIC_MODULE_VERSION;
1033 uinfo->irq = UIO_IRQ_CUSTOM;
1034
1035 uinfo->open = cnic_uio_open;
1036 uinfo->release = cnic_uio_close;
1037
Michael Chana3ceeeb2010-10-13 14:06:50 +00001038 if (udev->uio_dev == -1) {
1039 if (!uinfo->priv) {
1040 uinfo->priv = udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001041
Michael Chana3ceeeb2010-10-13 14:06:50 +00001042 ret = uio_register_device(&udev->pdev->dev, uinfo);
1043 }
1044 } else {
1045 cnic_init_rings(dev);
1046 }
Michael Chan5e9b2db2009-08-26 09:49:23 +00001047
Michael Chancd801532010-10-13 14:06:49 +00001048 return ret;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001049}
1050
Michael Chana4636962009-06-08 18:14:43 -07001051static int cnic_alloc_bnx2_resc(struct cnic_dev *dev)
1052{
1053 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07001054 int ret;
1055
1056 ret = cnic_alloc_dma(dev, &cp->kwq_info, KWQ_PAGE_CNT, 1);
1057 if (ret)
1058 goto error;
1059 cp->kwq = (struct kwqe **) cp->kwq_info.pg_arr;
1060
Michael Chane6c28892010-06-24 14:58:39 +00001061 ret = cnic_alloc_kcq(dev, &cp->kcq1);
Michael Chana4636962009-06-08 18:14:43 -07001062 if (ret)
1063 goto error;
Michael Chana4636962009-06-08 18:14:43 -07001064
1065 ret = cnic_alloc_context(dev);
1066 if (ret)
1067 goto error;
1068
Michael Chancd801532010-10-13 14:06:49 +00001069 ret = cnic_alloc_uio_rings(dev, 2);
Michael Chanec0248e2009-08-26 09:49:22 +00001070 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001071 goto error;
1072
Michael Chancd801532010-10-13 14:06:49 +00001073 ret = cnic_init_uio(dev);
Michael Chan5e9b2db2009-08-26 09:49:23 +00001074 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001075 goto error;
1076
Michael Chana4636962009-06-08 18:14:43 -07001077 return 0;
1078
1079error:
1080 cnic_free_resc(dev);
1081 return ret;
1082}
1083
Michael Chan71034ba2009-10-10 13:46:59 +00001084static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
1085{
1086 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001087 int ctx_blk_size = cp->ethdev->ctx_blk_size;
Michael Chan520efdf2010-06-24 14:58:37 +00001088 int total_mem, blks, i;
Michael Chan71034ba2009-10-10 13:46:59 +00001089
Michael Chan520efdf2010-06-24 14:58:37 +00001090 total_mem = BNX2X_CONTEXT_MEM_SIZE * cp->max_cid_space;
Michael Chan71034ba2009-10-10 13:46:59 +00001091 blks = total_mem / ctx_blk_size;
1092 if (total_mem % ctx_blk_size)
1093 blks++;
1094
1095 if (blks > cp->ethdev->ctx_tbl_len)
1096 return -ENOMEM;
1097
Joe Perchesbaeb2ff2010-08-11 07:02:48 +00001098 cp->ctx_arr = kcalloc(blks, sizeof(struct cnic_ctx), GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001099 if (cp->ctx_arr == NULL)
1100 return -ENOMEM;
1101
1102 cp->ctx_blks = blks;
1103 cp->ctx_blk_size = ctx_blk_size;
Michael Chanee87a822010-10-13 14:06:51 +00001104 if (!BNX2X_CHIP_IS_57710(cp->chip_id))
Michael Chan71034ba2009-10-10 13:46:59 +00001105 cp->ctx_align = 0;
1106 else
1107 cp->ctx_align = ctx_blk_size;
1108
1109 cp->cids_per_blk = ctx_blk_size / BNX2X_CONTEXT_MEM_SIZE;
1110
1111 for (i = 0; i < blks; i++) {
1112 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +00001113 dma_alloc_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
1114 &cp->ctx_arr[i].mapping,
1115 GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001116 if (cp->ctx_arr[i].ctx == NULL)
1117 return -ENOMEM;
1118
1119 if (cp->ctx_align && cp->ctx_blk_size == ctx_blk_size) {
1120 if (cp->ctx_arr[i].mapping & (cp->ctx_align - 1)) {
1121 cnic_free_context(dev);
1122 cp->ctx_blk_size += cp->ctx_align;
1123 i = -1;
1124 continue;
1125 }
1126 }
1127 }
1128 return 0;
1129}
1130
1131static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
1132{
1133 struct cnic_local *cp = dev->cnic_priv;
Michael Chan520efdf2010-06-24 14:58:37 +00001134 struct cnic_eth_dev *ethdev = cp->ethdev;
1135 u32 start_cid = ethdev->starting_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001136 int i, j, n, ret, pages;
1137 struct cnic_dma *kwq_16_dma = &cp->kwq_16_data_info;
1138
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001139 cp->iro_arr = ethdev->iro_arr;
1140
Michael Chane1928c82010-12-23 07:43:04 +00001141 cp->max_cid_space = MAX_ISCSI_TBL_SZ + BNX2X_FCOE_NUM_CONNECTIONS;
Michael Chan520efdf2010-06-24 14:58:37 +00001142 cp->iscsi_start_cid = start_cid;
Michael Chane1928c82010-12-23 07:43:04 +00001143 cp->fcoe_start_cid = start_cid + MAX_ISCSI_TBL_SZ;
1144
1145 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
1146 cp->max_cid_space += BNX2X_FCOE_NUM_CONNECTIONS;
1147 cp->fcoe_init_cid = ethdev->fcoe_init_cid;
1148 if (!cp->fcoe_init_cid)
1149 cp->fcoe_init_cid = 0x10;
1150 }
1151
Michael Chan520efdf2010-06-24 14:58:37 +00001152 if (start_cid < BNX2X_ISCSI_START_CID) {
1153 u32 delta = BNX2X_ISCSI_START_CID - start_cid;
1154
1155 cp->iscsi_start_cid = BNX2X_ISCSI_START_CID;
Michael Chane1928c82010-12-23 07:43:04 +00001156 cp->fcoe_start_cid += delta;
Michael Chan520efdf2010-06-24 14:58:37 +00001157 cp->max_cid_space += delta;
1158 }
1159
Michael Chan71034ba2009-10-10 13:46:59 +00001160 cp->iscsi_tbl = kzalloc(sizeof(struct cnic_iscsi) * MAX_ISCSI_TBL_SZ,
1161 GFP_KERNEL);
1162 if (!cp->iscsi_tbl)
1163 goto error;
1164
1165 cp->ctx_tbl = kzalloc(sizeof(struct cnic_context) *
Michael Chan520efdf2010-06-24 14:58:37 +00001166 cp->max_cid_space, GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001167 if (!cp->ctx_tbl)
1168 goto error;
1169
1170 for (i = 0; i < MAX_ISCSI_TBL_SZ; i++) {
1171 cp->ctx_tbl[i].proto.iscsi = &cp->iscsi_tbl[i];
1172 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_ISCSI;
1173 }
1174
Michael Chane1928c82010-12-23 07:43:04 +00001175 for (i = MAX_ISCSI_TBL_SZ; i < cp->max_cid_space; i++)
1176 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_FCOE;
1177
Michael Chan520efdf2010-06-24 14:58:37 +00001178 pages = PAGE_ALIGN(cp->max_cid_space * CNIC_KWQ16_DATA_SIZE) /
Michael Chan71034ba2009-10-10 13:46:59 +00001179 PAGE_SIZE;
1180
1181 ret = cnic_alloc_dma(dev, kwq_16_dma, pages, 0);
1182 if (ret)
1183 return -ENOMEM;
1184
1185 n = PAGE_SIZE / CNIC_KWQ16_DATA_SIZE;
Michael Chan520efdf2010-06-24 14:58:37 +00001186 for (i = 0, j = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +00001187 long off = CNIC_KWQ16_DATA_SIZE * (i % n);
1188
1189 cp->ctx_tbl[i].kwqe_data = kwq_16_dma->pg_arr[j] + off;
1190 cp->ctx_tbl[i].kwqe_data_mapping = kwq_16_dma->pg_map_arr[j] +
1191 off;
1192
1193 if ((i % n) == (n - 1))
1194 j++;
1195 }
1196
Michael Chane6c28892010-06-24 14:58:39 +00001197 ret = cnic_alloc_kcq(dev, &cp->kcq1);
Michael Chan71034ba2009-10-10 13:46:59 +00001198 if (ret)
1199 goto error;
Michael Chan71034ba2009-10-10 13:46:59 +00001200
Michael Chane21ba412010-12-23 07:43:03 +00001201 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
1202 ret = cnic_alloc_kcq(dev, &cp->kcq2);
1203 if (ret)
1204 goto error;
1205 }
1206
Michael Chan71034ba2009-10-10 13:46:59 +00001207 pages = PAGE_ALIGN(BNX2X_ISCSI_NUM_CONNECTIONS *
1208 BNX2X_ISCSI_CONN_BUF_SIZE) / PAGE_SIZE;
1209 ret = cnic_alloc_dma(dev, &cp->conn_buf_info, pages, 1);
1210 if (ret)
1211 goto error;
1212
1213 pages = PAGE_ALIGN(BNX2X_ISCSI_GLB_BUF_SIZE) / PAGE_SIZE;
1214 ret = cnic_alloc_dma(dev, &cp->gbl_buf_info, pages, 0);
1215 if (ret)
1216 goto error;
1217
1218 ret = cnic_alloc_bnx2x_context(dev);
1219 if (ret)
1220 goto error;
1221
Michael Chan71034ba2009-10-10 13:46:59 +00001222 cp->bnx2x_def_status_blk = cp->ethdev->irq_arr[1].status_blk;
1223
1224 cp->l2_rx_ring_size = 15;
1225
Michael Chancd801532010-10-13 14:06:49 +00001226 ret = cnic_alloc_uio_rings(dev, 4);
Michael Chan71034ba2009-10-10 13:46:59 +00001227 if (ret)
1228 goto error;
1229
Michael Chancd801532010-10-13 14:06:49 +00001230 ret = cnic_init_uio(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00001231 if (ret)
1232 goto error;
1233
1234 return 0;
1235
1236error:
1237 cnic_free_resc(dev);
1238 return -ENOMEM;
1239}
1240
Michael Chana4636962009-06-08 18:14:43 -07001241static inline u32 cnic_kwq_avail(struct cnic_local *cp)
1242{
1243 return cp->max_kwq_idx -
1244 ((cp->kwq_prod_idx - cp->kwq_con_idx) & cp->max_kwq_idx);
1245}
1246
1247static int cnic_submit_bnx2_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
1248 u32 num_wqes)
1249{
1250 struct cnic_local *cp = dev->cnic_priv;
1251 struct kwqe *prod_qe;
1252 u16 prod, sw_prod, i;
1253
1254 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
1255 return -EAGAIN; /* bnx2 is down */
1256
1257 spin_lock_bh(&cp->cnic_ulp_lock);
1258 if (num_wqes > cnic_kwq_avail(cp) &&
Michael Chan1f1332a2010-05-18 11:32:52 +00001259 !test_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags)) {
Michael Chana4636962009-06-08 18:14:43 -07001260 spin_unlock_bh(&cp->cnic_ulp_lock);
1261 return -EAGAIN;
1262 }
1263
Michael Chan1f1332a2010-05-18 11:32:52 +00001264 clear_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07001265
1266 prod = cp->kwq_prod_idx;
1267 sw_prod = prod & MAX_KWQ_IDX;
1268 for (i = 0; i < num_wqes; i++) {
1269 prod_qe = &cp->kwq[KWQ_PG(sw_prod)][KWQ_IDX(sw_prod)];
1270 memcpy(prod_qe, wqes[i], sizeof(struct kwqe));
1271 prod++;
1272 sw_prod = prod & MAX_KWQ_IDX;
1273 }
1274 cp->kwq_prod_idx = prod;
1275
1276 CNIC_WR16(dev, cp->kwq_io_addr, cp->kwq_prod_idx);
1277
1278 spin_unlock_bh(&cp->cnic_ulp_lock);
1279 return 0;
1280}
1281
Michael Chan71034ba2009-10-10 13:46:59 +00001282static void *cnic_get_kwqe_16_data(struct cnic_local *cp, u32 l5_cid,
1283 union l5cm_specific_data *l5_data)
1284{
1285 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1286 dma_addr_t map;
1287
1288 map = ctx->kwqe_data_mapping;
1289 l5_data->phy_address.lo = (u64) map & 0xffffffff;
1290 l5_data->phy_address.hi = (u64) map >> 32;
1291 return ctx->kwqe_data;
1292}
1293
1294static int cnic_submit_kwqe_16(struct cnic_dev *dev, u32 cmd, u32 cid,
1295 u32 type, union l5cm_specific_data *l5_data)
1296{
1297 struct cnic_local *cp = dev->cnic_priv;
1298 struct l5cm_spe kwqe;
1299 struct kwqe_16 *kwq[1];
Michael Chan68d7c1a2011-01-05 15:14:13 +00001300 u16 type_16;
Michael Chan71034ba2009-10-10 13:46:59 +00001301 int ret;
1302
1303 kwqe.hdr.conn_and_cmd_data =
1304 cpu_to_le32(((cmd << SPE_HDR_CMD_ID_SHIFT) |
Michael Chanceb7e1c2010-10-06 03:14:54 +00001305 BNX2X_HW_CID(cp, cid)));
Michael Chan68d7c1a2011-01-05 15:14:13 +00001306
1307 type_16 = (type << SPE_HDR_CONN_TYPE_SHIFT) & SPE_HDR_CONN_TYPE;
1308 type_16 |= (cp->pfid << SPE_HDR_FUNCTION_ID_SHIFT) &
1309 SPE_HDR_FUNCTION_ID;
1310
1311 kwqe.hdr.type = cpu_to_le16(type_16);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001312 kwqe.hdr.reserved1 = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001313 kwqe.data.phy_address.lo = cpu_to_le32(l5_data->phy_address.lo);
1314 kwqe.data.phy_address.hi = cpu_to_le32(l5_data->phy_address.hi);
1315
1316 kwq[0] = (struct kwqe_16 *) &kwqe;
1317
1318 spin_lock_bh(&cp->cnic_ulp_lock);
1319 ret = cp->ethdev->drv_submit_kwqes_16(dev->netdev, kwq, 1);
1320 spin_unlock_bh(&cp->cnic_ulp_lock);
1321
1322 if (ret == 1)
1323 return 0;
1324
1325 return -EBUSY;
1326}
1327
1328static void cnic_reply_bnx2x_kcqes(struct cnic_dev *dev, int ulp_type,
1329 struct kcqe *cqes[], u32 num_cqes)
1330{
1331 struct cnic_local *cp = dev->cnic_priv;
1332 struct cnic_ulp_ops *ulp_ops;
1333
1334 rcu_read_lock();
1335 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
1336 if (likely(ulp_ops)) {
1337 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
1338 cqes, num_cqes);
1339 }
1340 rcu_read_unlock();
1341}
1342
1343static int cnic_bnx2x_iscsi_init1(struct cnic_dev *dev, struct kwqe *kwqe)
1344{
1345 struct cnic_local *cp = dev->cnic_priv;
1346 struct iscsi_kwqe_init1 *req1 = (struct iscsi_kwqe_init1 *) kwqe;
Michael Chan14203982010-10-06 03:16:06 +00001347 int hq_bds, pages;
1348 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001349
1350 cp->num_iscsi_tasks = req1->num_tasks_per_conn;
1351 cp->num_ccells = req1->num_ccells_per_conn;
1352 cp->task_array_size = BNX2X_ISCSI_TASK_CONTEXT_SIZE *
1353 cp->num_iscsi_tasks;
1354 cp->r2tq_size = cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS *
1355 BNX2X_ISCSI_R2TQE_SIZE;
1356 cp->hq_size = cp->num_ccells * BNX2X_ISCSI_HQ_BD_SIZE;
1357 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1358 hq_bds = pages * (PAGE_SIZE / BNX2X_ISCSI_HQ_BD_SIZE);
1359 cp->num_cqs = req1->num_cqs;
1360
1361 if (!dev->max_iscsi_conn)
1362 return 0;
1363
1364 /* init Tstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001365 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001366 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001367 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001368 PAGE_SIZE);
1369 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001370 TSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001371 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001372 TSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001373 req1->num_tasks_per_conn);
1374
1375 /* init Ustorm RAM */
1376 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001377 USTORM_ISCSI_RQ_BUFFER_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001378 req1->rq_buffer_size);
Michael Chan14203982010-10-06 03:16:06 +00001379 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001380 PAGE_SIZE);
1381 CNIC_WR8(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001382 USTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001383 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001384 USTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001385 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001386 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001387 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001388 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001389 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001390 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001391 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1392
1393 /* init Xstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001394 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001395 PAGE_SIZE);
1396 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001397 XSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001398 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001399 XSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001400 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001401 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001402 hq_bds);
Michael Chan14203982010-10-06 03:16:06 +00001403 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_SQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001404 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001405 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001406 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1407
1408 /* init Cstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001409 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001410 PAGE_SIZE);
1411 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001412 CSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001413 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001414 CSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001415 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001416 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001417 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001418 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001419 hq_bds);
1420
1421 return 0;
1422}
1423
1424static int cnic_bnx2x_iscsi_init2(struct cnic_dev *dev, struct kwqe *kwqe)
1425{
1426 struct iscsi_kwqe_init2 *req2 = (struct iscsi_kwqe_init2 *) kwqe;
1427 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00001428 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001429 struct iscsi_kcqe kcqe;
1430 struct kcqe *cqes[1];
1431
1432 memset(&kcqe, 0, sizeof(kcqe));
1433 if (!dev->max_iscsi_conn) {
1434 kcqe.completion_status =
1435 ISCSI_KCQE_COMPLETION_STATUS_ISCSI_NOT_SUPPORTED;
1436 goto done;
1437 }
1438
1439 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001440 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001441 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001442 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001443 req2->error_bit_map[1]);
1444
1445 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001446 USTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001447 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001448 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001449 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001450 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001451 req2->error_bit_map[1]);
1452
1453 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001454 CSTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001455
1456 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1457
1458done:
1459 kcqe.op_code = ISCSI_KCQE_OPCODE_INIT;
1460 cqes[0] = (struct kcqe *) &kcqe;
1461 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1462
1463 return 0;
1464}
1465
1466static void cnic_free_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1467{
1468 struct cnic_local *cp = dev->cnic_priv;
1469 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1470
1471 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI) {
1472 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1473
1474 cnic_free_dma(dev, &iscsi->hq_info);
1475 cnic_free_dma(dev, &iscsi->r2tq_info);
1476 cnic_free_dma(dev, &iscsi->task_array_info);
Michael Chane1928c82010-12-23 07:43:04 +00001477 cnic_free_id(&cp->cid_tbl, ctx->cid);
1478 } else {
1479 cnic_free_id(&cp->fcoe_cid_tbl, ctx->cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001480 }
Michael Chane1928c82010-12-23 07:43:04 +00001481
Michael Chan71034ba2009-10-10 13:46:59 +00001482 ctx->cid = 0;
1483}
1484
1485static int cnic_alloc_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1486{
1487 u32 cid;
1488 int ret, pages;
1489 struct cnic_local *cp = dev->cnic_priv;
1490 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1491 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1492
Michael Chane1928c82010-12-23 07:43:04 +00001493 if (ctx->ulp_proto_id == CNIC_ULP_FCOE) {
1494 cid = cnic_alloc_new_id(&cp->fcoe_cid_tbl);
1495 if (cid == -1) {
1496 ret = -ENOMEM;
1497 goto error;
1498 }
1499 ctx->cid = cid;
1500 return 0;
1501 }
1502
Michael Chan71034ba2009-10-10 13:46:59 +00001503 cid = cnic_alloc_new_id(&cp->cid_tbl);
1504 if (cid == -1) {
1505 ret = -ENOMEM;
1506 goto error;
1507 }
1508
1509 ctx->cid = cid;
1510 pages = PAGE_ALIGN(cp->task_array_size) / PAGE_SIZE;
1511
1512 ret = cnic_alloc_dma(dev, &iscsi->task_array_info, pages, 1);
1513 if (ret)
1514 goto error;
1515
1516 pages = PAGE_ALIGN(cp->r2tq_size) / PAGE_SIZE;
1517 ret = cnic_alloc_dma(dev, &iscsi->r2tq_info, pages, 1);
1518 if (ret)
1519 goto error;
1520
1521 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1522 ret = cnic_alloc_dma(dev, &iscsi->hq_info, pages, 1);
1523 if (ret)
1524 goto error;
1525
1526 return 0;
1527
1528error:
1529 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1530 return ret;
1531}
1532
1533static void *cnic_get_bnx2x_ctx(struct cnic_dev *dev, u32 cid, int init,
1534 struct regpair *ctx_addr)
1535{
1536 struct cnic_local *cp = dev->cnic_priv;
1537 struct cnic_eth_dev *ethdev = cp->ethdev;
1538 int blk = (cid - ethdev->starting_cid) / cp->cids_per_blk;
1539 int off = (cid - ethdev->starting_cid) % cp->cids_per_blk;
1540 unsigned long align_off = 0;
1541 dma_addr_t ctx_map;
1542 void *ctx;
1543
1544 if (cp->ctx_align) {
1545 unsigned long mask = cp->ctx_align - 1;
1546
1547 if (cp->ctx_arr[blk].mapping & mask)
1548 align_off = cp->ctx_align -
1549 (cp->ctx_arr[blk].mapping & mask);
1550 }
1551 ctx_map = cp->ctx_arr[blk].mapping + align_off +
1552 (off * BNX2X_CONTEXT_MEM_SIZE);
1553 ctx = cp->ctx_arr[blk].ctx + align_off +
1554 (off * BNX2X_CONTEXT_MEM_SIZE);
1555 if (init)
1556 memset(ctx, 0, BNX2X_CONTEXT_MEM_SIZE);
1557
1558 ctx_addr->lo = ctx_map & 0xffffffff;
1559 ctx_addr->hi = (u64) ctx_map >> 32;
1560 return ctx;
1561}
1562
1563static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
1564 u32 num)
1565{
1566 struct cnic_local *cp = dev->cnic_priv;
1567 struct iscsi_kwqe_conn_offload1 *req1 =
1568 (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1569 struct iscsi_kwqe_conn_offload2 *req2 =
1570 (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1571 struct iscsi_kwqe_conn_offload3 *req3;
1572 struct cnic_context *ctx = &cp->ctx_tbl[req1->iscsi_conn_id];
1573 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1574 u32 cid = ctx->cid;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001575 u32 hw_cid = BNX2X_HW_CID(cp, cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001576 struct iscsi_context *ictx;
1577 struct regpair context_addr;
1578 int i, j, n = 2, n_max;
1579
1580 ctx->ctx_flags = 0;
1581 if (!req2->num_additional_wqes)
1582 return -EINVAL;
1583
1584 n_max = req2->num_additional_wqes + 2;
1585
1586 ictx = cnic_get_bnx2x_ctx(dev, cid, 1, &context_addr);
1587 if (ictx == NULL)
1588 return -ENOMEM;
1589
1590 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1591
1592 ictx->xstorm_ag_context.hq_prod = 1;
1593
1594 ictx->xstorm_st_context.iscsi.first_burst_length =
1595 ISCSI_DEF_FIRST_BURST_LEN;
1596 ictx->xstorm_st_context.iscsi.max_send_pdu_length =
1597 ISCSI_DEF_MAX_RECV_SEG_LEN;
1598 ictx->xstorm_st_context.iscsi.sq_pbl_base.lo =
1599 req1->sq_page_table_addr_lo;
1600 ictx->xstorm_st_context.iscsi.sq_pbl_base.hi =
1601 req1->sq_page_table_addr_hi;
1602 ictx->xstorm_st_context.iscsi.sq_curr_pbe.lo = req2->sq_first_pte.hi;
1603 ictx->xstorm_st_context.iscsi.sq_curr_pbe.hi = req2->sq_first_pte.lo;
1604 ictx->xstorm_st_context.iscsi.hq_pbl_base.lo =
1605 iscsi->hq_info.pgtbl_map & 0xffffffff;
1606 ictx->xstorm_st_context.iscsi.hq_pbl_base.hi =
1607 (u64) iscsi->hq_info.pgtbl_map >> 32;
1608 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.lo =
1609 iscsi->hq_info.pgtbl[0];
1610 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.hi =
1611 iscsi->hq_info.pgtbl[1];
1612 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.lo =
1613 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1614 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.hi =
1615 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1616 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.lo =
1617 iscsi->r2tq_info.pgtbl[0];
1618 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.hi =
1619 iscsi->r2tq_info.pgtbl[1];
1620 ictx->xstorm_st_context.iscsi.task_pbl_base.lo =
1621 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1622 ictx->xstorm_st_context.iscsi.task_pbl_base.hi =
1623 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1624 ictx->xstorm_st_context.iscsi.task_pbl_cache_idx =
1625 BNX2X_ISCSI_PBL_NOT_CACHED;
1626 ictx->xstorm_st_context.iscsi.flags.flags |=
1627 XSTORM_ISCSI_CONTEXT_FLAGS_B_IMMEDIATE_DATA;
1628 ictx->xstorm_st_context.iscsi.flags.flags |=
1629 XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T;
1630
1631 ictx->tstorm_st_context.iscsi.hdr_bytes_2_fetch = ISCSI_HEADER_SIZE;
1632 /* TSTORM requires the base address of RQ DB & not PTE */
1633 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.lo =
1634 req2->rq_page_table_addr_lo & PAGE_MASK;
1635 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.hi =
1636 req2->rq_page_table_addr_hi;
1637 ictx->tstorm_st_context.iscsi.iscsi_conn_id = req1->iscsi_conn_id;
1638 ictx->tstorm_st_context.tcp.cwnd = 0x5A8;
1639 ictx->tstorm_st_context.tcp.flags2 |=
1640 TSTORM_TCP_ST_CONTEXT_SECTION_DA_EN;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001641 ictx->tstorm_st_context.tcp.ooo_support_mode =
1642 TCP_TSTORM_OOO_DROP_AND_PROC_ACK;
Michael Chan71034ba2009-10-10 13:46:59 +00001643
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001644 ictx->timers_context.flags |= TIMERS_BLOCK_CONTEXT_CONN_VALID_FLG;
Michael Chan71034ba2009-10-10 13:46:59 +00001645
1646 ictx->ustorm_st_context.ring.rq.pbl_base.lo =
Michael Chan15971c32009-12-02 15:15:38 +00001647 req2->rq_page_table_addr_lo;
Michael Chan71034ba2009-10-10 13:46:59 +00001648 ictx->ustorm_st_context.ring.rq.pbl_base.hi =
Michael Chan15971c32009-12-02 15:15:38 +00001649 req2->rq_page_table_addr_hi;
Michael Chan71034ba2009-10-10 13:46:59 +00001650 ictx->ustorm_st_context.ring.rq.curr_pbe.lo = req3->qp_first_pte[0].hi;
1651 ictx->ustorm_st_context.ring.rq.curr_pbe.hi = req3->qp_first_pte[0].lo;
1652 ictx->ustorm_st_context.ring.r2tq.pbl_base.lo =
1653 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1654 ictx->ustorm_st_context.ring.r2tq.pbl_base.hi =
1655 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1656 ictx->ustorm_st_context.ring.r2tq.curr_pbe.lo =
1657 iscsi->r2tq_info.pgtbl[0];
1658 ictx->ustorm_st_context.ring.r2tq.curr_pbe.hi =
1659 iscsi->r2tq_info.pgtbl[1];
1660 ictx->ustorm_st_context.ring.cq_pbl_base.lo =
1661 req1->cq_page_table_addr_lo;
1662 ictx->ustorm_st_context.ring.cq_pbl_base.hi =
1663 req1->cq_page_table_addr_hi;
1664 ictx->ustorm_st_context.ring.cq[0].cq_sn = ISCSI_INITIAL_SN;
1665 ictx->ustorm_st_context.ring.cq[0].curr_pbe.lo = req2->cq_first_pte.hi;
1666 ictx->ustorm_st_context.ring.cq[0].curr_pbe.hi = req2->cq_first_pte.lo;
1667 ictx->ustorm_st_context.task_pbe_cache_index =
1668 BNX2X_ISCSI_PBL_NOT_CACHED;
1669 ictx->ustorm_st_context.task_pdu_cache_index =
1670 BNX2X_ISCSI_PDU_HEADER_NOT_CACHED;
1671
1672 for (i = 1, j = 1; i < cp->num_cqs; i++, j++) {
1673 if (j == 3) {
1674 if (n >= n_max)
1675 break;
1676 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1677 j = 0;
1678 }
1679 ictx->ustorm_st_context.ring.cq[i].cq_sn = ISCSI_INITIAL_SN;
1680 ictx->ustorm_st_context.ring.cq[i].curr_pbe.lo =
1681 req3->qp_first_pte[j].hi;
1682 ictx->ustorm_st_context.ring.cq[i].curr_pbe.hi =
1683 req3->qp_first_pte[j].lo;
1684 }
1685
1686 ictx->ustorm_st_context.task_pbl_base.lo =
1687 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1688 ictx->ustorm_st_context.task_pbl_base.hi =
1689 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1690 ictx->ustorm_st_context.tce_phy_addr.lo =
1691 iscsi->task_array_info.pgtbl[0];
1692 ictx->ustorm_st_context.tce_phy_addr.hi =
1693 iscsi->task_array_info.pgtbl[1];
1694 ictx->ustorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1695 ictx->ustorm_st_context.num_cqs = cp->num_cqs;
1696 ictx->ustorm_st_context.negotiated_rx |= ISCSI_DEF_MAX_RECV_SEG_LEN;
1697 ictx->ustorm_st_context.negotiated_rx_and_flags |=
1698 ISCSI_DEF_MAX_BURST_LEN;
1699 ictx->ustorm_st_context.negotiated_rx |=
1700 ISCSI_DEFAULT_MAX_OUTSTANDING_R2T <<
1701 USTORM_ISCSI_ST_CONTEXT_MAX_OUTSTANDING_R2TS_SHIFT;
1702
1703 ictx->cstorm_st_context.hq_pbl_base.lo =
1704 iscsi->hq_info.pgtbl_map & 0xffffffff;
1705 ictx->cstorm_st_context.hq_pbl_base.hi =
1706 (u64) iscsi->hq_info.pgtbl_map >> 32;
1707 ictx->cstorm_st_context.hq_curr_pbe.lo = iscsi->hq_info.pgtbl[0];
1708 ictx->cstorm_st_context.hq_curr_pbe.hi = iscsi->hq_info.pgtbl[1];
1709 ictx->cstorm_st_context.task_pbl_base.lo =
1710 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1711 ictx->cstorm_st_context.task_pbl_base.hi =
1712 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1713 /* CSTORM and USTORM initialization is different, CSTORM requires
1714 * CQ DB base & not PTE addr */
1715 ictx->cstorm_st_context.cq_db_base.lo =
1716 req1->cq_page_table_addr_lo & PAGE_MASK;
1717 ictx->cstorm_st_context.cq_db_base.hi = req1->cq_page_table_addr_hi;
1718 ictx->cstorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1719 ictx->cstorm_st_context.cq_proc_en_bit_map = (1 << cp->num_cqs) - 1;
1720 for (i = 0; i < cp->num_cqs; i++) {
1721 ictx->cstorm_st_context.cq_c_prod_sqn_arr.sqn[i] =
1722 ISCSI_INITIAL_SN;
1723 ictx->cstorm_st_context.cq_c_sqn_2_notify_arr.sqn[i] =
1724 ISCSI_INITIAL_SN;
1725 }
1726
1727 ictx->xstorm_ag_context.cdu_reserved =
1728 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
1729 ISCSI_CONNECTION_TYPE);
1730 ictx->ustorm_ag_context.cdu_usage =
1731 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
1732 ISCSI_CONNECTION_TYPE);
1733 return 0;
1734
1735}
1736
1737static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
1738 u32 num, int *work)
1739{
1740 struct iscsi_kwqe_conn_offload1 *req1;
1741 struct iscsi_kwqe_conn_offload2 *req2;
1742 struct cnic_local *cp = dev->cnic_priv;
Michael Chanfdf24082010-10-13 14:06:47 +00001743 struct cnic_context *ctx;
Michael Chan71034ba2009-10-10 13:46:59 +00001744 struct iscsi_kcqe kcqe;
1745 struct kcqe *cqes[1];
1746 u32 l5_cid;
Michael Chanfdf24082010-10-13 14:06:47 +00001747 int ret = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001748
1749 if (num < 2) {
1750 *work = num;
1751 return -EINVAL;
1752 }
1753
1754 req1 = (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1755 req2 = (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1756 if ((num - 2) < req2->num_additional_wqes) {
1757 *work = num;
1758 return -EINVAL;
1759 }
Joe Perches779bb412010-11-14 17:04:37 +00001760 *work = 2 + req2->num_additional_wqes;
Michael Chan71034ba2009-10-10 13:46:59 +00001761
1762 l5_cid = req1->iscsi_conn_id;
1763 if (l5_cid >= MAX_ISCSI_TBL_SZ)
1764 return -EINVAL;
1765
1766 memset(&kcqe, 0, sizeof(kcqe));
1767 kcqe.op_code = ISCSI_KCQE_OPCODE_OFFLOAD_CONN;
1768 kcqe.iscsi_conn_id = l5_cid;
1769 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
1770
Michael Chanfdf24082010-10-13 14:06:47 +00001771 ctx = &cp->ctx_tbl[l5_cid];
1772 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags)) {
1773 kcqe.completion_status =
1774 ISCSI_KCQE_COMPLETION_STATUS_CID_BUSY;
1775 goto done;
1776 }
1777
Michael Chan71034ba2009-10-10 13:46:59 +00001778 if (atomic_inc_return(&cp->iscsi_conn) > dev->max_iscsi_conn) {
1779 atomic_dec(&cp->iscsi_conn);
Michael Chan71034ba2009-10-10 13:46:59 +00001780 goto done;
1781 }
1782 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
1783 if (ret) {
1784 atomic_dec(&cp->iscsi_conn);
1785 ret = 0;
1786 goto done;
1787 }
1788 ret = cnic_setup_bnx2x_ctx(dev, wqes, num);
1789 if (ret < 0) {
1790 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1791 atomic_dec(&cp->iscsi_conn);
1792 goto done;
1793 }
1794
1795 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001796 kcqe.iscsi_conn_context_id = BNX2X_HW_CID(cp, cp->ctx_tbl[l5_cid].cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001797
1798done:
1799 cqes[0] = (struct kcqe *) &kcqe;
1800 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1801 return ret;
1802}
1803
1804
1805static int cnic_bnx2x_iscsi_update(struct cnic_dev *dev, struct kwqe *kwqe)
1806{
1807 struct cnic_local *cp = dev->cnic_priv;
1808 struct iscsi_kwqe_conn_update *req =
1809 (struct iscsi_kwqe_conn_update *) kwqe;
1810 void *data;
1811 union l5cm_specific_data l5_data;
1812 u32 l5_cid, cid = BNX2X_SW_CID(req->context_id);
1813 int ret;
1814
1815 if (cnic_get_l5_cid(cp, cid, &l5_cid) != 0)
1816 return -EINVAL;
1817
1818 data = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
1819 if (!data)
1820 return -ENOMEM;
1821
1822 memcpy(data, kwqe, sizeof(struct kwqe));
1823
1824 ret = cnic_submit_kwqe_16(dev, ISCSI_RAMROD_CMD_ID_UPDATE_CONN,
1825 req->context_id, ISCSI_CONNECTION_TYPE, &l5_data);
1826 return ret;
1827}
1828
Michael Chana2c9e762010-10-13 14:06:46 +00001829static int cnic_bnx2x_destroy_ramrod(struct cnic_dev *dev, u32 l5_cid)
Michael Chan71034ba2009-10-10 13:46:59 +00001830{
1831 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001832 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
Michael Chana2c9e762010-10-13 14:06:46 +00001833 union l5cm_specific_data l5_data;
1834 int ret;
Michael Chan68d7c1a2011-01-05 15:14:13 +00001835 u32 hw_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001836
Michael Chan71034ba2009-10-10 13:46:59 +00001837 init_waitqueue_head(&ctx->waitq);
1838 ctx->wait_cond = 0;
1839 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001840 hw_cid = BNX2X_HW_CID(cp, ctx->cid);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001841
1842 ret = cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00001843 hw_cid, NONE_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001844
Michael Chan71034ba2009-10-10 13:46:59 +00001845 if (ret == 0)
1846 wait_event(ctx->waitq, ctx->wait_cond);
1847
Michael Chana2c9e762010-10-13 14:06:46 +00001848 return ret;
1849}
1850
1851static int cnic_bnx2x_iscsi_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
1852{
1853 struct cnic_local *cp = dev->cnic_priv;
1854 struct iscsi_kwqe_conn_destroy *req =
1855 (struct iscsi_kwqe_conn_destroy *) kwqe;
1856 u32 l5_cid = req->reserved0;
1857 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1858 int ret = 0;
1859 struct iscsi_kcqe kcqe;
1860 struct kcqe *cqes[1];
1861
1862 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
1863 goto skip_cfc_delete;
1864
Michael Chanfdf24082010-10-13 14:06:47 +00001865 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
1866 unsigned long delta = ctx->timestamp + (2 * HZ) - jiffies;
1867
1868 if (delta > (2 * HZ))
1869 delta = 0;
1870
1871 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
1872 queue_delayed_work(cnic_wq, &cp->delete_task, delta);
1873 goto destroy_reply;
1874 }
Michael Chana2c9e762010-10-13 14:06:46 +00001875
1876 ret = cnic_bnx2x_destroy_ramrod(dev, l5_cid);
1877
Michael Chan71034ba2009-10-10 13:46:59 +00001878skip_cfc_delete:
1879 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1880
1881 atomic_dec(&cp->iscsi_conn);
Michael Chanfdf24082010-10-13 14:06:47 +00001882 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00001883
Michael Chanfdf24082010-10-13 14:06:47 +00001884destroy_reply:
Michael Chan71034ba2009-10-10 13:46:59 +00001885 memset(&kcqe, 0, sizeof(kcqe));
1886 kcqe.op_code = ISCSI_KCQE_OPCODE_DESTROY_CONN;
1887 kcqe.iscsi_conn_id = l5_cid;
1888 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1889 kcqe.iscsi_conn_context_id = req->context_id;
1890
1891 cqes[0] = (struct kcqe *) &kcqe;
1892 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1893
1894 return ret;
1895}
1896
1897static void cnic_init_storm_conn_bufs(struct cnic_dev *dev,
1898 struct l4_kwq_connect_req1 *kwqe1,
1899 struct l4_kwq_connect_req3 *kwqe3,
1900 struct l5cm_active_conn_buffer *conn_buf)
1901{
1902 struct l5cm_conn_addr_params *conn_addr = &conn_buf->conn_addr_buf;
1903 struct l5cm_xstorm_conn_buffer *xstorm_buf =
1904 &conn_buf->xstorm_conn_buffer;
1905 struct l5cm_tstorm_conn_buffer *tstorm_buf =
1906 &conn_buf->tstorm_conn_buffer;
1907 struct regpair context_addr;
1908 u32 cid = BNX2X_SW_CID(kwqe1->cid);
1909 struct in6_addr src_ip, dst_ip;
1910 int i;
1911 u32 *addrp;
1912
1913 addrp = (u32 *) &conn_addr->local_ip_addr;
1914 for (i = 0; i < 4; i++, addrp++)
1915 src_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
1916
1917 addrp = (u32 *) &conn_addr->remote_ip_addr;
1918 for (i = 0; i < 4; i++, addrp++)
1919 dst_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
1920
1921 cnic_get_bnx2x_ctx(dev, cid, 0, &context_addr);
1922
1923 xstorm_buf->context_addr.hi = context_addr.hi;
1924 xstorm_buf->context_addr.lo = context_addr.lo;
1925 xstorm_buf->mss = 0xffff;
1926 xstorm_buf->rcv_buf = kwqe3->rcv_buf;
1927 if (kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE)
1928 xstorm_buf->params |= L5CM_XSTORM_CONN_BUFFER_NAGLE_ENABLE;
1929 xstorm_buf->pseudo_header_checksum =
1930 swab16(~csum_ipv6_magic(&src_ip, &dst_ip, 0, IPPROTO_TCP, 0));
1931
1932 if (!(kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK))
1933 tstorm_buf->params |=
1934 L5CM_TSTORM_CONN_BUFFER_DELAYED_ACK_ENABLE;
1935 if (kwqe3->ka_timeout) {
1936 tstorm_buf->ka_enable = 1;
1937 tstorm_buf->ka_timeout = kwqe3->ka_timeout;
1938 tstorm_buf->ka_interval = kwqe3->ka_interval;
1939 tstorm_buf->ka_max_probe_count = kwqe3->ka_max_probe_count;
1940 }
1941 tstorm_buf->rcv_buf = kwqe3->rcv_buf;
1942 tstorm_buf->snd_buf = kwqe3->snd_buf;
1943 tstorm_buf->max_rt_time = 0xffffffff;
1944}
1945
1946static void cnic_init_bnx2x_mac(struct cnic_dev *dev)
1947{
1948 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00001949 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001950 u8 *mac = dev->mac_addr;
1951
1952 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001953 XSTORM_ISCSI_LOCAL_MAC_ADDR0_OFFSET(pfid), mac[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001954 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001955 XSTORM_ISCSI_LOCAL_MAC_ADDR1_OFFSET(pfid), mac[1]);
Michael Chan71034ba2009-10-10 13:46:59 +00001956 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001957 XSTORM_ISCSI_LOCAL_MAC_ADDR2_OFFSET(pfid), mac[2]);
Michael Chan71034ba2009-10-10 13:46:59 +00001958 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001959 XSTORM_ISCSI_LOCAL_MAC_ADDR3_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00001960 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001961 XSTORM_ISCSI_LOCAL_MAC_ADDR4_OFFSET(pfid), mac[4]);
Michael Chan71034ba2009-10-10 13:46:59 +00001962 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001963 XSTORM_ISCSI_LOCAL_MAC_ADDR5_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00001964
1965 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001966 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00001967 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001968 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00001969 mac[4]);
1970 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001971 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00001972 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001973 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00001974 mac[2]);
1975 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001976 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 2,
Michael Chan71034ba2009-10-10 13:46:59 +00001977 mac[1]);
1978 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001979 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 3,
Michael Chan71034ba2009-10-10 13:46:59 +00001980 mac[0]);
1981}
1982
1983static void cnic_bnx2x_set_tcp_timestamp(struct cnic_dev *dev, int tcp_ts)
1984{
1985 struct cnic_local *cp = dev->cnic_priv;
1986 u8 xstorm_flags = XSTORM_L5CM_TCP_FLAGS_WND_SCL_EN;
1987 u16 tstorm_flags = 0;
1988
1989 if (tcp_ts) {
1990 xstorm_flags |= XSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
1991 tstorm_flags |= TSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
1992 }
1993
1994 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001995 XSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), xstorm_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00001996
1997 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001998 TSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), tstorm_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00001999}
2000
2001static int cnic_bnx2x_connect(struct cnic_dev *dev, struct kwqe *wqes[],
2002 u32 num, int *work)
2003{
2004 struct cnic_local *cp = dev->cnic_priv;
2005 struct l4_kwq_connect_req1 *kwqe1 =
2006 (struct l4_kwq_connect_req1 *) wqes[0];
2007 struct l4_kwq_connect_req3 *kwqe3;
2008 struct l5cm_active_conn_buffer *conn_buf;
2009 struct l5cm_conn_addr_params *conn_addr;
2010 union l5cm_specific_data l5_data;
2011 u32 l5_cid = kwqe1->pg_cid;
2012 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
2013 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
2014 int ret;
2015
2016 if (num < 2) {
2017 *work = num;
2018 return -EINVAL;
2019 }
2020
2021 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6)
2022 *work = 3;
2023 else
2024 *work = 2;
2025
2026 if (num < *work) {
2027 *work = num;
2028 return -EINVAL;
2029 }
2030
2031 if (sizeof(*conn_buf) > CNIC_KWQ16_DATA_SIZE) {
Joe Perchesddf79b22010-02-17 15:01:54 +00002032 netdev_err(dev->netdev, "conn_buf size too big\n");
Michael Chan71034ba2009-10-10 13:46:59 +00002033 return -ENOMEM;
2034 }
2035 conn_buf = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2036 if (!conn_buf)
2037 return -ENOMEM;
2038
2039 memset(conn_buf, 0, sizeof(*conn_buf));
2040
2041 conn_addr = &conn_buf->conn_addr_buf;
2042 conn_addr->remote_addr_0 = csk->ha[0];
2043 conn_addr->remote_addr_1 = csk->ha[1];
2044 conn_addr->remote_addr_2 = csk->ha[2];
2045 conn_addr->remote_addr_3 = csk->ha[3];
2046 conn_addr->remote_addr_4 = csk->ha[4];
2047 conn_addr->remote_addr_5 = csk->ha[5];
2048
2049 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6) {
2050 struct l4_kwq_connect_req2 *kwqe2 =
2051 (struct l4_kwq_connect_req2 *) wqes[1];
2052
2053 conn_addr->local_ip_addr.ip_addr_hi_hi = kwqe2->src_ip_v6_4;
2054 conn_addr->local_ip_addr.ip_addr_hi_lo = kwqe2->src_ip_v6_3;
2055 conn_addr->local_ip_addr.ip_addr_lo_hi = kwqe2->src_ip_v6_2;
2056
2057 conn_addr->remote_ip_addr.ip_addr_hi_hi = kwqe2->dst_ip_v6_4;
2058 conn_addr->remote_ip_addr.ip_addr_hi_lo = kwqe2->dst_ip_v6_3;
2059 conn_addr->remote_ip_addr.ip_addr_lo_hi = kwqe2->dst_ip_v6_2;
2060 conn_addr->params |= L5CM_CONN_ADDR_PARAMS_IP_VERSION;
2061 }
2062 kwqe3 = (struct l4_kwq_connect_req3 *) wqes[*work - 1];
2063
2064 conn_addr->local_ip_addr.ip_addr_lo_lo = kwqe1->src_ip;
2065 conn_addr->remote_ip_addr.ip_addr_lo_lo = kwqe1->dst_ip;
2066 conn_addr->local_tcp_port = kwqe1->src_port;
2067 conn_addr->remote_tcp_port = kwqe1->dst_port;
2068
2069 conn_addr->pmtu = kwqe3->pmtu;
2070 cnic_init_storm_conn_bufs(dev, kwqe1, kwqe3, conn_buf);
2071
2072 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002073 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(cp->pfid), csk->vlan_id);
Michael Chan71034ba2009-10-10 13:46:59 +00002074
2075 cnic_bnx2x_set_tcp_timestamp(dev,
2076 kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_TIME_STAMP);
2077
2078 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_TCP_CONNECT,
2079 kwqe1->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2080 if (!ret)
Michael Chan6e0dda02010-10-13 14:06:45 +00002081 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002082
2083 return ret;
2084}
2085
2086static int cnic_bnx2x_close(struct cnic_dev *dev, struct kwqe *kwqe)
2087{
2088 struct l4_kwq_close_req *req = (struct l4_kwq_close_req *) kwqe;
2089 union l5cm_specific_data l5_data;
2090 int ret;
2091
2092 memset(&l5_data, 0, sizeof(l5_data));
2093 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_CLOSE,
2094 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2095 return ret;
2096}
2097
2098static int cnic_bnx2x_reset(struct cnic_dev *dev, struct kwqe *kwqe)
2099{
2100 struct l4_kwq_reset_req *req = (struct l4_kwq_reset_req *) kwqe;
2101 union l5cm_specific_data l5_data;
2102 int ret;
2103
2104 memset(&l5_data, 0, sizeof(l5_data));
2105 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_ABORT,
2106 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2107 return ret;
2108}
2109static int cnic_bnx2x_offload_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2110{
2111 struct l4_kwq_offload_pg *req = (struct l4_kwq_offload_pg *) kwqe;
2112 struct l4_kcq kcqe;
2113 struct kcqe *cqes[1];
2114
2115 memset(&kcqe, 0, sizeof(kcqe));
2116 kcqe.pg_host_opaque = req->host_opaque;
2117 kcqe.pg_cid = req->host_opaque;
2118 kcqe.op_code = L4_KCQE_OPCODE_VALUE_OFFLOAD_PG;
2119 cqes[0] = (struct kcqe *) &kcqe;
2120 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2121 return 0;
2122}
2123
2124static int cnic_bnx2x_update_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2125{
2126 struct l4_kwq_update_pg *req = (struct l4_kwq_update_pg *) kwqe;
2127 struct l4_kcq kcqe;
2128 struct kcqe *cqes[1];
2129
2130 memset(&kcqe, 0, sizeof(kcqe));
2131 kcqe.pg_host_opaque = req->pg_host_opaque;
2132 kcqe.pg_cid = req->pg_cid;
2133 kcqe.op_code = L4_KCQE_OPCODE_VALUE_UPDATE_PG;
2134 cqes[0] = (struct kcqe *) &kcqe;
2135 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2136 return 0;
2137}
2138
Michael Chane1928c82010-12-23 07:43:04 +00002139static int cnic_bnx2x_fcoe_stat(struct cnic_dev *dev, struct kwqe *kwqe)
2140{
2141 struct fcoe_kwqe_stat *req;
2142 struct fcoe_stat_ramrod_params *fcoe_stat;
2143 union l5cm_specific_data l5_data;
2144 struct cnic_local *cp = dev->cnic_priv;
2145 int ret;
2146 u32 cid;
2147
2148 req = (struct fcoe_kwqe_stat *) kwqe;
2149 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2150
2151 fcoe_stat = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2152 if (!fcoe_stat)
2153 return -ENOMEM;
2154
2155 memset(fcoe_stat, 0, sizeof(*fcoe_stat));
2156 memcpy(&fcoe_stat->stat_kwqe, req, sizeof(*req));
2157
2158 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_STAT, cid,
2159 FCOE_CONNECTION_TYPE, &l5_data);
2160 return ret;
2161}
2162
2163static int cnic_bnx2x_fcoe_init1(struct cnic_dev *dev, struct kwqe *wqes[],
2164 u32 num, int *work)
2165{
2166 int ret;
2167 struct cnic_local *cp = dev->cnic_priv;
2168 u32 cid;
2169 struct fcoe_init_ramrod_params *fcoe_init;
2170 struct fcoe_kwqe_init1 *req1;
2171 struct fcoe_kwqe_init2 *req2;
2172 struct fcoe_kwqe_init3 *req3;
2173 union l5cm_specific_data l5_data;
2174
2175 if (num < 3) {
2176 *work = num;
2177 return -EINVAL;
2178 }
2179 req1 = (struct fcoe_kwqe_init1 *) wqes[0];
2180 req2 = (struct fcoe_kwqe_init2 *) wqes[1];
2181 req3 = (struct fcoe_kwqe_init3 *) wqes[2];
2182 if (req2->hdr.op_code != FCOE_KWQE_OPCODE_INIT2) {
2183 *work = 1;
2184 return -EINVAL;
2185 }
2186 if (req3->hdr.op_code != FCOE_KWQE_OPCODE_INIT3) {
2187 *work = 2;
2188 return -EINVAL;
2189 }
2190
2191 if (sizeof(*fcoe_init) > CNIC_KWQ16_DATA_SIZE) {
2192 netdev_err(dev->netdev, "fcoe_init size too big\n");
2193 return -ENOMEM;
2194 }
2195 fcoe_init = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2196 if (!fcoe_init)
2197 return -ENOMEM;
2198
2199 memset(fcoe_init, 0, sizeof(*fcoe_init));
2200 memcpy(&fcoe_init->init_kwqe1, req1, sizeof(*req1));
2201 memcpy(&fcoe_init->init_kwqe2, req2, sizeof(*req2));
2202 memcpy(&fcoe_init->init_kwqe3, req3, sizeof(*req3));
2203 fcoe_init->eq_addr.lo = cp->kcq2.dma.pg_map_arr[0] & 0xffffffff;
2204 fcoe_init->eq_addr.hi = (u64) cp->kcq2.dma.pg_map_arr[0] >> 32;
2205 fcoe_init->eq_next_page_addr.lo =
2206 cp->kcq2.dma.pg_map_arr[1] & 0xffffffff;
2207 fcoe_init->eq_next_page_addr.hi =
2208 (u64) cp->kcq2.dma.pg_map_arr[1] >> 32;
2209
2210 fcoe_init->sb_num = cp->status_blk_num;
2211 fcoe_init->eq_prod = MAX_KCQ_IDX;
2212 fcoe_init->sb_id = HC_INDEX_FCOE_EQ_CONS;
2213 cp->kcq2.sw_prod_idx = 0;
2214
2215 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
Michael Chane1928c82010-12-23 07:43:04 +00002216 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_INIT, cid,
2217 FCOE_CONNECTION_TYPE, &l5_data);
2218 *work = 3;
2219 return ret;
2220}
2221
2222static int cnic_bnx2x_fcoe_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
2223 u32 num, int *work)
2224{
2225 int ret = 0;
2226 u32 cid = -1, l5_cid;
2227 struct cnic_local *cp = dev->cnic_priv;
2228 struct fcoe_kwqe_conn_offload1 *req1;
2229 struct fcoe_kwqe_conn_offload2 *req2;
2230 struct fcoe_kwqe_conn_offload3 *req3;
2231 struct fcoe_kwqe_conn_offload4 *req4;
2232 struct fcoe_conn_offload_ramrod_params *fcoe_offload;
2233 struct cnic_context *ctx;
2234 struct fcoe_context *fctx;
2235 struct regpair ctx_addr;
2236 union l5cm_specific_data l5_data;
2237 struct fcoe_kcqe kcqe;
2238 struct kcqe *cqes[1];
2239
2240 if (num < 4) {
2241 *work = num;
2242 return -EINVAL;
2243 }
2244 req1 = (struct fcoe_kwqe_conn_offload1 *) wqes[0];
2245 req2 = (struct fcoe_kwqe_conn_offload2 *) wqes[1];
2246 req3 = (struct fcoe_kwqe_conn_offload3 *) wqes[2];
2247 req4 = (struct fcoe_kwqe_conn_offload4 *) wqes[3];
2248
2249 *work = 4;
2250
2251 l5_cid = req1->fcoe_conn_id;
2252 if (l5_cid >= BNX2X_FCOE_NUM_CONNECTIONS)
2253 goto err_reply;
2254
2255 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2256
2257 ctx = &cp->ctx_tbl[l5_cid];
2258 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2259 goto err_reply;
2260
2261 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
2262 if (ret) {
2263 ret = 0;
2264 goto err_reply;
2265 }
2266 cid = ctx->cid;
2267
2268 fctx = cnic_get_bnx2x_ctx(dev, cid, 1, &ctx_addr);
2269 if (fctx) {
2270 u32 hw_cid = BNX2X_HW_CID(cp, cid);
2271 u32 val;
2272
2273 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
2274 FCOE_CONNECTION_TYPE);
2275 fctx->xstorm_ag_context.cdu_reserved = val;
2276 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
2277 FCOE_CONNECTION_TYPE);
2278 fctx->ustorm_ag_context.cdu_usage = val;
2279 }
2280 if (sizeof(*fcoe_offload) > CNIC_KWQ16_DATA_SIZE) {
2281 netdev_err(dev->netdev, "fcoe_offload size too big\n");
2282 goto err_reply;
2283 }
2284 fcoe_offload = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2285 if (!fcoe_offload)
2286 goto err_reply;
2287
2288 memset(fcoe_offload, 0, sizeof(*fcoe_offload));
2289 memcpy(&fcoe_offload->offload_kwqe1, req1, sizeof(*req1));
2290 memcpy(&fcoe_offload->offload_kwqe2, req2, sizeof(*req2));
2291 memcpy(&fcoe_offload->offload_kwqe3, req3, sizeof(*req3));
2292 memcpy(&fcoe_offload->offload_kwqe4, req4, sizeof(*req4));
2293
2294 cid = BNX2X_HW_CID(cp, cid);
2295 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_OFFLOAD_CONN, cid,
2296 FCOE_CONNECTION_TYPE, &l5_data);
2297 if (!ret)
2298 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
2299
2300 return ret;
2301
2302err_reply:
2303 if (cid != -1)
2304 cnic_free_bnx2x_conn_resc(dev, l5_cid);
2305
2306 memset(&kcqe, 0, sizeof(kcqe));
2307 kcqe.op_code = FCOE_KCQE_OPCODE_OFFLOAD_CONN;
2308 kcqe.fcoe_conn_id = req1->fcoe_conn_id;
2309 kcqe.completion_status = FCOE_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
2310
2311 cqes[0] = (struct kcqe *) &kcqe;
2312 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2313 return ret;
2314}
2315
2316static int cnic_bnx2x_fcoe_enable(struct cnic_dev *dev, struct kwqe *kwqe)
2317{
2318 struct fcoe_kwqe_conn_enable_disable *req;
2319 struct fcoe_conn_enable_disable_ramrod_params *fcoe_enable;
2320 union l5cm_specific_data l5_data;
2321 int ret;
2322 u32 cid, l5_cid;
2323 struct cnic_local *cp = dev->cnic_priv;
2324
2325 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2326 cid = req->context_id;
2327 l5_cid = req->conn_id + BNX2X_FCOE_L5_CID_BASE;
2328
2329 if (sizeof(*fcoe_enable) > CNIC_KWQ16_DATA_SIZE) {
2330 netdev_err(dev->netdev, "fcoe_enable size too big\n");
2331 return -ENOMEM;
2332 }
2333 fcoe_enable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2334 if (!fcoe_enable)
2335 return -ENOMEM;
2336
2337 memset(fcoe_enable, 0, sizeof(*fcoe_enable));
2338 memcpy(&fcoe_enable->enable_disable_kwqe, req, sizeof(*req));
2339 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_ENABLE_CONN, cid,
2340 FCOE_CONNECTION_TYPE, &l5_data);
2341 return ret;
2342}
2343
2344static int cnic_bnx2x_fcoe_disable(struct cnic_dev *dev, struct kwqe *kwqe)
2345{
2346 struct fcoe_kwqe_conn_enable_disable *req;
2347 struct fcoe_conn_enable_disable_ramrod_params *fcoe_disable;
2348 union l5cm_specific_data l5_data;
2349 int ret;
2350 u32 cid, l5_cid;
2351 struct cnic_local *cp = dev->cnic_priv;
2352
2353 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2354 cid = req->context_id;
2355 l5_cid = req->conn_id;
2356 if (l5_cid >= BNX2X_FCOE_NUM_CONNECTIONS)
2357 return -EINVAL;
2358
2359 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2360
2361 if (sizeof(*fcoe_disable) > CNIC_KWQ16_DATA_SIZE) {
2362 netdev_err(dev->netdev, "fcoe_disable size too big\n");
2363 return -ENOMEM;
2364 }
2365 fcoe_disable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2366 if (!fcoe_disable)
2367 return -ENOMEM;
2368
2369 memset(fcoe_disable, 0, sizeof(*fcoe_disable));
2370 memcpy(&fcoe_disable->enable_disable_kwqe, req, sizeof(*req));
2371 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DISABLE_CONN, cid,
2372 FCOE_CONNECTION_TYPE, &l5_data);
2373 return ret;
2374}
2375
2376static int cnic_bnx2x_fcoe_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2377{
2378 struct fcoe_kwqe_conn_destroy *req;
2379 union l5cm_specific_data l5_data;
2380 int ret;
2381 u32 cid, l5_cid;
2382 struct cnic_local *cp = dev->cnic_priv;
2383 struct cnic_context *ctx;
2384 struct fcoe_kcqe kcqe;
2385 struct kcqe *cqes[1];
2386
2387 req = (struct fcoe_kwqe_conn_destroy *) kwqe;
2388 cid = req->context_id;
2389 l5_cid = req->conn_id;
2390 if (l5_cid >= BNX2X_FCOE_NUM_CONNECTIONS)
2391 return -EINVAL;
2392
2393 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2394
2395 ctx = &cp->ctx_tbl[l5_cid];
2396
2397 init_waitqueue_head(&ctx->waitq);
2398 ctx->wait_cond = 0;
2399
2400 memset(&l5_data, 0, sizeof(l5_data));
2401 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_TERMINATE_CONN, cid,
2402 FCOE_CONNECTION_TYPE, &l5_data);
2403 if (ret == 0) {
2404 wait_event(ctx->waitq, ctx->wait_cond);
2405 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
2406 queue_delayed_work(cnic_wq, &cp->delete_task,
2407 msecs_to_jiffies(2000));
2408 }
2409
2410 memset(&kcqe, 0, sizeof(kcqe));
2411 kcqe.op_code = FCOE_KCQE_OPCODE_DESTROY_CONN;
2412 kcqe.fcoe_conn_id = req->conn_id;
2413 kcqe.fcoe_conn_context_id = cid;
2414
2415 cqes[0] = (struct kcqe *) &kcqe;
2416 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2417 return ret;
2418}
2419
2420static int cnic_bnx2x_fcoe_fw_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2421{
2422 struct fcoe_kwqe_destroy *req;
2423 union l5cm_specific_data l5_data;
2424 struct cnic_local *cp = dev->cnic_priv;
2425 int ret;
2426 u32 cid;
2427
2428 req = (struct fcoe_kwqe_destroy *) kwqe;
2429 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2430
2431 memset(&l5_data, 0, sizeof(l5_data));
2432 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DESTROY, cid,
2433 FCOE_CONNECTION_TYPE, &l5_data);
2434 return ret;
2435}
2436
2437static int cnic_submit_bnx2x_iscsi_kwqes(struct cnic_dev *dev,
2438 struct kwqe *wqes[], u32 num_wqes)
Michael Chan71034ba2009-10-10 13:46:59 +00002439{
2440 int i, work, ret;
2441 u32 opcode;
2442 struct kwqe *kwqe;
2443
2444 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2445 return -EAGAIN; /* bnx2 is down */
2446
2447 for (i = 0; i < num_wqes; ) {
2448 kwqe = wqes[i];
2449 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2450 work = 1;
2451
2452 switch (opcode) {
2453 case ISCSI_KWQE_OPCODE_INIT1:
2454 ret = cnic_bnx2x_iscsi_init1(dev, kwqe);
2455 break;
2456 case ISCSI_KWQE_OPCODE_INIT2:
2457 ret = cnic_bnx2x_iscsi_init2(dev, kwqe);
2458 break;
2459 case ISCSI_KWQE_OPCODE_OFFLOAD_CONN1:
2460 ret = cnic_bnx2x_iscsi_ofld1(dev, &wqes[i],
2461 num_wqes - i, &work);
2462 break;
2463 case ISCSI_KWQE_OPCODE_UPDATE_CONN:
2464 ret = cnic_bnx2x_iscsi_update(dev, kwqe);
2465 break;
2466 case ISCSI_KWQE_OPCODE_DESTROY_CONN:
2467 ret = cnic_bnx2x_iscsi_destroy(dev, kwqe);
2468 break;
2469 case L4_KWQE_OPCODE_VALUE_CONNECT1:
2470 ret = cnic_bnx2x_connect(dev, &wqes[i], num_wqes - i,
2471 &work);
2472 break;
2473 case L4_KWQE_OPCODE_VALUE_CLOSE:
2474 ret = cnic_bnx2x_close(dev, kwqe);
2475 break;
2476 case L4_KWQE_OPCODE_VALUE_RESET:
2477 ret = cnic_bnx2x_reset(dev, kwqe);
2478 break;
2479 case L4_KWQE_OPCODE_VALUE_OFFLOAD_PG:
2480 ret = cnic_bnx2x_offload_pg(dev, kwqe);
2481 break;
2482 case L4_KWQE_OPCODE_VALUE_UPDATE_PG:
2483 ret = cnic_bnx2x_update_pg(dev, kwqe);
2484 break;
2485 case L4_KWQE_OPCODE_VALUE_UPLOAD_PG:
2486 ret = 0;
2487 break;
2488 default:
2489 ret = 0;
Joe Perchesddf79b22010-02-17 15:01:54 +00002490 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2491 opcode);
Michael Chan71034ba2009-10-10 13:46:59 +00002492 break;
2493 }
2494 if (ret < 0)
Joe Perchesddf79b22010-02-17 15:01:54 +00002495 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2496 opcode);
Michael Chan71034ba2009-10-10 13:46:59 +00002497 i += work;
2498 }
2499 return 0;
2500}
2501
Michael Chane1928c82010-12-23 07:43:04 +00002502static int cnic_submit_bnx2x_fcoe_kwqes(struct cnic_dev *dev,
2503 struct kwqe *wqes[], u32 num_wqes)
2504{
2505 struct cnic_local *cp = dev->cnic_priv;
2506 int i, work, ret;
2507 u32 opcode;
2508 struct kwqe *kwqe;
2509
2510 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2511 return -EAGAIN; /* bnx2 is down */
2512
2513 if (BNX2X_CHIP_NUM(cp->chip_id) == BNX2X_CHIP_NUM_57710)
2514 return -EINVAL;
2515
2516 for (i = 0; i < num_wqes; ) {
2517 kwqe = wqes[i];
2518 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2519 work = 1;
2520
2521 switch (opcode) {
2522 case FCOE_KWQE_OPCODE_INIT1:
2523 ret = cnic_bnx2x_fcoe_init1(dev, &wqes[i],
2524 num_wqes - i, &work);
2525 break;
2526 case FCOE_KWQE_OPCODE_OFFLOAD_CONN1:
2527 ret = cnic_bnx2x_fcoe_ofld1(dev, &wqes[i],
2528 num_wqes - i, &work);
2529 break;
2530 case FCOE_KWQE_OPCODE_ENABLE_CONN:
2531 ret = cnic_bnx2x_fcoe_enable(dev, kwqe);
2532 break;
2533 case FCOE_KWQE_OPCODE_DISABLE_CONN:
2534 ret = cnic_bnx2x_fcoe_disable(dev, kwqe);
2535 break;
2536 case FCOE_KWQE_OPCODE_DESTROY_CONN:
2537 ret = cnic_bnx2x_fcoe_destroy(dev, kwqe);
2538 break;
2539 case FCOE_KWQE_OPCODE_DESTROY:
2540 ret = cnic_bnx2x_fcoe_fw_destroy(dev, kwqe);
2541 break;
2542 case FCOE_KWQE_OPCODE_STAT:
2543 ret = cnic_bnx2x_fcoe_stat(dev, kwqe);
2544 break;
2545 default:
2546 ret = 0;
2547 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2548 opcode);
2549 break;
2550 }
2551 if (ret < 0)
2552 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2553 opcode);
2554 i += work;
2555 }
2556 return 0;
2557}
2558
2559static int cnic_submit_bnx2x_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
2560 u32 num_wqes)
2561{
2562 int ret = -EINVAL;
2563 u32 layer_code;
2564
2565 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2566 return -EAGAIN; /* bnx2x is down */
2567
2568 if (!num_wqes)
2569 return 0;
2570
2571 layer_code = wqes[0]->kwqe_op_flag & KWQE_LAYER_MASK;
2572 switch (layer_code) {
2573 case KWQE_FLAGS_LAYER_MASK_L5_ISCSI:
2574 case KWQE_FLAGS_LAYER_MASK_L4:
2575 case KWQE_FLAGS_LAYER_MASK_L2:
2576 ret = cnic_submit_bnx2x_iscsi_kwqes(dev, wqes, num_wqes);
2577 break;
2578
2579 case KWQE_FLAGS_LAYER_MASK_L5_FCOE:
2580 ret = cnic_submit_bnx2x_fcoe_kwqes(dev, wqes, num_wqes);
2581 break;
2582 }
2583 return ret;
2584}
2585
2586static inline u32 cnic_get_kcqe_layer_mask(u32 opflag)
2587{
2588 if (unlikely(KCQE_OPCODE(opflag) == FCOE_RAMROD_CMD_ID_TERMINATE_CONN))
2589 return KCQE_FLAGS_LAYER_MASK_L4;
2590
2591 return opflag & KCQE_FLAGS_LAYER_MASK;
2592}
2593
Michael Chana4636962009-06-08 18:14:43 -07002594static void service_kcqes(struct cnic_dev *dev, int num_cqes)
2595{
2596 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002597 int i, j, comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002598
2599 i = 0;
2600 j = 1;
2601 while (num_cqes) {
2602 struct cnic_ulp_ops *ulp_ops;
2603 int ulp_type;
2604 u32 kcqe_op_flag = cp->completed_kcq[i]->kcqe_op_flag;
Michael Chane1928c82010-12-23 07:43:04 +00002605 u32 kcqe_layer = cnic_get_kcqe_layer_mask(kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002606
2607 if (unlikely(kcqe_op_flag & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002608 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002609
2610 while (j < num_cqes) {
2611 u32 next_op = cp->completed_kcq[i + j]->kcqe_op_flag;
2612
Michael Chane1928c82010-12-23 07:43:04 +00002613 if (cnic_get_kcqe_layer_mask(next_op) != kcqe_layer)
Michael Chana4636962009-06-08 18:14:43 -07002614 break;
2615
2616 if (unlikely(next_op & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002617 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002618 j++;
2619 }
2620
2621 if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_RDMA)
2622 ulp_type = CNIC_ULP_RDMA;
2623 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_ISCSI)
2624 ulp_type = CNIC_ULP_ISCSI;
Michael Chane1928c82010-12-23 07:43:04 +00002625 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_FCOE)
2626 ulp_type = CNIC_ULP_FCOE;
Michael Chana4636962009-06-08 18:14:43 -07002627 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L4)
2628 ulp_type = CNIC_ULP_L4;
2629 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L2)
2630 goto end;
2631 else {
Joe Perchesddf79b22010-02-17 15:01:54 +00002632 netdev_err(dev->netdev, "Unknown type of KCQE(0x%x)\n",
2633 kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002634 goto end;
2635 }
2636
2637 rcu_read_lock();
2638 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
2639 if (likely(ulp_ops)) {
2640 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
2641 cp->completed_kcq + i, j);
2642 }
2643 rcu_read_unlock();
2644end:
2645 num_cqes -= j;
2646 i += j;
2647 j = 1;
2648 }
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002649 if (unlikely(comp))
2650 cnic_spq_completion(dev, DRV_CTL_RET_L5_SPQ_CREDIT_CMD, comp);
Michael Chana4636962009-06-08 18:14:43 -07002651}
2652
2653static u16 cnic_bnx2_next_idx(u16 idx)
2654{
2655 return idx + 1;
2656}
2657
2658static u16 cnic_bnx2_hw_idx(u16 idx)
2659{
2660 return idx;
2661}
2662
Michael Chan71034ba2009-10-10 13:46:59 +00002663static u16 cnic_bnx2x_next_idx(u16 idx)
2664{
2665 idx++;
2666 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
2667 idx++;
2668
2669 return idx;
2670}
2671
2672static u16 cnic_bnx2x_hw_idx(u16 idx)
2673{
2674 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
2675 idx++;
2676 return idx;
2677}
2678
Michael Chan644b9d42010-06-24 14:58:40 +00002679static int cnic_get_kcqes(struct cnic_dev *dev, struct kcq_info *info)
Michael Chana4636962009-06-08 18:14:43 -07002680{
2681 struct cnic_local *cp = dev->cnic_priv;
Michael Chan644b9d42010-06-24 14:58:40 +00002682 u16 i, ri, hw_prod, last;
Michael Chana4636962009-06-08 18:14:43 -07002683 struct kcqe *kcqe;
2684 int kcqe_cnt = 0, last_cnt = 0;
2685
Michael Chan644b9d42010-06-24 14:58:40 +00002686 i = ri = last = info->sw_prod_idx;
Michael Chana4636962009-06-08 18:14:43 -07002687 ri &= MAX_KCQ_IDX;
Michael Chan644b9d42010-06-24 14:58:40 +00002688 hw_prod = *info->hw_prod_idx_ptr;
2689 hw_prod = cp->hw_idx(hw_prod);
Michael Chana4636962009-06-08 18:14:43 -07002690
2691 while ((i != hw_prod) && (kcqe_cnt < MAX_COMPLETED_KCQE)) {
Michael Chan644b9d42010-06-24 14:58:40 +00002692 kcqe = &info->kcq[KCQ_PG(ri)][KCQ_IDX(ri)];
Michael Chana4636962009-06-08 18:14:43 -07002693 cp->completed_kcq[kcqe_cnt++] = kcqe;
2694 i = cp->next_idx(i);
2695 ri = i & MAX_KCQ_IDX;
2696 if (likely(!(kcqe->kcqe_op_flag & KCQE_FLAGS_NEXT))) {
2697 last_cnt = kcqe_cnt;
2698 last = i;
2699 }
2700 }
2701
Michael Chan644b9d42010-06-24 14:58:40 +00002702 info->sw_prod_idx = last;
Michael Chana4636962009-06-08 18:14:43 -07002703 return last_cnt;
2704}
2705
Michael Chan48f753d2010-05-18 11:32:53 +00002706static int cnic_l2_completion(struct cnic_local *cp)
2707{
2708 u16 hw_cons, sw_cons;
Michael Chancd801532010-10-13 14:06:49 +00002709 struct cnic_uio_dev *udev = cp->udev;
Michael Chan48f753d2010-05-18 11:32:53 +00002710 union eth_rx_cqe *cqe, *cqe_ring = (union eth_rx_cqe *)
Michael Chancd801532010-10-13 14:06:49 +00002711 (udev->l2_ring + (2 * BCM_PAGE_SIZE));
Michael Chan48f753d2010-05-18 11:32:53 +00002712 u32 cmd;
2713 int comp = 0;
2714
2715 if (!test_bit(CNIC_F_BNX2X_CLASS, &cp->dev->flags))
2716 return 0;
2717
2718 hw_cons = *cp->rx_cons_ptr;
2719 if ((hw_cons & BNX2X_MAX_RCQ_DESC_CNT) == BNX2X_MAX_RCQ_DESC_CNT)
2720 hw_cons++;
2721
2722 sw_cons = cp->rx_cons;
2723 while (sw_cons != hw_cons) {
2724 u8 cqe_fp_flags;
2725
2726 cqe = &cqe_ring[sw_cons & BNX2X_MAX_RCQ_DESC_CNT];
2727 cqe_fp_flags = cqe->fast_path_cqe.type_error_flags;
2728 if (cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE) {
2729 cmd = le32_to_cpu(cqe->ramrod_cqe.conn_and_cmd_data);
2730 cmd >>= COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT;
2731 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP ||
2732 cmd == RAMROD_CMD_ID_ETH_HALT)
2733 comp++;
2734 }
2735 sw_cons = BNX2X_NEXT_RCQE(sw_cons);
2736 }
2737 return comp;
2738}
2739
Michael Chan86b53602009-10-10 13:46:57 +00002740static void cnic_chk_pkt_rings(struct cnic_local *cp)
Michael Chana4636962009-06-08 18:14:43 -07002741{
Michael Chan541a7812010-10-06 03:17:22 +00002742 u16 rx_cons, tx_cons;
Michael Chan48f753d2010-05-18 11:32:53 +00002743 int comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002744
Michael Chan541a7812010-10-06 03:17:22 +00002745 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
Michael Chan66fee9e2010-06-24 14:58:38 +00002746 return;
2747
Michael Chan541a7812010-10-06 03:17:22 +00002748 rx_cons = *cp->rx_cons_ptr;
2749 tx_cons = *cp->tx_cons_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002750 if (cp->tx_cons != tx_cons || cp->rx_cons != rx_cons) {
Michael Chan48f753d2010-05-18 11:32:53 +00002751 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
2752 comp = cnic_l2_completion(cp);
2753
Michael Chana4636962009-06-08 18:14:43 -07002754 cp->tx_cons = tx_cons;
2755 cp->rx_cons = rx_cons;
Michael Chan71034ba2009-10-10 13:46:59 +00002756
Michael Chancd801532010-10-13 14:06:49 +00002757 if (cp->udev)
2758 uio_event_notify(&cp->udev->cnic_uinfo);
Michael Chana4636962009-06-08 18:14:43 -07002759 }
Michael Chan48f753d2010-05-18 11:32:53 +00002760 if (comp)
2761 clear_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07002762}
2763
Michael Chanb177a5d52010-06-24 14:58:41 +00002764static u32 cnic_service_bnx2_queues(struct cnic_dev *dev)
Michael Chana4636962009-06-08 18:14:43 -07002765{
Michael Chana4636962009-06-08 18:14:43 -07002766 struct cnic_local *cp = dev->cnic_priv;
Michael Chanb177a5d52010-06-24 14:58:41 +00002767 u32 status_idx = (u16) *cp->kcq1.status_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002768 int kcqe_cnt;
2769
Michael Chan107c3f42011-03-02 13:00:49 +00002770 /* status block index must be read before reading other fields */
2771 rmb();
Michael Chana4636962009-06-08 18:14:43 -07002772 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
2773
Michael Chan644b9d42010-06-24 14:58:40 +00002774 while ((kcqe_cnt = cnic_get_kcqes(dev, &cp->kcq1))) {
Michael Chana4636962009-06-08 18:14:43 -07002775
2776 service_kcqes(dev, kcqe_cnt);
2777
2778 /* Tell compiler that status_blk fields can change. */
2779 barrier();
Michael Chan644b9d42010-06-24 14:58:40 +00002780 if (status_idx != *cp->kcq1.status_idx_ptr) {
Michael Chanb177a5d52010-06-24 14:58:41 +00002781 status_idx = (u16) *cp->kcq1.status_idx_ptr;
Michael Chan107c3f42011-03-02 13:00:49 +00002782 /* status block index must be read first */
2783 rmb();
Michael Chana4636962009-06-08 18:14:43 -07002784 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002785 } else
2786 break;
2787 }
2788
Michael Chan644b9d42010-06-24 14:58:40 +00002789 CNIC_WR16(dev, cp->kcq1.io_addr, cp->kcq1.sw_prod_idx);
Michael Chana4636962009-06-08 18:14:43 -07002790
Michael Chan86b53602009-10-10 13:46:57 +00002791 cnic_chk_pkt_rings(cp);
Michael Chanb177a5d52010-06-24 14:58:41 +00002792
Michael Chana4636962009-06-08 18:14:43 -07002793 return status_idx;
2794}
2795
Michael Chanb177a5d52010-06-24 14:58:41 +00002796static int cnic_service_bnx2(void *data, void *status_blk)
2797{
2798 struct cnic_dev *dev = data;
Michael Chanb177a5d52010-06-24 14:58:41 +00002799
Michael Chaneaaa6e92010-12-23 08:38:30 +00002800 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
2801 struct status_block *sblk = status_blk;
2802
2803 return sblk->status_idx;
2804 }
Michael Chanb177a5d52010-06-24 14:58:41 +00002805
2806 return cnic_service_bnx2_queues(dev);
2807}
2808
Michael Chana4636962009-06-08 18:14:43 -07002809static void cnic_service_bnx2_msix(unsigned long data)
2810{
2811 struct cnic_dev *dev = (struct cnic_dev *) data;
2812 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07002813
Michael Chanb177a5d52010-06-24 14:58:41 +00002814 cp->last_status_idx = cnic_service_bnx2_queues(dev);
Michael Chana4636962009-06-08 18:14:43 -07002815
Michael Chana4636962009-06-08 18:14:43 -07002816 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
2817 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
2818}
2819
Michael Chan66fee9e2010-06-24 14:58:38 +00002820static void cnic_doirq(struct cnic_dev *dev)
2821{
2822 struct cnic_local *cp = dev->cnic_priv;
Michael Chan66fee9e2010-06-24 14:58:38 +00002823
2824 if (likely(test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
Michael Chaneaaa6e92010-12-23 08:38:30 +00002825 u16 prod = cp->kcq1.sw_prod_idx & MAX_KCQ_IDX;
2826
Michael Chan66fee9e2010-06-24 14:58:38 +00002827 prefetch(cp->status_blk.gen);
Michael Chane6c28892010-06-24 14:58:39 +00002828 prefetch(&cp->kcq1.kcq[KCQ_PG(prod)][KCQ_IDX(prod)]);
Michael Chan66fee9e2010-06-24 14:58:38 +00002829
2830 tasklet_schedule(&cp->cnic_irq_task);
2831 }
2832}
2833
Michael Chana4636962009-06-08 18:14:43 -07002834static irqreturn_t cnic_irq(int irq, void *dev_instance)
2835{
2836 struct cnic_dev *dev = dev_instance;
2837 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07002838
2839 if (cp->ack_int)
2840 cp->ack_int(dev);
2841
Michael Chan66fee9e2010-06-24 14:58:38 +00002842 cnic_doirq(dev);
Michael Chana4636962009-06-08 18:14:43 -07002843
2844 return IRQ_HANDLED;
2845}
2846
Michael Chan71034ba2009-10-10 13:46:59 +00002847static inline void cnic_ack_bnx2x_int(struct cnic_dev *dev, u8 id, u8 storm,
2848 u16 index, u8 op, u8 update)
2849{
2850 struct cnic_local *cp = dev->cnic_priv;
2851 u32 hc_addr = (HC_REG_COMMAND_REG + CNIC_PORT(cp) * 32 +
2852 COMMAND_REG_INT_ACK);
2853 struct igu_ack_register igu_ack;
2854
2855 igu_ack.status_block_index = index;
2856 igu_ack.sb_id_and_flags =
2857 ((id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
2858 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
2859 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
2860 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
2861
2862 CNIC_WR(dev, hc_addr, (*(u32 *)&igu_ack));
2863}
2864
Michael Chanee87a822010-10-13 14:06:51 +00002865static void cnic_ack_igu_sb(struct cnic_dev *dev, u8 igu_sb_id, u8 segment,
2866 u16 index, u8 op, u8 update)
2867{
2868 struct igu_regular cmd_data;
2869 u32 igu_addr = BAR_IGU_INTMEM + (IGU_CMD_INT_ACK_BASE + igu_sb_id) * 8;
2870
2871 cmd_data.sb_id_and_flags =
2872 (index << IGU_REGULAR_SB_INDEX_SHIFT) |
2873 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
2874 (update << IGU_REGULAR_BUPDATE_SHIFT) |
2875 (op << IGU_REGULAR_ENABLE_INT_SHIFT);
2876
2877
2878 CNIC_WR(dev, igu_addr, cmd_data.sb_id_and_flags);
2879}
2880
Michael Chan71034ba2009-10-10 13:46:59 +00002881static void cnic_ack_bnx2x_msix(struct cnic_dev *dev)
2882{
2883 struct cnic_local *cp = dev->cnic_priv;
2884
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002885 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, CSTORM_ID, 0,
Michael Chan71034ba2009-10-10 13:46:59 +00002886 IGU_INT_DISABLE, 0);
2887}
2888
Michael Chanee87a822010-10-13 14:06:51 +00002889static void cnic_ack_bnx2x_e2_msix(struct cnic_dev *dev)
2890{
2891 struct cnic_local *cp = dev->cnic_priv;
2892
2893 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF, 0,
2894 IGU_INT_DISABLE, 0);
2895}
2896
Michael Chanb177a5d52010-06-24 14:58:41 +00002897static u32 cnic_service_bnx2x_kcq(struct cnic_dev *dev, struct kcq_info *info)
Michael Chan71034ba2009-10-10 13:46:59 +00002898{
Michael Chanb177a5d52010-06-24 14:58:41 +00002899 u32 last_status = *info->status_idx_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00002900 int kcqe_cnt;
2901
Michael Chan107c3f42011-03-02 13:00:49 +00002902 /* status block index must be read before reading the KCQ */
2903 rmb();
Michael Chanb177a5d52010-06-24 14:58:41 +00002904 while ((kcqe_cnt = cnic_get_kcqes(dev, info))) {
Michael Chan71034ba2009-10-10 13:46:59 +00002905
2906 service_kcqes(dev, kcqe_cnt);
2907
2908 /* Tell compiler that sblk fields can change. */
2909 barrier();
Michael Chanb177a5d52010-06-24 14:58:41 +00002910 if (last_status == *info->status_idx_ptr)
Michael Chan71034ba2009-10-10 13:46:59 +00002911 break;
2912
Michael Chanb177a5d52010-06-24 14:58:41 +00002913 last_status = *info->status_idx_ptr;
Michael Chan107c3f42011-03-02 13:00:49 +00002914 /* status block index must be read before reading the KCQ */
2915 rmb();
Michael Chan71034ba2009-10-10 13:46:59 +00002916 }
Michael Chanb177a5d52010-06-24 14:58:41 +00002917 return last_status;
2918}
2919
2920static void cnic_service_bnx2x_bh(unsigned long data)
2921{
2922 struct cnic_dev *dev = (struct cnic_dev *) data;
2923 struct cnic_local *cp = dev->cnic_priv;
Michael Chan0197b082011-03-02 13:00:50 +00002924 u32 status_idx, new_status_idx;
Michael Chanb177a5d52010-06-24 14:58:41 +00002925
2926 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags)))
2927 return;
2928
Michael Chan0197b082011-03-02 13:00:50 +00002929 while (1) {
2930 status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq1);
Michael Chan71034ba2009-10-10 13:46:59 +00002931
Michael Chan0197b082011-03-02 13:00:50 +00002932 CNIC_WR16(dev, cp->kcq1.io_addr,
2933 cp->kcq1.sw_prod_idx + MAX_KCQ_IDX);
Michael Chane21ba412010-12-23 07:43:03 +00002934
Michael Chan0197b082011-03-02 13:00:50 +00002935 if (!BNX2X_CHIP_IS_E2(cp->chip_id)) {
2936 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, USTORM_ID,
2937 status_idx, IGU_INT_ENABLE, 1);
2938 break;
2939 }
2940
2941 new_status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq2);
2942
2943 if (new_status_idx != status_idx)
2944 continue;
Michael Chane21ba412010-12-23 07:43:03 +00002945
2946 CNIC_WR16(dev, cp->kcq2.io_addr, cp->kcq2.sw_prod_idx +
2947 MAX_KCQ_IDX);
2948
Michael Chanee87a822010-10-13 14:06:51 +00002949 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF,
2950 status_idx, IGU_INT_ENABLE, 1);
Michael Chan0197b082011-03-02 13:00:50 +00002951
2952 break;
Michael Chane21ba412010-12-23 07:43:03 +00002953 }
Michael Chan71034ba2009-10-10 13:46:59 +00002954}
2955
2956static int cnic_service_bnx2x(void *data, void *status_blk)
2957{
2958 struct cnic_dev *dev = data;
2959 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00002960
Michael Chan66fee9e2010-06-24 14:58:38 +00002961 if (!(cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
2962 cnic_doirq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00002963
Michael Chan66fee9e2010-06-24 14:58:38 +00002964 cnic_chk_pkt_rings(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00002965
2966 return 0;
2967}
2968
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07002969static void cnic_ulp_stop_one(struct cnic_local *cp, int if_type)
2970{
2971 struct cnic_ulp_ops *ulp_ops;
2972
2973 if (if_type == CNIC_ULP_ISCSI)
2974 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
2975
2976 mutex_lock(&cnic_lock);
2977 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
2978 lockdep_is_held(&cnic_lock));
2979 if (!ulp_ops) {
2980 mutex_unlock(&cnic_lock);
2981 return;
2982 }
2983 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
2984 mutex_unlock(&cnic_lock);
2985
2986 if (test_and_clear_bit(ULP_F_START, &cp->ulp_flags[if_type]))
2987 ulp_ops->cnic_stop(cp->ulp_handle[if_type]);
2988
2989 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
2990}
2991
Michael Chana4636962009-06-08 18:14:43 -07002992static void cnic_ulp_stop(struct cnic_dev *dev)
2993{
2994 struct cnic_local *cp = dev->cnic_priv;
2995 int if_type;
2996
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07002997 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++)
2998 cnic_ulp_stop_one(cp, if_type);
Michael Chana4636962009-06-08 18:14:43 -07002999}
3000
3001static void cnic_ulp_start(struct cnic_dev *dev)
3002{
3003 struct cnic_local *cp = dev->cnic_priv;
3004 int if_type;
3005
Michael Chana4636962009-06-08 18:14:43 -07003006 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
3007 struct cnic_ulp_ops *ulp_ops;
3008
Michael Chan681dbd72009-08-14 15:49:46 +00003009 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003010 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
3011 lockdep_is_held(&cnic_lock));
Michael Chan681dbd72009-08-14 15:49:46 +00003012 if (!ulp_ops || !ulp_ops->cnic_start) {
3013 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003014 continue;
Michael Chan681dbd72009-08-14 15:49:46 +00003015 }
3016 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3017 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003018
3019 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[if_type]))
3020 ulp_ops->cnic_start(cp->ulp_handle[if_type]);
Michael Chan681dbd72009-08-14 15:49:46 +00003021
3022 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
Michael Chana4636962009-06-08 18:14:43 -07003023 }
Michael Chana4636962009-06-08 18:14:43 -07003024}
3025
3026static int cnic_ctl(void *data, struct cnic_ctl_info *info)
3027{
3028 struct cnic_dev *dev = data;
3029
3030 switch (info->cmd) {
3031 case CNIC_CTL_STOP_CMD:
3032 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003033
3034 cnic_ulp_stop(dev);
3035 cnic_stop_hw(dev);
3036
Michael Chana4636962009-06-08 18:14:43 -07003037 cnic_put(dev);
3038 break;
3039 case CNIC_CTL_START_CMD:
3040 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003041
3042 if (!cnic_start_hw(dev))
3043 cnic_ulp_start(dev);
3044
Michael Chana4636962009-06-08 18:14:43 -07003045 cnic_put(dev);
3046 break;
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003047 case CNIC_CTL_STOP_ISCSI_CMD: {
3048 struct cnic_local *cp = dev->cnic_priv;
3049 set_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags);
3050 queue_delayed_work(cnic_wq, &cp->delete_task, 0);
3051 break;
3052 }
Michael Chan71034ba2009-10-10 13:46:59 +00003053 case CNIC_CTL_COMPLETION_CMD: {
3054 u32 cid = BNX2X_SW_CID(info->data.comp.cid);
3055 u32 l5_cid;
3056 struct cnic_local *cp = dev->cnic_priv;
3057
3058 if (cnic_get_l5_cid(cp, cid, &l5_cid) == 0) {
3059 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3060
3061 ctx->wait_cond = 1;
3062 wake_up(&ctx->waitq);
3063 }
3064 break;
3065 }
Michael Chana4636962009-06-08 18:14:43 -07003066 default:
3067 return -EINVAL;
3068 }
3069 return 0;
3070}
3071
3072static void cnic_ulp_init(struct cnic_dev *dev)
3073{
3074 int i;
3075 struct cnic_local *cp = dev->cnic_priv;
3076
Michael Chana4636962009-06-08 18:14:43 -07003077 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3078 struct cnic_ulp_ops *ulp_ops;
3079
Michael Chan7fc1ece2009-08-14 15:49:47 +00003080 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003081 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003082 if (!ulp_ops || !ulp_ops->cnic_init) {
3083 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003084 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003085 }
3086 ulp_get(ulp_ops);
3087 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003088
3089 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3090 ulp_ops->cnic_init(dev);
3091
Michael Chan7fc1ece2009-08-14 15:49:47 +00003092 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003093 }
Michael Chana4636962009-06-08 18:14:43 -07003094}
3095
3096static void cnic_ulp_exit(struct cnic_dev *dev)
3097{
3098 int i;
3099 struct cnic_local *cp = dev->cnic_priv;
3100
Michael Chana4636962009-06-08 18:14:43 -07003101 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3102 struct cnic_ulp_ops *ulp_ops;
3103
Michael Chan7fc1ece2009-08-14 15:49:47 +00003104 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003105 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003106 if (!ulp_ops || !ulp_ops->cnic_exit) {
3107 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003108 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003109 }
3110 ulp_get(ulp_ops);
3111 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003112
3113 if (test_and_clear_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3114 ulp_ops->cnic_exit(dev);
3115
Michael Chan7fc1ece2009-08-14 15:49:47 +00003116 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003117 }
Michael Chana4636962009-06-08 18:14:43 -07003118}
3119
3120static int cnic_cm_offload_pg(struct cnic_sock *csk)
3121{
3122 struct cnic_dev *dev = csk->dev;
3123 struct l4_kwq_offload_pg *l4kwqe;
3124 struct kwqe *wqes[1];
3125
3126 l4kwqe = (struct l4_kwq_offload_pg *) &csk->kwqe1;
3127 memset(l4kwqe, 0, sizeof(*l4kwqe));
3128 wqes[0] = (struct kwqe *) l4kwqe;
3129
3130 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_OFFLOAD_PG;
3131 l4kwqe->flags =
3132 L4_LAYER_CODE << L4_KWQ_OFFLOAD_PG_LAYER_CODE_SHIFT;
3133 l4kwqe->l2hdr_nbytes = ETH_HLEN;
3134
3135 l4kwqe->da0 = csk->ha[0];
3136 l4kwqe->da1 = csk->ha[1];
3137 l4kwqe->da2 = csk->ha[2];
3138 l4kwqe->da3 = csk->ha[3];
3139 l4kwqe->da4 = csk->ha[4];
3140 l4kwqe->da5 = csk->ha[5];
3141
3142 l4kwqe->sa0 = dev->mac_addr[0];
3143 l4kwqe->sa1 = dev->mac_addr[1];
3144 l4kwqe->sa2 = dev->mac_addr[2];
3145 l4kwqe->sa3 = dev->mac_addr[3];
3146 l4kwqe->sa4 = dev->mac_addr[4];
3147 l4kwqe->sa5 = dev->mac_addr[5];
3148
3149 l4kwqe->etype = ETH_P_IP;
Eddie Waia9736c02010-02-24 14:42:04 +00003150 l4kwqe->ipid_start = DEF_IPID_START;
Michael Chana4636962009-06-08 18:14:43 -07003151 l4kwqe->host_opaque = csk->l5_cid;
3152
3153 if (csk->vlan_id) {
3154 l4kwqe->pg_flags |= L4_KWQ_OFFLOAD_PG_VLAN_TAGGING;
3155 l4kwqe->vlan_tag = csk->vlan_id;
3156 l4kwqe->l2hdr_nbytes += 4;
3157 }
3158
3159 return dev->submit_kwqes(dev, wqes, 1);
3160}
3161
3162static int cnic_cm_update_pg(struct cnic_sock *csk)
3163{
3164 struct cnic_dev *dev = csk->dev;
3165 struct l4_kwq_update_pg *l4kwqe;
3166 struct kwqe *wqes[1];
3167
3168 l4kwqe = (struct l4_kwq_update_pg *) &csk->kwqe1;
3169 memset(l4kwqe, 0, sizeof(*l4kwqe));
3170 wqes[0] = (struct kwqe *) l4kwqe;
3171
3172 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPDATE_PG;
3173 l4kwqe->flags =
3174 L4_LAYER_CODE << L4_KWQ_UPDATE_PG_LAYER_CODE_SHIFT;
3175 l4kwqe->pg_cid = csk->pg_cid;
3176
3177 l4kwqe->da0 = csk->ha[0];
3178 l4kwqe->da1 = csk->ha[1];
3179 l4kwqe->da2 = csk->ha[2];
3180 l4kwqe->da3 = csk->ha[3];
3181 l4kwqe->da4 = csk->ha[4];
3182 l4kwqe->da5 = csk->ha[5];
3183
3184 l4kwqe->pg_host_opaque = csk->l5_cid;
3185 l4kwqe->pg_valids = L4_KWQ_UPDATE_PG_VALIDS_DA;
3186
3187 return dev->submit_kwqes(dev, wqes, 1);
3188}
3189
3190static int cnic_cm_upload_pg(struct cnic_sock *csk)
3191{
3192 struct cnic_dev *dev = csk->dev;
3193 struct l4_kwq_upload *l4kwqe;
3194 struct kwqe *wqes[1];
3195
3196 l4kwqe = (struct l4_kwq_upload *) &csk->kwqe1;
3197 memset(l4kwqe, 0, sizeof(*l4kwqe));
3198 wqes[0] = (struct kwqe *) l4kwqe;
3199
3200 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPLOAD_PG;
3201 l4kwqe->flags =
3202 L4_LAYER_CODE << L4_KWQ_UPLOAD_LAYER_CODE_SHIFT;
3203 l4kwqe->cid = csk->pg_cid;
3204
3205 return dev->submit_kwqes(dev, wqes, 1);
3206}
3207
3208static int cnic_cm_conn_req(struct cnic_sock *csk)
3209{
3210 struct cnic_dev *dev = csk->dev;
3211 struct l4_kwq_connect_req1 *l4kwqe1;
3212 struct l4_kwq_connect_req2 *l4kwqe2;
3213 struct l4_kwq_connect_req3 *l4kwqe3;
3214 struct kwqe *wqes[3];
3215 u8 tcp_flags = 0;
3216 int num_wqes = 2;
3217
3218 l4kwqe1 = (struct l4_kwq_connect_req1 *) &csk->kwqe1;
3219 l4kwqe2 = (struct l4_kwq_connect_req2 *) &csk->kwqe2;
3220 l4kwqe3 = (struct l4_kwq_connect_req3 *) &csk->kwqe3;
3221 memset(l4kwqe1, 0, sizeof(*l4kwqe1));
3222 memset(l4kwqe2, 0, sizeof(*l4kwqe2));
3223 memset(l4kwqe3, 0, sizeof(*l4kwqe3));
3224
3225 l4kwqe3->op_code = L4_KWQE_OPCODE_VALUE_CONNECT3;
3226 l4kwqe3->flags =
3227 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ3_LAYER_CODE_SHIFT;
3228 l4kwqe3->ka_timeout = csk->ka_timeout;
3229 l4kwqe3->ka_interval = csk->ka_interval;
3230 l4kwqe3->ka_max_probe_count = csk->ka_max_probe_count;
3231 l4kwqe3->tos = csk->tos;
3232 l4kwqe3->ttl = csk->ttl;
3233 l4kwqe3->snd_seq_scale = csk->snd_seq_scale;
3234 l4kwqe3->pmtu = csk->mtu;
3235 l4kwqe3->rcv_buf = csk->rcv_buf;
3236 l4kwqe3->snd_buf = csk->snd_buf;
3237 l4kwqe3->seed = csk->seed;
3238
3239 wqes[0] = (struct kwqe *) l4kwqe1;
3240 if (test_bit(SK_F_IPV6, &csk->flags)) {
3241 wqes[1] = (struct kwqe *) l4kwqe2;
3242 wqes[2] = (struct kwqe *) l4kwqe3;
3243 num_wqes = 3;
3244
3245 l4kwqe1->conn_flags = L4_KWQ_CONNECT_REQ1_IP_V6;
3246 l4kwqe2->op_code = L4_KWQE_OPCODE_VALUE_CONNECT2;
3247 l4kwqe2->flags =
3248 L4_KWQ_CONNECT_REQ2_LINKED_WITH_NEXT |
3249 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ2_LAYER_CODE_SHIFT;
3250 l4kwqe2->src_ip_v6_2 = be32_to_cpu(csk->src_ip[1]);
3251 l4kwqe2->src_ip_v6_3 = be32_to_cpu(csk->src_ip[2]);
3252 l4kwqe2->src_ip_v6_4 = be32_to_cpu(csk->src_ip[3]);
3253 l4kwqe2->dst_ip_v6_2 = be32_to_cpu(csk->dst_ip[1]);
3254 l4kwqe2->dst_ip_v6_3 = be32_to_cpu(csk->dst_ip[2]);
3255 l4kwqe2->dst_ip_v6_4 = be32_to_cpu(csk->dst_ip[3]);
3256 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct ipv6hdr) -
3257 sizeof(struct tcphdr);
3258 } else {
3259 wqes[1] = (struct kwqe *) l4kwqe3;
3260 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct iphdr) -
3261 sizeof(struct tcphdr);
3262 }
3263
3264 l4kwqe1->op_code = L4_KWQE_OPCODE_VALUE_CONNECT1;
3265 l4kwqe1->flags =
3266 (L4_LAYER_CODE << L4_KWQ_CONNECT_REQ1_LAYER_CODE_SHIFT) |
3267 L4_KWQ_CONNECT_REQ3_LINKED_WITH_NEXT;
3268 l4kwqe1->cid = csk->cid;
3269 l4kwqe1->pg_cid = csk->pg_cid;
3270 l4kwqe1->src_ip = be32_to_cpu(csk->src_ip[0]);
3271 l4kwqe1->dst_ip = be32_to_cpu(csk->dst_ip[0]);
3272 l4kwqe1->src_port = be16_to_cpu(csk->src_port);
3273 l4kwqe1->dst_port = be16_to_cpu(csk->dst_port);
3274 if (csk->tcp_flags & SK_TCP_NO_DELAY_ACK)
3275 tcp_flags |= L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK;
3276 if (csk->tcp_flags & SK_TCP_KEEP_ALIVE)
3277 tcp_flags |= L4_KWQ_CONNECT_REQ1_KEEP_ALIVE;
3278 if (csk->tcp_flags & SK_TCP_NAGLE)
3279 tcp_flags |= L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE;
3280 if (csk->tcp_flags & SK_TCP_TIMESTAMP)
3281 tcp_flags |= L4_KWQ_CONNECT_REQ1_TIME_STAMP;
3282 if (csk->tcp_flags & SK_TCP_SACK)
3283 tcp_flags |= L4_KWQ_CONNECT_REQ1_SACK;
3284 if (csk->tcp_flags & SK_TCP_SEG_SCALING)
3285 tcp_flags |= L4_KWQ_CONNECT_REQ1_SEG_SCALING;
3286
3287 l4kwqe1->tcp_flags = tcp_flags;
3288
3289 return dev->submit_kwqes(dev, wqes, num_wqes);
3290}
3291
3292static int cnic_cm_close_req(struct cnic_sock *csk)
3293{
3294 struct cnic_dev *dev = csk->dev;
3295 struct l4_kwq_close_req *l4kwqe;
3296 struct kwqe *wqes[1];
3297
3298 l4kwqe = (struct l4_kwq_close_req *) &csk->kwqe2;
3299 memset(l4kwqe, 0, sizeof(*l4kwqe));
3300 wqes[0] = (struct kwqe *) l4kwqe;
3301
3302 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_CLOSE;
3303 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_CLOSE_REQ_LAYER_CODE_SHIFT;
3304 l4kwqe->cid = csk->cid;
3305
3306 return dev->submit_kwqes(dev, wqes, 1);
3307}
3308
3309static int cnic_cm_abort_req(struct cnic_sock *csk)
3310{
3311 struct cnic_dev *dev = csk->dev;
3312 struct l4_kwq_reset_req *l4kwqe;
3313 struct kwqe *wqes[1];
3314
3315 l4kwqe = (struct l4_kwq_reset_req *) &csk->kwqe2;
3316 memset(l4kwqe, 0, sizeof(*l4kwqe));
3317 wqes[0] = (struct kwqe *) l4kwqe;
3318
3319 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_RESET;
3320 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_RESET_REQ_LAYER_CODE_SHIFT;
3321 l4kwqe->cid = csk->cid;
3322
3323 return dev->submit_kwqes(dev, wqes, 1);
3324}
3325
3326static int cnic_cm_create(struct cnic_dev *dev, int ulp_type, u32 cid,
3327 u32 l5_cid, struct cnic_sock **csk, void *context)
3328{
3329 struct cnic_local *cp = dev->cnic_priv;
3330 struct cnic_sock *csk1;
3331
3332 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3333 return -EINVAL;
3334
Michael Chanfdf24082010-10-13 14:06:47 +00003335 if (cp->ctx_tbl) {
3336 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3337
3338 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
3339 return -EAGAIN;
3340 }
3341
Michael Chana4636962009-06-08 18:14:43 -07003342 csk1 = &cp->csk_tbl[l5_cid];
3343 if (atomic_read(&csk1->ref_count))
3344 return -EAGAIN;
3345
3346 if (test_and_set_bit(SK_F_INUSE, &csk1->flags))
3347 return -EBUSY;
3348
3349 csk1->dev = dev;
3350 csk1->cid = cid;
3351 csk1->l5_cid = l5_cid;
3352 csk1->ulp_type = ulp_type;
3353 csk1->context = context;
3354
3355 csk1->ka_timeout = DEF_KA_TIMEOUT;
3356 csk1->ka_interval = DEF_KA_INTERVAL;
3357 csk1->ka_max_probe_count = DEF_KA_MAX_PROBE_COUNT;
3358 csk1->tos = DEF_TOS;
3359 csk1->ttl = DEF_TTL;
3360 csk1->snd_seq_scale = DEF_SND_SEQ_SCALE;
3361 csk1->rcv_buf = DEF_RCV_BUF;
3362 csk1->snd_buf = DEF_SND_BUF;
3363 csk1->seed = DEF_SEED;
3364
3365 *csk = csk1;
3366 return 0;
3367}
3368
3369static void cnic_cm_cleanup(struct cnic_sock *csk)
3370{
3371 if (csk->src_port) {
3372 struct cnic_dev *dev = csk->dev;
3373 struct cnic_local *cp = dev->cnic_priv;
3374
Michael Chan9b093362010-12-23 07:42:56 +00003375 cnic_free_id(&cp->csk_port_tbl, be16_to_cpu(csk->src_port));
Michael Chana4636962009-06-08 18:14:43 -07003376 csk->src_port = 0;
3377 }
3378}
3379
3380static void cnic_close_conn(struct cnic_sock *csk)
3381{
3382 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags)) {
3383 cnic_cm_upload_pg(csk);
3384 clear_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3385 }
3386 cnic_cm_cleanup(csk);
3387}
3388
3389static int cnic_cm_destroy(struct cnic_sock *csk)
3390{
3391 if (!cnic_in_use(csk))
3392 return -EINVAL;
3393
3394 csk_hold(csk);
3395 clear_bit(SK_F_INUSE, &csk->flags);
3396 smp_mb__after_clear_bit();
3397 while (atomic_read(&csk->ref_count) != 1)
3398 msleep(1);
3399 cnic_cm_cleanup(csk);
3400
3401 csk->flags = 0;
3402 csk_put(csk);
3403 return 0;
3404}
3405
3406static inline u16 cnic_get_vlan(struct net_device *dev,
3407 struct net_device **vlan_dev)
3408{
3409 if (dev->priv_flags & IFF_802_1Q_VLAN) {
3410 *vlan_dev = vlan_dev_real_dev(dev);
3411 return vlan_dev_vlan_id(dev);
3412 }
3413 *vlan_dev = dev;
3414 return 0;
3415}
3416
3417static int cnic_get_v4_route(struct sockaddr_in *dst_addr,
3418 struct dst_entry **dst)
3419{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003420#if defined(CONFIG_INET)
Michael Chana4636962009-06-08 18:14:43 -07003421 struct rtable *rt;
3422
David S. Miller78fbfd82011-03-12 00:00:52 -05003423 rt = ip_route_output(&init_net, dst_addr->sin_addr.s_addr, 0, 0, 0);
3424 if (!IS_ERR(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003425 *dst = &rt->dst;
David S. Miller78fbfd82011-03-12 00:00:52 -05003426 return 0;
3427 }
3428 return PTR_ERR(rt);
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003429#else
3430 return -ENETUNREACH;
3431#endif
Michael Chana4636962009-06-08 18:14:43 -07003432}
3433
3434static int cnic_get_v6_route(struct sockaddr_in6 *dst_addr,
3435 struct dst_entry **dst)
3436{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003437#if defined(CONFIG_IPV6) || (defined(CONFIG_IPV6_MODULE) && defined(MODULE))
David S. Miller4c9483b2011-03-12 16:22:43 -05003438 struct flowi6 fl6;
Michael Chana4636962009-06-08 18:14:43 -07003439
David S. Miller4c9483b2011-03-12 16:22:43 -05003440 memset(&fl6, 0, sizeof(fl6));
3441 ipv6_addr_copy(&fl6.daddr, &dst_addr->sin6_addr);
3442 if (ipv6_addr_type(&fl6.daddr) & IPV6_ADDR_LINKLOCAL)
3443 fl6.flowi6_oif = dst_addr->sin6_scope_id;
Michael Chana4636962009-06-08 18:14:43 -07003444
David S. Miller4c9483b2011-03-12 16:22:43 -05003445 *dst = ip6_route_output(&init_net, NULL, &fl6);
Michael Chana4636962009-06-08 18:14:43 -07003446 if (*dst)
3447 return 0;
3448#endif
3449
3450 return -ENETUNREACH;
3451}
3452
3453static struct cnic_dev *cnic_cm_select_dev(struct sockaddr_in *dst_addr,
3454 int ulp_type)
3455{
3456 struct cnic_dev *dev = NULL;
3457 struct dst_entry *dst;
3458 struct net_device *netdev = NULL;
3459 int err = -ENETUNREACH;
3460
3461 if (dst_addr->sin_family == AF_INET)
3462 err = cnic_get_v4_route(dst_addr, &dst);
3463 else if (dst_addr->sin_family == AF_INET6) {
3464 struct sockaddr_in6 *dst_addr6 =
3465 (struct sockaddr_in6 *) dst_addr;
3466
3467 err = cnic_get_v6_route(dst_addr6, &dst);
3468 } else
3469 return NULL;
3470
3471 if (err)
3472 return NULL;
3473
3474 if (!dst->dev)
3475 goto done;
3476
3477 cnic_get_vlan(dst->dev, &netdev);
3478
3479 dev = cnic_from_netdev(netdev);
3480
3481done:
3482 dst_release(dst);
3483 if (dev)
3484 cnic_put(dev);
3485 return dev;
3486}
3487
3488static int cnic_resolve_addr(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3489{
3490 struct cnic_dev *dev = csk->dev;
3491 struct cnic_local *cp = dev->cnic_priv;
3492
3493 return cnic_send_nlmsg(cp, ISCSI_KEVENT_PATH_REQ, csk);
3494}
3495
3496static int cnic_get_route(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3497{
3498 struct cnic_dev *dev = csk->dev;
3499 struct cnic_local *cp = dev->cnic_priv;
Michael Chanc76284a2010-02-24 14:42:07 +00003500 int is_v6, rc = 0;
3501 struct dst_entry *dst = NULL;
Michael Chana4636962009-06-08 18:14:43 -07003502 struct net_device *realdev;
Michael Chan9b093362010-12-23 07:42:56 +00003503 __be16 local_port;
3504 u32 port_id;
Michael Chana4636962009-06-08 18:14:43 -07003505
3506 if (saddr->local.v6.sin6_family == AF_INET6 &&
3507 saddr->remote.v6.sin6_family == AF_INET6)
3508 is_v6 = 1;
3509 else if (saddr->local.v4.sin_family == AF_INET &&
3510 saddr->remote.v4.sin_family == AF_INET)
3511 is_v6 = 0;
3512 else
3513 return -EINVAL;
3514
3515 clear_bit(SK_F_IPV6, &csk->flags);
3516
3517 if (is_v6) {
Michael Chana4636962009-06-08 18:14:43 -07003518 set_bit(SK_F_IPV6, &csk->flags);
Michael Chanc76284a2010-02-24 14:42:07 +00003519 cnic_get_v6_route(&saddr->remote.v6, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003520
3521 memcpy(&csk->dst_ip[0], &saddr->remote.v6.sin6_addr,
3522 sizeof(struct in6_addr));
3523 csk->dst_port = saddr->remote.v6.sin6_port;
3524 local_port = saddr->local.v6.sin6_port;
Michael Chana4636962009-06-08 18:14:43 -07003525
3526 } else {
Michael Chanc76284a2010-02-24 14:42:07 +00003527 cnic_get_v4_route(&saddr->remote.v4, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003528
3529 csk->dst_ip[0] = saddr->remote.v4.sin_addr.s_addr;
3530 csk->dst_port = saddr->remote.v4.sin_port;
3531 local_port = saddr->local.v4.sin_port;
3532 }
3533
Michael Chanc76284a2010-02-24 14:42:07 +00003534 csk->vlan_id = 0;
3535 csk->mtu = dev->netdev->mtu;
3536 if (dst && dst->dev) {
3537 u16 vlan = cnic_get_vlan(dst->dev, &realdev);
3538 if (realdev == dev->netdev) {
3539 csk->vlan_id = vlan;
3540 csk->mtu = dst_mtu(dst);
3541 }
3542 }
Michael Chana4636962009-06-08 18:14:43 -07003543
Michael Chan9b093362010-12-23 07:42:56 +00003544 port_id = be16_to_cpu(local_port);
3545 if (port_id >= CNIC_LOCAL_PORT_MIN &&
3546 port_id < CNIC_LOCAL_PORT_MAX) {
3547 if (cnic_alloc_id(&cp->csk_port_tbl, port_id))
3548 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003549 } else
Michael Chan9b093362010-12-23 07:42:56 +00003550 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003551
Michael Chan9b093362010-12-23 07:42:56 +00003552 if (!port_id) {
3553 port_id = cnic_alloc_new_id(&cp->csk_port_tbl);
3554 if (port_id == -1) {
Michael Chana4636962009-06-08 18:14:43 -07003555 rc = -ENOMEM;
3556 goto err_out;
3557 }
Michael Chan9b093362010-12-23 07:42:56 +00003558 local_port = cpu_to_be16(port_id);
Michael Chana4636962009-06-08 18:14:43 -07003559 }
3560 csk->src_port = local_port;
3561
Michael Chana4636962009-06-08 18:14:43 -07003562err_out:
3563 dst_release(dst);
3564 return rc;
3565}
3566
3567static void cnic_init_csk_state(struct cnic_sock *csk)
3568{
3569 csk->state = 0;
3570 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3571 clear_bit(SK_F_CLOSING, &csk->flags);
3572}
3573
3574static int cnic_cm_connect(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3575{
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003576 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07003577 int err = 0;
3578
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003579 if (cp->ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI)
3580 return -EOPNOTSUPP;
3581
Michael Chana4636962009-06-08 18:14:43 -07003582 if (!cnic_in_use(csk))
3583 return -EINVAL;
3584
3585 if (test_and_set_bit(SK_F_CONNECT_START, &csk->flags))
3586 return -EINVAL;
3587
3588 cnic_init_csk_state(csk);
3589
3590 err = cnic_get_route(csk, saddr);
3591 if (err)
3592 goto err_out;
3593
3594 err = cnic_resolve_addr(csk, saddr);
3595 if (!err)
3596 return 0;
3597
3598err_out:
3599 clear_bit(SK_F_CONNECT_START, &csk->flags);
3600 return err;
3601}
3602
3603static int cnic_cm_abort(struct cnic_sock *csk)
3604{
3605 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chan7b34a462010-06-15 08:57:03 +00003606 u32 opcode = L4_KCQE_OPCODE_VALUE_RESET_COMP;
Michael Chana4636962009-06-08 18:14:43 -07003607
3608 if (!cnic_in_use(csk))
3609 return -EINVAL;
3610
3611 if (cnic_abort_prep(csk))
3612 return cnic_cm_abort_req(csk);
3613
3614 /* Getting here means that we haven't started connect, or
3615 * connect was not successful.
3616 */
3617
Michael Chana4636962009-06-08 18:14:43 -07003618 cp->close_conn(csk, opcode);
Michael Chan7b34a462010-06-15 08:57:03 +00003619 if (csk->state != opcode)
3620 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003621
3622 return 0;
3623}
3624
3625static int cnic_cm_close(struct cnic_sock *csk)
3626{
3627 if (!cnic_in_use(csk))
3628 return -EINVAL;
3629
3630 if (cnic_close_prep(csk)) {
3631 csk->state = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
3632 return cnic_cm_close_req(csk);
Michael Chaned99daa52010-06-15 08:57:00 +00003633 } else {
3634 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003635 }
3636 return 0;
3637}
3638
3639static void cnic_cm_upcall(struct cnic_local *cp, struct cnic_sock *csk,
3640 u8 opcode)
3641{
3642 struct cnic_ulp_ops *ulp_ops;
3643 int ulp_type = csk->ulp_type;
3644
3645 rcu_read_lock();
3646 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
3647 if (ulp_ops) {
3648 if (opcode == L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE)
3649 ulp_ops->cm_connect_complete(csk);
3650 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
3651 ulp_ops->cm_close_complete(csk);
3652 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED)
3653 ulp_ops->cm_remote_abort(csk);
3654 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_COMP)
3655 ulp_ops->cm_abort_complete(csk);
3656 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED)
3657 ulp_ops->cm_remote_close(csk);
3658 }
3659 rcu_read_unlock();
3660}
3661
3662static int cnic_cm_set_pg(struct cnic_sock *csk)
3663{
3664 if (cnic_offld_prep(csk)) {
3665 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3666 cnic_cm_update_pg(csk);
3667 else
3668 cnic_cm_offload_pg(csk);
3669 }
3670 return 0;
3671}
3672
3673static void cnic_cm_process_offld_pg(struct cnic_dev *dev, struct l4_kcq *kcqe)
3674{
3675 struct cnic_local *cp = dev->cnic_priv;
3676 u32 l5_cid = kcqe->pg_host_opaque;
3677 u8 opcode = kcqe->op_code;
3678 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
3679
3680 csk_hold(csk);
3681 if (!cnic_in_use(csk))
3682 goto done;
3683
3684 if (opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3685 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3686 goto done;
3687 }
Eddie Waia9736c02010-02-24 14:42:04 +00003688 /* Possible PG kcqe status: SUCCESS, OFFLOADED_PG, or CTX_ALLOC_FAIL */
3689 if (kcqe->status == L4_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAIL) {
3690 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3691 cnic_cm_upcall(cp, csk,
3692 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3693 goto done;
3694 }
3695
Michael Chana4636962009-06-08 18:14:43 -07003696 csk->pg_cid = kcqe->pg_cid;
3697 set_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3698 cnic_cm_conn_req(csk);
3699
3700done:
3701 csk_put(csk);
3702}
3703
Michael Chane1928c82010-12-23 07:43:04 +00003704static void cnic_process_fcoe_term_conn(struct cnic_dev *dev, struct kcqe *kcqe)
3705{
3706 struct cnic_local *cp = dev->cnic_priv;
3707 struct fcoe_kcqe *fc_kcqe = (struct fcoe_kcqe *) kcqe;
3708 u32 l5_cid = fc_kcqe->fcoe_conn_id + BNX2X_FCOE_L5_CID_BASE;
3709 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3710
3711 ctx->timestamp = jiffies;
3712 ctx->wait_cond = 1;
3713 wake_up(&ctx->waitq);
3714}
3715
Michael Chana4636962009-06-08 18:14:43 -07003716static void cnic_cm_process_kcqe(struct cnic_dev *dev, struct kcqe *kcqe)
3717{
3718 struct cnic_local *cp = dev->cnic_priv;
3719 struct l4_kcq *l4kcqe = (struct l4_kcq *) kcqe;
3720 u8 opcode = l4kcqe->op_code;
3721 u32 l5_cid;
3722 struct cnic_sock *csk;
3723
Michael Chane1928c82010-12-23 07:43:04 +00003724 if (opcode == FCOE_RAMROD_CMD_ID_TERMINATE_CONN) {
3725 cnic_process_fcoe_term_conn(dev, kcqe);
3726 return;
3727 }
Michael Chana4636962009-06-08 18:14:43 -07003728 if (opcode == L4_KCQE_OPCODE_VALUE_OFFLOAD_PG ||
3729 opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3730 cnic_cm_process_offld_pg(dev, l4kcqe);
3731 return;
3732 }
3733
3734 l5_cid = l4kcqe->conn_id;
3735 if (opcode & 0x80)
3736 l5_cid = l4kcqe->cid;
3737 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3738 return;
3739
3740 csk = &cp->csk_tbl[l5_cid];
3741 csk_hold(csk);
3742
3743 if (!cnic_in_use(csk)) {
3744 csk_put(csk);
3745 return;
3746 }
3747
3748 switch (opcode) {
Eddie Waia9736c02010-02-24 14:42:04 +00003749 case L5CM_RAMROD_CMD_ID_TCP_CONNECT:
3750 if (l4kcqe->status != 0) {
3751 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3752 cnic_cm_upcall(cp, csk,
3753 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3754 }
3755 break;
Michael Chana4636962009-06-08 18:14:43 -07003756 case L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE:
3757 if (l4kcqe->status == 0)
3758 set_bit(SK_F_OFFLD_COMPLETE, &csk->flags);
3759
3760 smp_mb__before_clear_bit();
3761 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3762 cnic_cm_upcall(cp, csk, opcode);
3763 break;
3764
3765 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
Michael Chana4636962009-06-08 18:14:43 -07003766 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
3767 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan71034ba2009-10-10 13:46:59 +00003768 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
3769 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
Michael Chana4636962009-06-08 18:14:43 -07003770 cp->close_conn(csk, opcode);
3771 break;
3772
3773 case L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED:
3774 cnic_cm_upcall(cp, csk, opcode);
3775 break;
3776 }
3777 csk_put(csk);
3778}
3779
3780static void cnic_cm_indicate_kcqe(void *data, struct kcqe *kcqe[], u32 num)
3781{
3782 struct cnic_dev *dev = data;
3783 int i;
3784
3785 for (i = 0; i < num; i++)
3786 cnic_cm_process_kcqe(dev, kcqe[i]);
3787}
3788
3789static struct cnic_ulp_ops cm_ulp_ops = {
3790 .indicate_kcqes = cnic_cm_indicate_kcqe,
3791};
3792
3793static void cnic_cm_free_mem(struct cnic_dev *dev)
3794{
3795 struct cnic_local *cp = dev->cnic_priv;
3796
3797 kfree(cp->csk_tbl);
3798 cp->csk_tbl = NULL;
3799 cnic_free_id_tbl(&cp->csk_port_tbl);
3800}
3801
3802static int cnic_cm_alloc_mem(struct cnic_dev *dev)
3803{
3804 struct cnic_local *cp = dev->cnic_priv;
3805
3806 cp->csk_tbl = kzalloc(sizeof(struct cnic_sock) * MAX_CM_SK_TBL_SZ,
3807 GFP_KERNEL);
3808 if (!cp->csk_tbl)
3809 return -ENOMEM;
3810
3811 if (cnic_init_id_tbl(&cp->csk_port_tbl, CNIC_LOCAL_PORT_RANGE,
3812 CNIC_LOCAL_PORT_MIN)) {
3813 cnic_cm_free_mem(dev);
3814 return -ENOMEM;
3815 }
3816 return 0;
3817}
3818
3819static int cnic_ready_to_close(struct cnic_sock *csk, u32 opcode)
3820{
Michael Chan943189f2010-06-15 08:57:02 +00003821 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
3822 /* Unsolicited RESET_COMP or RESET_RECEIVED */
3823 opcode = L4_KCQE_OPCODE_VALUE_RESET_RECEIVED;
3824 csk->state = opcode;
Michael Chana1e621b2010-06-15 08:57:01 +00003825 }
Michael Chan943189f2010-06-15 08:57:02 +00003826
3827 /* 1. If event opcode matches the expected event in csk->state
3828 * 2. If the expected event is CLOSE_COMP, we accept any event
Michael Chan7b34a462010-06-15 08:57:03 +00003829 * 3. If the expected event is 0, meaning the connection was never
3830 * never established, we accept the opcode from cm_abort.
Michael Chan943189f2010-06-15 08:57:02 +00003831 */
Michael Chan7b34a462010-06-15 08:57:03 +00003832 if (opcode == csk->state || csk->state == 0 ||
3833 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP) {
3834 if (!test_and_set_bit(SK_F_CLOSING, &csk->flags)) {
3835 if (csk->state == 0)
3836 csk->state = opcode;
Michael Chana4636962009-06-08 18:14:43 -07003837 return 1;
Michael Chan7b34a462010-06-15 08:57:03 +00003838 }
Michael Chana4636962009-06-08 18:14:43 -07003839 }
3840 return 0;
3841}
3842
3843static void cnic_close_bnx2_conn(struct cnic_sock *csk, u32 opcode)
3844{
3845 struct cnic_dev *dev = csk->dev;
3846 struct cnic_local *cp = dev->cnic_priv;
3847
Michael Chana1e621b2010-06-15 08:57:01 +00003848 if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED) {
3849 cnic_cm_upcall(cp, csk, opcode);
3850 return;
3851 }
3852
Michael Chana4636962009-06-08 18:14:43 -07003853 clear_bit(SK_F_CONNECT_START, &csk->flags);
Eddie Wai66883e92010-02-24 14:42:05 +00003854 cnic_close_conn(csk);
Michael Chan7b34a462010-06-15 08:57:03 +00003855 csk->state = opcode;
Eddie Wai66883e92010-02-24 14:42:05 +00003856 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07003857}
3858
3859static void cnic_cm_stop_bnx2_hw(struct cnic_dev *dev)
3860{
3861}
3862
3863static int cnic_cm_init_bnx2_hw(struct cnic_dev *dev)
3864{
3865 u32 seed;
3866
3867 get_random_bytes(&seed, 4);
3868 cnic_ctx_wr(dev, 45, 0, seed);
3869 return 0;
3870}
3871
Michael Chan71034ba2009-10-10 13:46:59 +00003872static void cnic_close_bnx2x_conn(struct cnic_sock *csk, u32 opcode)
3873{
3874 struct cnic_dev *dev = csk->dev;
3875 struct cnic_local *cp = dev->cnic_priv;
3876 struct cnic_context *ctx = &cp->ctx_tbl[csk->l5_cid];
3877 union l5cm_specific_data l5_data;
3878 u32 cmd = 0;
3879 int close_complete = 0;
3880
3881 switch (opcode) {
3882 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
3883 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
3884 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan7b34a462010-06-15 08:57:03 +00003885 if (cnic_ready_to_close(csk, opcode)) {
3886 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3887 cmd = L5CM_RAMROD_CMD_ID_SEARCHER_DELETE;
3888 else
3889 close_complete = 1;
3890 }
Michael Chan71034ba2009-10-10 13:46:59 +00003891 break;
3892 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
3893 cmd = L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD;
3894 break;
3895 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
3896 close_complete = 1;
3897 break;
3898 }
3899 if (cmd) {
3900 memset(&l5_data, 0, sizeof(l5_data));
3901
3902 cnic_submit_kwqe_16(dev, cmd, csk->cid, ISCSI_CONNECTION_TYPE,
3903 &l5_data);
3904 } else if (close_complete) {
3905 ctx->timestamp = jiffies;
3906 cnic_close_conn(csk);
3907 cnic_cm_upcall(cp, csk, csk->state);
3908 }
3909}
3910
3911static void cnic_cm_stop_bnx2x_hw(struct cnic_dev *dev)
3912{
Michael Chanfdf24082010-10-13 14:06:47 +00003913 struct cnic_local *cp = dev->cnic_priv;
3914 int i;
3915
3916 if (!cp->ctx_tbl)
3917 return;
3918
3919 if (!netif_running(dev->netdev))
3920 return;
3921
3922 for (i = 0; i < cp->max_cid_space; i++) {
3923 struct cnic_context *ctx = &cp->ctx_tbl[i];
3924
3925 while (test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
3926 msleep(10);
3927
3928 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
3929 netdev_warn(dev->netdev, "CID %x not deleted\n",
3930 ctx->cid);
3931 }
3932
3933 cancel_delayed_work(&cp->delete_task);
3934 flush_workqueue(cnic_wq);
3935
3936 if (atomic_read(&cp->iscsi_conn) != 0)
3937 netdev_warn(dev->netdev, "%d iSCSI connections not destroyed\n",
3938 atomic_read(&cp->iscsi_conn));
Michael Chan71034ba2009-10-10 13:46:59 +00003939}
3940
3941static int cnic_cm_init_bnx2x_hw(struct cnic_dev *dev)
3942{
3943 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00003944 u32 pfid = cp->pfid;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003945 u32 port = CNIC_PORT(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00003946
3947 cnic_init_bnx2x_mac(dev);
3948 cnic_bnx2x_set_tcp_timestamp(dev, 1);
3949
3950 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00003951 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(pfid), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00003952
3953 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003954 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_ENABLED_OFFSET(port), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00003955 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003956 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_MAX_COUNT_OFFSET(port),
Michael Chan71034ba2009-10-10 13:46:59 +00003957 DEF_MAX_DA_COUNT);
3958
3959 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00003960 XSTORM_ISCSI_TCP_VARS_TTL_OFFSET(pfid), DEF_TTL);
Michael Chan71034ba2009-10-10 13:46:59 +00003961 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00003962 XSTORM_ISCSI_TCP_VARS_TOS_OFFSET(pfid), DEF_TOS);
Michael Chan71034ba2009-10-10 13:46:59 +00003963 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00003964 XSTORM_ISCSI_TCP_VARS_ADV_WND_SCL_OFFSET(pfid), 2);
Michael Chan71034ba2009-10-10 13:46:59 +00003965 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00003966 XSTORM_TCP_TX_SWS_TIMER_VAL_OFFSET(pfid), DEF_SWS_TIMER);
Michael Chan71034ba2009-10-10 13:46:59 +00003967
Michael Chan14203982010-10-06 03:16:06 +00003968 CNIC_WR(dev, BAR_TSTRORM_INTMEM + TSTORM_TCP_MAX_CWND_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00003969 DEF_MAX_CWND);
3970 return 0;
3971}
3972
Michael Chanfdf24082010-10-13 14:06:47 +00003973static void cnic_delete_task(struct work_struct *work)
3974{
3975 struct cnic_local *cp;
3976 struct cnic_dev *dev;
3977 u32 i;
3978 int need_resched = 0;
3979
3980 cp = container_of(work, struct cnic_local, delete_task.work);
3981 dev = cp->dev;
3982
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003983 if (test_and_clear_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags)) {
3984 struct drv_ctl_info info;
3985
3986 rtnl_lock();
3987 cnic_ulp_stop_one(cp, CNIC_ULP_ISCSI);
3988 rtnl_unlock();
3989
3990 info.cmd = DRV_CTL_ISCSI_STOPPED_CMD;
3991 cp->ethdev->drv_ctl(dev->netdev, &info);
3992 }
3993
Michael Chanfdf24082010-10-13 14:06:47 +00003994 for (i = 0; i < cp->max_cid_space; i++) {
3995 struct cnic_context *ctx = &cp->ctx_tbl[i];
3996
3997 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags) ||
3998 !test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
3999 continue;
4000
4001 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
4002 need_resched = 1;
4003 continue;
4004 }
4005
4006 if (!test_and_clear_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
4007 continue;
4008
4009 cnic_bnx2x_destroy_ramrod(dev, i);
4010
4011 cnic_free_bnx2x_conn_resc(dev, i);
4012 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI)
4013 atomic_dec(&cp->iscsi_conn);
4014
4015 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
4016 }
4017
4018 if (need_resched)
4019 queue_delayed_work(cnic_wq, &cp->delete_task,
4020 msecs_to_jiffies(10));
4021
4022}
4023
Michael Chana4636962009-06-08 18:14:43 -07004024static int cnic_cm_open(struct cnic_dev *dev)
4025{
4026 struct cnic_local *cp = dev->cnic_priv;
4027 int err;
4028
4029 err = cnic_cm_alloc_mem(dev);
4030 if (err)
4031 return err;
4032
4033 err = cp->start_cm(dev);
4034
4035 if (err)
4036 goto err_out;
4037
Michael Chanfdf24082010-10-13 14:06:47 +00004038 INIT_DELAYED_WORK(&cp->delete_task, cnic_delete_task);
4039
Michael Chana4636962009-06-08 18:14:43 -07004040 dev->cm_create = cnic_cm_create;
4041 dev->cm_destroy = cnic_cm_destroy;
4042 dev->cm_connect = cnic_cm_connect;
4043 dev->cm_abort = cnic_cm_abort;
4044 dev->cm_close = cnic_cm_close;
4045 dev->cm_select_dev = cnic_cm_select_dev;
4046
4047 cp->ulp_handle[CNIC_ULP_L4] = dev;
4048 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], &cm_ulp_ops);
4049 return 0;
4050
4051err_out:
4052 cnic_cm_free_mem(dev);
4053 return err;
4054}
4055
4056static int cnic_cm_shutdown(struct cnic_dev *dev)
4057{
4058 struct cnic_local *cp = dev->cnic_priv;
4059 int i;
4060
4061 cp->stop_cm(dev);
4062
4063 if (!cp->csk_tbl)
4064 return 0;
4065
4066 for (i = 0; i < MAX_CM_SK_TBL_SZ; i++) {
4067 struct cnic_sock *csk = &cp->csk_tbl[i];
4068
4069 clear_bit(SK_F_INUSE, &csk->flags);
4070 cnic_cm_cleanup(csk);
4071 }
4072 cnic_cm_free_mem(dev);
4073
4074 return 0;
4075}
4076
4077static void cnic_init_context(struct cnic_dev *dev, u32 cid)
4078{
Michael Chana4636962009-06-08 18:14:43 -07004079 u32 cid_addr;
4080 int i;
4081
Michael Chana4636962009-06-08 18:14:43 -07004082 cid_addr = GET_CID_ADDR(cid);
4083
4084 for (i = 0; i < CTX_SIZE; i += 4)
4085 cnic_ctx_wr(dev, cid_addr, i, 0);
4086}
4087
4088static int cnic_setup_5709_context(struct cnic_dev *dev, int valid)
4089{
4090 struct cnic_local *cp = dev->cnic_priv;
4091 int ret = 0, i;
4092 u32 valid_bit = valid ? BNX2_CTX_HOST_PAGE_TBL_DATA0_VALID : 0;
4093
4094 if (CHIP_NUM(cp) != CHIP_NUM_5709)
4095 return 0;
4096
4097 for (i = 0; i < cp->ctx_blks; i++) {
4098 int j;
4099 u32 idx = cp->ctx_arr[i].cid / cp->cids_per_blk;
4100 u32 val;
4101
4102 memset(cp->ctx_arr[i].ctx, 0, BCM_PAGE_SIZE);
4103
4104 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA0,
4105 (cp->ctx_arr[i].mapping & 0xffffffff) | valid_bit);
4106 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA1,
4107 (u64) cp->ctx_arr[i].mapping >> 32);
4108 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL, idx |
4109 BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ);
4110 for (j = 0; j < 10; j++) {
4111
4112 val = CNIC_RD(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL);
4113 if (!(val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ))
4114 break;
4115 udelay(5);
4116 }
4117 if (val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ) {
4118 ret = -EBUSY;
4119 break;
4120 }
4121 }
4122 return ret;
4123}
4124
4125static void cnic_free_irq(struct cnic_dev *dev)
4126{
4127 struct cnic_local *cp = dev->cnic_priv;
4128 struct cnic_eth_dev *ethdev = cp->ethdev;
4129
4130 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4131 cp->disable_int_sync(dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004132 tasklet_kill(&cp->cnic_irq_task);
Michael Chana4636962009-06-08 18:14:43 -07004133 free_irq(ethdev->irq_arr[0].vector, dev);
4134 }
4135}
4136
Michael Chan6e0dc642010-10-13 14:06:44 +00004137static int cnic_request_irq(struct cnic_dev *dev)
4138{
4139 struct cnic_local *cp = dev->cnic_priv;
4140 struct cnic_eth_dev *ethdev = cp->ethdev;
4141 int err;
4142
4143 err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0, "cnic", dev);
4144 if (err)
4145 tasklet_disable(&cp->cnic_irq_task);
4146
4147 return err;
4148}
4149
Michael Chana4636962009-06-08 18:14:43 -07004150static int cnic_init_bnx2_irq(struct cnic_dev *dev)
4151{
4152 struct cnic_local *cp = dev->cnic_priv;
4153 struct cnic_eth_dev *ethdev = cp->ethdev;
4154
4155 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4156 int err, i = 0;
4157 int sblk_num = cp->status_blk_num;
4158 u32 base = ((sblk_num - 1) * BNX2_HC_SB_CONFIG_SIZE) +
4159 BNX2_HC_SB_CONFIG_1;
4160
4161 CNIC_WR(dev, base, BNX2_HC_SB_CONFIG_1_ONE_SHOT);
4162
4163 CNIC_WR(dev, base + BNX2_HC_COMP_PROD_TRIP_OFF, (2 << 16) | 8);
4164 CNIC_WR(dev, base + BNX2_HC_COM_TICKS_OFF, (64 << 16) | 220);
4165 CNIC_WR(dev, base + BNX2_HC_CMD_TICKS_OFF, (64 << 16) | 220);
4166
Michael Chana4dde3a2010-02-24 14:42:08 +00004167 cp->last_status_idx = cp->status_blk.bnx2->status_idx;
Joe Perches164165d2009-11-19 09:30:10 +00004168 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2_msix,
Michael Chana4636962009-06-08 18:14:43 -07004169 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004170 err = cnic_request_irq(dev);
4171 if (err)
Michael Chana4636962009-06-08 18:14:43 -07004172 return err;
Michael Chan6e0dc642010-10-13 14:06:44 +00004173
Michael Chana4dde3a2010-02-24 14:42:08 +00004174 while (cp->status_blk.bnx2->status_completion_producer_index &&
Michael Chana4636962009-06-08 18:14:43 -07004175 i < 10) {
4176 CNIC_WR(dev, BNX2_HC_COALESCE_NOW,
4177 1 << (11 + sblk_num));
4178 udelay(10);
4179 i++;
4180 barrier();
4181 }
Michael Chana4dde3a2010-02-24 14:42:08 +00004182 if (cp->status_blk.bnx2->status_completion_producer_index) {
Michael Chana4636962009-06-08 18:14:43 -07004183 cnic_free_irq(dev);
4184 goto failed;
4185 }
4186
4187 } else {
Michael Chana4dde3a2010-02-24 14:42:08 +00004188 struct status_block *sblk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004189 u32 hc_cmd = CNIC_RD(dev, BNX2_HC_COMMAND);
4190 int i = 0;
4191
4192 while (sblk->status_completion_producer_index && i < 10) {
4193 CNIC_WR(dev, BNX2_HC_COMMAND,
4194 hc_cmd | BNX2_HC_COMMAND_COAL_NOW_WO_INT);
4195 udelay(10);
4196 i++;
4197 barrier();
4198 }
4199 if (sblk->status_completion_producer_index)
4200 goto failed;
4201
4202 }
4203 return 0;
4204
4205failed:
Joe Perchesddf79b22010-02-17 15:01:54 +00004206 netdev_err(dev->netdev, "KCQ index not resetting to 0\n");
Michael Chana4636962009-06-08 18:14:43 -07004207 return -EBUSY;
4208}
4209
4210static void cnic_enable_bnx2_int(struct cnic_dev *dev)
4211{
4212 struct cnic_local *cp = dev->cnic_priv;
4213 struct cnic_eth_dev *ethdev = cp->ethdev;
4214
4215 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4216 return;
4217
4218 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4219 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
4220}
4221
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00004222static void cnic_get_bnx2_iscsi_info(struct cnic_dev *dev)
4223{
4224 u32 max_conn;
4225
4226 max_conn = cnic_reg_rd_ind(dev, BNX2_FW_MAX_ISCSI_CONN);
4227 dev->max_iscsi_conn = max_conn;
4228}
4229
Michael Chana4636962009-06-08 18:14:43 -07004230static void cnic_disable_bnx2_int_sync(struct cnic_dev *dev)
4231{
4232 struct cnic_local *cp = dev->cnic_priv;
4233 struct cnic_eth_dev *ethdev = cp->ethdev;
4234
4235 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4236 return;
4237
4238 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4239 BNX2_PCICFG_INT_ACK_CMD_MASK_INT);
4240 CNIC_RD(dev, BNX2_PCICFG_INT_ACK_CMD);
4241 synchronize_irq(ethdev->irq_arr[0].vector);
4242}
4243
4244static void cnic_init_bnx2_tx_ring(struct cnic_dev *dev)
4245{
4246 struct cnic_local *cp = dev->cnic_priv;
4247 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004248 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004249 u32 cid_addr, tx_cid, sb_id;
4250 u32 val, offset0, offset1, offset2, offset3;
4251 int i;
4252 struct tx_bd *txbd;
Michael Chancd801532010-10-13 14:06:49 +00004253 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Michael Chana4dde3a2010-02-24 14:42:08 +00004254 struct status_block *s_blk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004255
4256 sb_id = cp->status_blk_num;
4257 tx_cid = 20;
Michael Chana4636962009-06-08 18:14:43 -07004258 cp->tx_cons_ptr = &s_blk->status_tx_quick_consumer_index2;
4259 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004260 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004261
4262 tx_cid = TX_TSS_CID + sb_id - 1;
Michael Chana4636962009-06-08 18:14:43 -07004263 CNIC_WR(dev, BNX2_TSCH_TSS_CFG, (sb_id << 24) |
4264 (TX_TSS_CID << 7));
4265 cp->tx_cons_ptr = &sblk->status_tx_quick_consumer_index;
4266 }
4267 cp->tx_cons = *cp->tx_cons_ptr;
4268
4269 cid_addr = GET_CID_ADDR(tx_cid);
4270 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
4271 u32 cid_addr2 = GET_CID_ADDR(tx_cid + 4) + 0x40;
4272
4273 for (i = 0; i < PHY_CTX_SIZE; i += 4)
4274 cnic_ctx_wr(dev, cid_addr2, i, 0);
4275
4276 offset0 = BNX2_L2CTX_TYPE_XI;
4277 offset1 = BNX2_L2CTX_CMD_TYPE_XI;
4278 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI_XI;
4279 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO_XI;
4280 } else {
Michael Chanb58ffb42010-05-27 16:31:41 -07004281 cnic_init_context(dev, tx_cid);
4282 cnic_init_context(dev, tx_cid + 1);
4283
Michael Chana4636962009-06-08 18:14:43 -07004284 offset0 = BNX2_L2CTX_TYPE;
4285 offset1 = BNX2_L2CTX_CMD_TYPE;
4286 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI;
4287 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO;
4288 }
4289 val = BNX2_L2CTX_TYPE_TYPE_L2 | BNX2_L2CTX_TYPE_SIZE_L2;
4290 cnic_ctx_wr(dev, cid_addr, offset0, val);
4291
4292 val = BNX2_L2CTX_CMD_TYPE_TYPE_L2 | (8 << 16);
4293 cnic_ctx_wr(dev, cid_addr, offset1, val);
4294
Michael Chancd801532010-10-13 14:06:49 +00004295 txbd = (struct tx_bd *) udev->l2_ring;
Michael Chana4636962009-06-08 18:14:43 -07004296
Michael Chancd801532010-10-13 14:06:49 +00004297 buf_map = udev->l2_buf_map;
Michael Chana4636962009-06-08 18:14:43 -07004298 for (i = 0; i < MAX_TX_DESC_CNT; i++, txbd++) {
4299 txbd->tx_bd_haddr_hi = (u64) buf_map >> 32;
4300 txbd->tx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4301 }
Michael Chancd801532010-10-13 14:06:49 +00004302 val = (u64) ring_map >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004303 cnic_ctx_wr(dev, cid_addr, offset2, val);
4304 txbd->tx_bd_haddr_hi = val;
4305
Michael Chancd801532010-10-13 14:06:49 +00004306 val = (u64) ring_map & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004307 cnic_ctx_wr(dev, cid_addr, offset3, val);
4308 txbd->tx_bd_haddr_lo = val;
4309}
4310
4311static void cnic_init_bnx2_rx_ring(struct cnic_dev *dev)
4312{
4313 struct cnic_local *cp = dev->cnic_priv;
4314 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004315 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004316 u32 cid_addr, sb_id, val, coal_reg, coal_val;
4317 int i;
4318 struct rx_bd *rxbd;
Michael Chana4dde3a2010-02-24 14:42:08 +00004319 struct status_block *s_blk = cp->status_blk.gen;
Michael Chancd801532010-10-13 14:06:49 +00004320 dma_addr_t ring_map = udev->l2_ring_map;
Michael Chana4636962009-06-08 18:14:43 -07004321
4322 sb_id = cp->status_blk_num;
4323 cnic_init_context(dev, 2);
4324 cp->rx_cons_ptr = &s_blk->status_rx_quick_consumer_index2;
4325 coal_reg = BNX2_HC_COMMAND;
4326 coal_val = CNIC_RD(dev, coal_reg);
4327 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004328 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004329
4330 cp->rx_cons_ptr = &sblk->status_rx_quick_consumer_index;
4331 coal_reg = BNX2_HC_COALESCE_NOW;
4332 coal_val = 1 << (11 + sb_id);
4333 }
4334 i = 0;
4335 while (!(*cp->rx_cons_ptr != 0) && i < 10) {
4336 CNIC_WR(dev, coal_reg, coal_val);
4337 udelay(10);
4338 i++;
4339 barrier();
4340 }
4341 cp->rx_cons = *cp->rx_cons_ptr;
4342
4343 cid_addr = GET_CID_ADDR(2);
4344 val = BNX2_L2CTX_CTX_TYPE_CTX_BD_CHN_TYPE_VALUE |
4345 BNX2_L2CTX_CTX_TYPE_SIZE_L2 | (0x02 << 8);
4346 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_CTX_TYPE, val);
4347
4348 if (sb_id == 0)
Michael Chand0549382009-10-28 03:41:59 -07004349 val = 2 << BNX2_L2CTX_L2_STATUSB_NUM_SHIFT;
Michael Chana4636962009-06-08 18:14:43 -07004350 else
Michael Chand0549382009-10-28 03:41:59 -07004351 val = BNX2_L2CTX_L2_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004352 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_HOST_BDIDX, val);
4353
Michael Chancd801532010-10-13 14:06:49 +00004354 rxbd = (struct rx_bd *) (udev->l2_ring + BCM_PAGE_SIZE);
Michael Chana4636962009-06-08 18:14:43 -07004355 for (i = 0; i < MAX_RX_DESC_CNT; i++, rxbd++) {
4356 dma_addr_t buf_map;
4357 int n = (i % cp->l2_rx_ring_size) + 1;
4358
Michael Chancd801532010-10-13 14:06:49 +00004359 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chana4636962009-06-08 18:14:43 -07004360 rxbd->rx_bd_len = cp->l2_single_buf_size;
4361 rxbd->rx_bd_flags = RX_BD_FLAGS_START | RX_BD_FLAGS_END;
4362 rxbd->rx_bd_haddr_hi = (u64) buf_map >> 32;
4363 rxbd->rx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4364 }
Michael Chancd801532010-10-13 14:06:49 +00004365 val = (u64) (ring_map + BCM_PAGE_SIZE) >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004366 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_HI, val);
4367 rxbd->rx_bd_haddr_hi = val;
4368
Michael Chancd801532010-10-13 14:06:49 +00004369 val = (u64) (ring_map + BCM_PAGE_SIZE) & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004370 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_LO, val);
4371 rxbd->rx_bd_haddr_lo = val;
4372
4373 val = cnic_reg_rd_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD);
4374 cnic_reg_wr_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD, val | (1 << 2));
4375}
4376
4377static void cnic_shutdown_bnx2_rx_ring(struct cnic_dev *dev)
4378{
4379 struct kwqe *wqes[1], l2kwqe;
4380
4381 memset(&l2kwqe, 0, sizeof(l2kwqe));
4382 wqes[0] = &l2kwqe;
Michael Chane1928c82010-12-23 07:43:04 +00004383 l2kwqe.kwqe_op_flag = (L2_LAYER_CODE << KWQE_LAYER_SHIFT) |
Michael Chana4636962009-06-08 18:14:43 -07004384 (L2_KWQE_OPCODE_VALUE_FLUSH <<
4385 KWQE_OPCODE_SHIFT) | 2;
4386 dev->submit_kwqes(dev, wqes, 1);
4387}
4388
4389static void cnic_set_bnx2_mac(struct cnic_dev *dev)
4390{
4391 struct cnic_local *cp = dev->cnic_priv;
4392 u32 val;
4393
4394 val = cp->func << 2;
4395
4396 cp->shmem_base = cnic_reg_rd_ind(dev, BNX2_SHM_HDR_ADDR_0 + val);
4397
4398 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4399 BNX2_PORT_HW_CFG_ISCSI_MAC_UPPER);
4400 dev->mac_addr[0] = (u8) (val >> 8);
4401 dev->mac_addr[1] = (u8) val;
4402
4403 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH4, val);
4404
4405 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4406 BNX2_PORT_HW_CFG_ISCSI_MAC_LOWER);
4407 dev->mac_addr[2] = (u8) (val >> 24);
4408 dev->mac_addr[3] = (u8) (val >> 16);
4409 dev->mac_addr[4] = (u8) (val >> 8);
4410 dev->mac_addr[5] = (u8) val;
4411
4412 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH5, val);
4413
4414 val = 4 | BNX2_RPM_SORT_USER2_BC_EN;
4415 if (CHIP_NUM(cp) != CHIP_NUM_5709)
4416 val |= BNX2_RPM_SORT_USER2_PROM_VLAN;
4417
4418 CNIC_WR(dev, BNX2_RPM_SORT_USER2, 0x0);
4419 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val);
4420 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val | BNX2_RPM_SORT_USER2_ENA);
4421}
4422
4423static int cnic_start_bnx2_hw(struct cnic_dev *dev)
4424{
4425 struct cnic_local *cp = dev->cnic_priv;
4426 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chana4dde3a2010-02-24 14:42:08 +00004427 struct status_block *sblk = cp->status_blk.gen;
Michael Chane6c28892010-06-24 14:58:39 +00004428 u32 val, kcq_cid_addr, kwq_cid_addr;
Michael Chana4636962009-06-08 18:14:43 -07004429 int err;
4430
4431 cnic_set_bnx2_mac(dev);
4432
4433 val = CNIC_RD(dev, BNX2_MQ_CONFIG);
4434 val &= ~BNX2_MQ_CONFIG_KNL_BYP_BLK_SIZE;
4435 if (BCM_PAGE_BITS > 12)
4436 val |= (12 - 8) << 4;
4437 else
4438 val |= (BCM_PAGE_BITS - 8) << 4;
4439
4440 CNIC_WR(dev, BNX2_MQ_CONFIG, val);
4441
4442 CNIC_WR(dev, BNX2_HC_COMP_PROD_TRIP, (2 << 16) | 8);
4443 CNIC_WR(dev, BNX2_HC_COM_TICKS, (64 << 16) | 220);
4444 CNIC_WR(dev, BNX2_HC_CMD_TICKS, (64 << 16) | 220);
4445
4446 err = cnic_setup_5709_context(dev, 1);
4447 if (err)
4448 return err;
4449
4450 cnic_init_context(dev, KWQ_CID);
4451 cnic_init_context(dev, KCQ_CID);
4452
Michael Chane6c28892010-06-24 14:58:39 +00004453 kwq_cid_addr = GET_CID_ADDR(KWQ_CID);
Michael Chana4636962009-06-08 18:14:43 -07004454 cp->kwq_io_addr = MB_GET_CID_ADDR(KWQ_CID) + L5_KRNLQ_HOST_QIDX;
4455
4456 cp->max_kwq_idx = MAX_KWQ_IDX;
4457 cp->kwq_prod_idx = 0;
4458 cp->kwq_con_idx = 0;
Michael Chan1f1332a2010-05-18 11:32:52 +00004459 set_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07004460
4461 if (CHIP_NUM(cp) == CHIP_NUM_5706 || CHIP_NUM(cp) == CHIP_NUM_5708)
4462 cp->kwq_con_idx_ptr = &sblk->status_rx_quick_consumer_index15;
4463 else
4464 cp->kwq_con_idx_ptr = &sblk->status_cmd_consumer_index;
4465
4466 /* Initialize the kernel work queue context. */
4467 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
4468 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004469 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004470
4471 val = (BCM_PAGE_SIZE / sizeof(struct kwqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004472 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004473
4474 val = ((BCM_PAGE_SIZE / sizeof(struct kwqe)) << 16) | KWQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004475 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004476
4477 val = (u32) ((u64) cp->kwq_info.pgtbl_map >> 32);
Michael Chane6c28892010-06-24 14:58:39 +00004478 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004479
4480 val = (u32) cp->kwq_info.pgtbl_map;
Michael Chane6c28892010-06-24 14:58:39 +00004481 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004482
Michael Chane6c28892010-06-24 14:58:39 +00004483 kcq_cid_addr = GET_CID_ADDR(KCQ_CID);
4484 cp->kcq1.io_addr = MB_GET_CID_ADDR(KCQ_CID) + L5_KRNLQ_HOST_QIDX;
Michael Chana4636962009-06-08 18:14:43 -07004485
Michael Chane6c28892010-06-24 14:58:39 +00004486 cp->kcq1.sw_prod_idx = 0;
4487 cp->kcq1.hw_prod_idx_ptr =
4488 (u16 *) &sblk->status_completion_producer_index;
4489
4490 cp->kcq1.status_idx_ptr = (u16 *) &sblk->status_idx;
Michael Chana4636962009-06-08 18:14:43 -07004491
4492 /* Initialize the kernel complete queue context. */
4493 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
4494 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004495 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004496
4497 val = (BCM_PAGE_SIZE / sizeof(struct kcqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004498 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004499
4500 val = ((BCM_PAGE_SIZE / sizeof(struct kcqe)) << 16) | KCQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004501 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004502
Michael Chane6c28892010-06-24 14:58:39 +00004503 val = (u32) ((u64) cp->kcq1.dma.pgtbl_map >> 32);
4504 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004505
Michael Chane6c28892010-06-24 14:58:39 +00004506 val = (u32) cp->kcq1.dma.pgtbl_map;
4507 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004508
4509 cp->int_num = 0;
4510 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chane6c28892010-06-24 14:58:39 +00004511 struct status_block_msix *msblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004512 u32 sb_id = cp->status_blk_num;
Michael Chand0549382009-10-28 03:41:59 -07004513 u32 sb = BNX2_L2CTX_L5_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004514
Michael Chane6c28892010-06-24 14:58:39 +00004515 cp->kcq1.hw_prod_idx_ptr =
4516 (u16 *) &msblk->status_completion_producer_index;
4517 cp->kcq1.status_idx_ptr = (u16 *) &msblk->status_idx;
Michael Chanb177a5d52010-06-24 14:58:41 +00004518 cp->kwq_con_idx_ptr = (u16 *) &msblk->status_cmd_consumer_index;
Michael Chana4636962009-06-08 18:14:43 -07004519 cp->int_num = sb_id << BNX2_PCICFG_INT_ACK_CMD_INT_NUM_SHIFT;
Michael Chane6c28892010-06-24 14:58:39 +00004520 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
4521 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
Michael Chana4636962009-06-08 18:14:43 -07004522 }
4523
4524 /* Enable Commnad Scheduler notification when we write to the
4525 * host producer index of the kernel contexts. */
4526 CNIC_WR(dev, BNX2_MQ_KNL_CMD_MASK1, 2);
4527
4528 /* Enable Command Scheduler notification when we write to either
4529 * the Send Queue or Receive Queue producer indexes of the kernel
4530 * bypass contexts. */
4531 CNIC_WR(dev, BNX2_MQ_KNL_BYP_CMD_MASK1, 7);
4532 CNIC_WR(dev, BNX2_MQ_KNL_BYP_WRITE_MASK1, 7);
4533
4534 /* Notify COM when the driver post an application buffer. */
4535 CNIC_WR(dev, BNX2_MQ_KNL_RX_V2P_MASK2, 0x2000);
4536
4537 /* Set the CP and COM doorbells. These two processors polls the
4538 * doorbell for a non zero value before running. This must be done
4539 * after setting up the kernel queue contexts. */
4540 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 1);
4541 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 1);
4542
4543 cnic_init_bnx2_tx_ring(dev);
4544 cnic_init_bnx2_rx_ring(dev);
4545
4546 err = cnic_init_bnx2_irq(dev);
4547 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00004548 netdev_err(dev->netdev, "cnic_init_irq failed\n");
Michael Chana4636962009-06-08 18:14:43 -07004549 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
4550 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
4551 return err;
4552 }
4553
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00004554 cnic_get_bnx2_iscsi_info(dev);
4555
Michael Chana4636962009-06-08 18:14:43 -07004556 return 0;
4557}
4558
Michael Chan71034ba2009-10-10 13:46:59 +00004559static void cnic_setup_bnx2x_context(struct cnic_dev *dev)
4560{
4561 struct cnic_local *cp = dev->cnic_priv;
4562 struct cnic_eth_dev *ethdev = cp->ethdev;
4563 u32 start_offset = ethdev->ctx_tbl_offset;
4564 int i;
4565
4566 for (i = 0; i < cp->ctx_blks; i++) {
4567 struct cnic_ctx *ctx = &cp->ctx_arr[i];
4568 dma_addr_t map = ctx->mapping;
4569
4570 if (cp->ctx_align) {
4571 unsigned long mask = cp->ctx_align - 1;
4572
4573 map = (map + mask) & ~mask;
4574 }
4575
4576 cnic_ctx_tbl_wr(dev, start_offset + i, map);
4577 }
4578}
4579
4580static int cnic_init_bnx2x_irq(struct cnic_dev *dev)
4581{
4582 struct cnic_local *cp = dev->cnic_priv;
4583 struct cnic_eth_dev *ethdev = cp->ethdev;
4584 int err = 0;
4585
Joe Perches164165d2009-11-19 09:30:10 +00004586 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2x_bh,
Michael Chan71034ba2009-10-10 13:46:59 +00004587 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004588 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
4589 err = cnic_request_irq(dev);
4590
Michael Chan71034ba2009-10-10 13:46:59 +00004591 return err;
4592}
4593
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004594static inline void cnic_storm_memset_hc_disable(struct cnic_dev *dev,
4595 u16 sb_id, u8 sb_index,
4596 u8 disable)
4597{
4598
4599 u32 addr = BAR_CSTRORM_INTMEM +
4600 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4601 offsetof(struct hc_status_block_data_e1x, index_data) +
4602 sizeof(struct hc_index_data)*sb_index +
4603 offsetof(struct hc_index_data, flags);
4604 u16 flags = CNIC_RD16(dev, addr);
4605 /* clear and set */
4606 flags &= ~HC_INDEX_DATA_HC_ENABLED;
4607 flags |= (((~disable) << HC_INDEX_DATA_HC_ENABLED_SHIFT) &
4608 HC_INDEX_DATA_HC_ENABLED);
4609 CNIC_WR16(dev, addr, flags);
4610}
4611
Michael Chan71034ba2009-10-10 13:46:59 +00004612static void cnic_enable_bnx2x_int(struct cnic_dev *dev)
4613{
4614 struct cnic_local *cp = dev->cnic_priv;
4615 u8 sb_id = cp->status_blk_num;
Michael Chan71034ba2009-10-10 13:46:59 +00004616
4617 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004618 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4619 offsetof(struct hc_status_block_data_e1x, index_data) +
4620 sizeof(struct hc_index_data)*HC_INDEX_ISCSI_EQ_CONS +
4621 offsetof(struct hc_index_data, timeout), 64 / 12);
4622 cnic_storm_memset_hc_disable(dev, sb_id, HC_INDEX_ISCSI_EQ_CONS, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004623}
4624
4625static void cnic_disable_bnx2x_int_sync(struct cnic_dev *dev)
4626{
4627}
4628
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004629static void cnic_init_bnx2x_tx_ring(struct cnic_dev *dev,
4630 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004631{
4632 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004633 struct cnic_uio_dev *udev = cp->udev;
4634 union eth_tx_bd_types *txbd = (union eth_tx_bd_types *) udev->l2_ring;
4635 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004636 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004637 int port = CNIC_PORT(cp);
4638 int i;
Michael Chan5159fdc2010-12-23 07:42:59 +00004639 u32 cli = cp->ethdev->iscsi_l2_client_id;
Michael Chan71034ba2009-10-10 13:46:59 +00004640 u32 val;
4641
4642 memset(txbd, 0, BCM_PAGE_SIZE);
4643
Michael Chancd801532010-10-13 14:06:49 +00004644 buf_map = udev->l2_buf_map;
Michael Chan71034ba2009-10-10 13:46:59 +00004645 for (i = 0; i < MAX_TX_DESC_CNT; i += 3, txbd += 3) {
4646 struct eth_tx_start_bd *start_bd = &txbd->start_bd;
4647 struct eth_tx_bd *reg_bd = &((txbd + 2)->reg_bd);
4648
4649 start_bd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4650 start_bd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4651 reg_bd->addr_hi = start_bd->addr_hi;
4652 reg_bd->addr_lo = start_bd->addr_lo + 0x10;
4653 start_bd->nbytes = cpu_to_le16(0x10);
4654 start_bd->nbd = cpu_to_le16(3);
4655 start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
4656 start_bd->general_data = (UNICAST_ADDRESS <<
4657 ETH_TX_START_BD_ETH_ADDR_TYPE_SHIFT);
4658 start_bd->general_data |= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT);
4659
4660 }
Michael Chan71034ba2009-10-10 13:46:59 +00004661
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004662 val = (u64) ring_map >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004663 txbd->next_bd.addr_hi = cpu_to_le32(val);
4664
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004665 data->tx.tx_bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004666
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004667 val = (u64) ring_map & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004668 txbd->next_bd.addr_lo = cpu_to_le32(val);
4669
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004670 data->tx.tx_bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004671
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004672 /* Other ramrod params */
4673 data->tx.tx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_CQ_CONS;
4674 data->tx.tx_status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004675
4676 /* reset xstorm per client statistics */
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004677 if (cli < MAX_STAT_COUNTER_ID) {
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004678 val = BAR_XSTRORM_INTMEM +
4679 XSTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
4680 for (i = 0; i < sizeof(struct xstorm_per_client_stats) / 4; i++)
4681 CNIC_WR(dev, val + i * 4, 0);
4682 }
Michael Chan71034ba2009-10-10 13:46:59 +00004683
4684 cp->tx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004685 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_CQ_CONS];
Michael Chan71034ba2009-10-10 13:46:59 +00004686}
4687
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004688static void cnic_init_bnx2x_rx_ring(struct cnic_dev *dev,
4689 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004690{
4691 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004692 struct cnic_uio_dev *udev = cp->udev;
4693 struct eth_rx_bd *rxbd = (struct eth_rx_bd *) (udev->l2_ring +
Michael Chan71034ba2009-10-10 13:46:59 +00004694 BCM_PAGE_SIZE);
4695 struct eth_rx_cqe_next_page *rxcqe = (struct eth_rx_cqe_next_page *)
Michael Chancd801532010-10-13 14:06:49 +00004696 (udev->l2_ring + (2 * BCM_PAGE_SIZE));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004697 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004698 int i;
4699 int port = CNIC_PORT(cp);
Michael Chan5159fdc2010-12-23 07:42:59 +00004700 u32 cli = cp->ethdev->iscsi_l2_client_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004701 int cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
Michael Chan71034ba2009-10-10 13:46:59 +00004702 u32 val;
Michael Chancd801532010-10-13 14:06:49 +00004703 dma_addr_t ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004704
4705 /* General data */
4706 data->general.client_id = cli;
4707 data->general.statistics_en_flg = 1;
4708 data->general.statistics_counter_id = cli;
4709 data->general.activate_flg = 1;
4710 data->general.sp_client_id = cli;
Michael Chan71034ba2009-10-10 13:46:59 +00004711
4712 for (i = 0; i < BNX2X_MAX_RX_DESC_CNT; i++, rxbd++) {
4713 dma_addr_t buf_map;
4714 int n = (i % cp->l2_rx_ring_size) + 1;
4715
Michael Chancd801532010-10-13 14:06:49 +00004716 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chan71034ba2009-10-10 13:46:59 +00004717 rxbd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4718 rxbd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4719 }
Michael Chan71034ba2009-10-10 13:46:59 +00004720
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004721 val = (u64) (ring_map + BCM_PAGE_SIZE) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004722 rxbd->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004723 data->rx.bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004724
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004725 val = (u64) (ring_map + BCM_PAGE_SIZE) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004726 rxbd->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004727 data->rx.bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004728
4729 rxcqe += BNX2X_MAX_RCQ_DESC_CNT;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004730 val = (u64) (ring_map + (2 * BCM_PAGE_SIZE)) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004731 rxcqe->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004732 data->rx.cqe_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004733
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004734 val = (u64) (ring_map + (2 * BCM_PAGE_SIZE)) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004735 rxcqe->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004736 data->rx.cqe_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004737
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004738 /* Other ramrod params */
4739 data->rx.client_qzone_id = cl_qzone_id;
4740 data->rx.rx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS;
4741 data->rx.status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004742
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004743 data->rx.cache_line_alignment_log_size = L1_CACHE_SHIFT;
4744 data->rx.bd_buff_size = cpu_to_le16(cp->l2_single_buf_size);
Michael Chan71034ba2009-10-10 13:46:59 +00004745
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004746 data->rx.mtu = cpu_to_le16(cp->l2_single_buf_size - 14);
4747 data->rx.outer_vlan_removal_enable_flg = 1;
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004748
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004749 /* reset tstorm and ustorm per client statistics */
4750 if (cli < MAX_STAT_COUNTER_ID) {
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004751 val = BAR_TSTRORM_INTMEM +
4752 TSTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
4753 for (i = 0; i < sizeof(struct tstorm_per_client_stats) / 4; i++)
4754 CNIC_WR(dev, val + i * 4, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004755
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004756 val = BAR_USTRORM_INTMEM +
4757 USTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
4758 for (i = 0; i < sizeof(struct ustorm_per_client_stats) / 4; i++)
4759 CNIC_WR(dev, val + i * 4, 0);
4760 }
Michael Chan71034ba2009-10-10 13:46:59 +00004761
4762 cp->rx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004763 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS];
Michael Chan5159fdc2010-12-23 07:42:59 +00004764 cp->rx_cons = *cp->rx_cons_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00004765}
4766
Michael Chane21ba412010-12-23 07:43:03 +00004767static void cnic_init_bnx2x_kcq(struct cnic_dev *dev)
4768{
4769 struct cnic_local *cp = dev->cnic_priv;
4770 u32 pfid = cp->pfid;
4771
4772 cp->kcq1.io_addr = BAR_CSTRORM_INTMEM +
4773 CSTORM_ISCSI_EQ_PROD_OFFSET(pfid, 0);
4774 cp->kcq1.sw_prod_idx = 0;
4775
4776 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
4777 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
4778
4779 cp->kcq1.hw_prod_idx_ptr =
4780 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
4781 cp->kcq1.status_idx_ptr =
4782 &sb->sb.running_index[SM_RX_ID];
4783 } else {
4784 struct host_hc_status_block_e1x *sb = cp->status_blk.gen;
4785
4786 cp->kcq1.hw_prod_idx_ptr =
4787 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
4788 cp->kcq1.status_idx_ptr =
4789 &sb->sb.running_index[SM_RX_ID];
4790 }
4791
4792 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
4793 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
4794
4795 cp->kcq2.io_addr = BAR_USTRORM_INTMEM +
4796 USTORM_FCOE_EQ_PROD_OFFSET(pfid);
4797 cp->kcq2.sw_prod_idx = 0;
4798 cp->kcq2.hw_prod_idx_ptr =
4799 &sb->sb.index_values[HC_INDEX_FCOE_EQ_CONS];
4800 cp->kcq2.status_idx_ptr =
4801 &sb->sb.running_index[SM_RX_ID];
4802 }
4803}
4804
Michael Chan71034ba2009-10-10 13:46:59 +00004805static int cnic_start_bnx2x_hw(struct cnic_dev *dev)
4806{
4807 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004808 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chan71034ba2009-10-10 13:46:59 +00004809 int func = CNIC_FUNC(cp), ret, i;
Michael Chan14203982010-10-06 03:16:06 +00004810 u32 pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00004811
Michael Chanee87a822010-10-13 14:06:51 +00004812 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
4813 u32 val = CNIC_RD(dev, MISC_REG_PORT4MODE_EN_OVWR);
4814
4815 if (!(val & 1))
4816 val = CNIC_RD(dev, MISC_REG_PORT4MODE_EN);
4817 else
4818 val = (val >> 1) & 1;
4819
4820 if (val)
4821 cp->pfid = func >> 1;
4822 else
4823 cp->pfid = func & 0x6;
4824 } else {
4825 cp->pfid = func;
4826 }
Michael Chan14203982010-10-06 03:16:06 +00004827 pfid = cp->pfid;
4828
Michael Chan71034ba2009-10-10 13:46:59 +00004829 ret = cnic_init_id_tbl(&cp->cid_tbl, MAX_ISCSI_TBL_SZ,
Michael Chan520efdf2010-06-24 14:58:37 +00004830 cp->iscsi_start_cid);
Michael Chan71034ba2009-10-10 13:46:59 +00004831
4832 if (ret)
4833 return -ENOMEM;
4834
Michael Chane1928c82010-12-23 07:43:04 +00004835 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
4836 ret = cnic_init_id_tbl(&cp->fcoe_cid_tbl,
4837 BNX2X_FCOE_NUM_CONNECTIONS,
4838 cp->fcoe_start_cid);
4839
4840 if (ret)
4841 return -ENOMEM;
4842 }
4843
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004844 cp->bnx2x_igu_sb_id = ethdev->irq_arr[0].status_blk_num2;
4845
Michael Chane21ba412010-12-23 07:43:03 +00004846 cnic_init_bnx2x_kcq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00004847
Michael Chan71034ba2009-10-10 13:46:59 +00004848 /* Only 1 EQ */
Michael Chane6c28892010-06-24 14:58:39 +00004849 CNIC_WR16(dev, cp->kcq1.io_addr, MAX_KCQ_IDX);
Michael Chan71034ba2009-10-10 13:46:59 +00004850 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004851 CSTORM_ISCSI_EQ_CONS_OFFSET(pfid, 0), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004852 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004853 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00004854 cp->kcq1.dma.pg_map_arr[1] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00004855 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004856 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00004857 (u64) cp->kcq1.dma.pg_map_arr[1] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00004858 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004859 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00004860 cp->kcq1.dma.pg_map_arr[0] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00004861 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004862 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00004863 (u64) cp->kcq1.dma.pg_map_arr[0] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00004864 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004865 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_VALID_OFFSET(pfid, 0), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00004866 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004867 CSTORM_ISCSI_EQ_SB_NUM_OFFSET(pfid, 0), cp->status_blk_num);
Michael Chan71034ba2009-10-10 13:46:59 +00004868 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004869 CSTORM_ISCSI_EQ_SB_INDEX_OFFSET(pfid, 0),
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004870 HC_INDEX_ISCSI_EQ_CONS);
Michael Chan71034ba2009-10-10 13:46:59 +00004871
4872 for (i = 0; i < cp->conn_buf_info.num_pages; i++) {
4873 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004874 TSTORM_ISCSI_CONN_BUF_PBL_OFFSET(pfid, i),
Michael Chan71034ba2009-10-10 13:46:59 +00004875 cp->conn_buf_info.pgtbl[2 * i]);
4876 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004877 TSTORM_ISCSI_CONN_BUF_PBL_OFFSET(pfid, i) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00004878 cp->conn_buf_info.pgtbl[(2 * i) + 1]);
4879 }
4880
4881 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004882 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00004883 cp->gbl_buf_info.pg_map_arr[0] & 0xffffffff);
4884 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004885 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00004886 (u64) cp->gbl_buf_info.pg_map_arr[0] >> 32);
4887
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004888 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
4889 TSTORM_ISCSI_TCP_LOCAL_ADV_WND_OFFSET(pfid), DEF_RCV_BUF);
4890
Michael Chan71034ba2009-10-10 13:46:59 +00004891 cnic_setup_bnx2x_context(dev);
4892
Michael Chan71034ba2009-10-10 13:46:59 +00004893 ret = cnic_init_bnx2x_irq(dev);
4894 if (ret)
4895 return ret;
4896
Michael Chan71034ba2009-10-10 13:46:59 +00004897 return 0;
4898}
4899
Michael Chan86b53602009-10-10 13:46:57 +00004900static void cnic_init_rings(struct cnic_dev *dev)
4901{
Michael Chan541a7812010-10-06 03:17:22 +00004902 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004903 struct cnic_uio_dev *udev = cp->udev;
Michael Chan541a7812010-10-06 03:17:22 +00004904
4905 if (test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
4906 return;
4907
Michael Chan86b53602009-10-10 13:46:57 +00004908 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
4909 cnic_init_bnx2_tx_ring(dev);
4910 cnic_init_bnx2_rx_ring(dev);
Michael Chan541a7812010-10-06 03:17:22 +00004911 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00004912 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chan5159fdc2010-12-23 07:42:59 +00004913 u32 cli = cp->ethdev->iscsi_l2_client_id;
4914 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan68d7c1a2011-01-05 15:14:13 +00004915 u32 cl_qzone_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004916 struct client_init_ramrod_data *data;
Michael Chan71034ba2009-10-10 13:46:59 +00004917 union l5cm_specific_data l5_data;
4918 struct ustorm_eth_rx_producers rx_prods = {0};
Michael Chanc7596b72009-12-02 15:15:35 +00004919 u32 off, i;
Michael Chan71034ba2009-10-10 13:46:59 +00004920
4921 rx_prods.bd_prod = 0;
4922 rx_prods.cqe_prod = BNX2X_MAX_RCQ_DESC_CNT;
4923 barrier();
4924
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004925 cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
4926
Michael Chanc7596b72009-12-02 15:15:35 +00004927 off = BAR_USTRORM_INTMEM +
Michael Chanee87a822010-10-13 14:06:51 +00004928 (BNX2X_CHIP_IS_E2(cp->chip_id) ?
4929 USTORM_RX_PRODS_E2_OFFSET(cl_qzone_id) :
4930 USTORM_RX_PRODS_E1X_OFFSET(CNIC_PORT(cp), cli));
Michael Chan71034ba2009-10-10 13:46:59 +00004931
4932 for (i = 0; i < sizeof(struct ustorm_eth_rx_producers) / 4; i++)
Michael Chanc7596b72009-12-02 15:15:35 +00004933 CNIC_WR(dev, off + i * 4, ((u32 *) &rx_prods)[i]);
Michael Chan71034ba2009-10-10 13:46:59 +00004934
Michael Chan48f753d2010-05-18 11:32:53 +00004935 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
4936
Michael Chancd801532010-10-13 14:06:49 +00004937 data = udev->l2_buf;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004938
4939 memset(data, 0, sizeof(*data));
4940
4941 cnic_init_bnx2x_tx_ring(dev, data);
4942 cnic_init_bnx2x_rx_ring(dev, data);
4943
Michael Chancd801532010-10-13 14:06:49 +00004944 l5_data.phy_address.lo = udev->l2_buf_map & 0xffffffff;
4945 l5_data.phy_address.hi = (u64) udev->l2_buf_map >> 32;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004946
Michael Chan541a7812010-10-06 03:17:22 +00004947 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
4948
Michael Chan71034ba2009-10-10 13:46:59 +00004949 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CLIENT_SETUP,
Michael Chan68d7c1a2011-01-05 15:14:13 +00004950 cid, ETH_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004951
Michael Chan48f753d2010-05-18 11:32:53 +00004952 i = 0;
4953 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
4954 ++i < 10)
4955 msleep(1);
4956
4957 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
4958 netdev_err(dev->netdev,
4959 "iSCSI CLIENT_SETUP did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00004960 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan5159fdc2010-12-23 07:42:59 +00004961 cnic_ring_ctl(dev, cid, cli, 1);
Michael Chan86b53602009-10-10 13:46:57 +00004962 }
4963}
4964
4965static void cnic_shutdown_rings(struct cnic_dev *dev)
4966{
Michael Chan541a7812010-10-06 03:17:22 +00004967 struct cnic_local *cp = dev->cnic_priv;
4968
4969 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
4970 return;
4971
Michael Chan86b53602009-10-10 13:46:57 +00004972 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
4973 cnic_shutdown_bnx2_rx_ring(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00004974 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
4975 struct cnic_local *cp = dev->cnic_priv;
Michael Chan5159fdc2010-12-23 07:42:59 +00004976 u32 cli = cp->ethdev->iscsi_l2_client_id;
4977 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan8b065b62009-12-02 15:15:36 +00004978 union l5cm_specific_data l5_data;
Michael Chan48f753d2010-05-18 11:32:53 +00004979 int i;
Michael Chan71034ba2009-10-10 13:46:59 +00004980
Michael Chan5159fdc2010-12-23 07:42:59 +00004981 cnic_ring_ctl(dev, cid, cli, 0);
Michael Chan8b065b62009-12-02 15:15:36 +00004982
Michael Chan48f753d2010-05-18 11:32:53 +00004983 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
4984
Michael Chan8b065b62009-12-02 15:15:36 +00004985 l5_data.phy_address.lo = cli;
4986 l5_data.phy_address.hi = 0;
4987 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_HALT,
Michael Chan5159fdc2010-12-23 07:42:59 +00004988 cid, ETH_CONNECTION_TYPE, &l5_data);
Michael Chan48f753d2010-05-18 11:32:53 +00004989 i = 0;
4990 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
4991 ++i < 10)
4992 msleep(1);
4993
4994 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
4995 netdev_err(dev->netdev,
4996 "iSCSI CLIENT_HALT did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00004997 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan1bcdc322009-12-10 15:40:57 +00004998
4999 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005000 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00005001 cid, NONE_CONNECTION_TYPE, &l5_data);
Michael Chan1bcdc322009-12-10 15:40:57 +00005002 msleep(10);
Michael Chan86b53602009-10-10 13:46:57 +00005003 }
Michael Chan541a7812010-10-06 03:17:22 +00005004 clear_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chan86b53602009-10-10 13:46:57 +00005005}
5006
Michael Chana3059b12009-08-14 15:49:44 +00005007static int cnic_register_netdev(struct cnic_dev *dev)
5008{
5009 struct cnic_local *cp = dev->cnic_priv;
5010 struct cnic_eth_dev *ethdev = cp->ethdev;
5011 int err;
5012
5013 if (!ethdev)
5014 return -ENODEV;
5015
5016 if (ethdev->drv_state & CNIC_DRV_STATE_REGD)
5017 return 0;
5018
5019 err = ethdev->drv_register_cnic(dev->netdev, cp->cnic_ops, dev);
5020 if (err)
Joe Perchesddf79b22010-02-17 15:01:54 +00005021 netdev_err(dev->netdev, "register_cnic failed\n");
Michael Chana3059b12009-08-14 15:49:44 +00005022
5023 return err;
5024}
5025
5026static void cnic_unregister_netdev(struct cnic_dev *dev)
5027{
5028 struct cnic_local *cp = dev->cnic_priv;
5029 struct cnic_eth_dev *ethdev = cp->ethdev;
5030
5031 if (!ethdev)
5032 return;
5033
5034 ethdev->drv_unregister_cnic(dev->netdev);
5035}
5036
Michael Chana4636962009-06-08 18:14:43 -07005037static int cnic_start_hw(struct cnic_dev *dev)
5038{
5039 struct cnic_local *cp = dev->cnic_priv;
5040 struct cnic_eth_dev *ethdev = cp->ethdev;
5041 int err;
5042
5043 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
5044 return -EALREADY;
5045
Michael Chana4636962009-06-08 18:14:43 -07005046 dev->regview = ethdev->io_base;
Michael Chana4636962009-06-08 18:14:43 -07005047 pci_dev_get(dev->pcidev);
5048 cp->func = PCI_FUNC(dev->pcidev->devfn);
Michael Chana4dde3a2010-02-24 14:42:08 +00005049 cp->status_blk.gen = ethdev->irq_arr[0].status_blk;
Michael Chana4636962009-06-08 18:14:43 -07005050 cp->status_blk_num = ethdev->irq_arr[0].status_blk_num;
5051
5052 err = cp->alloc_resc(dev);
5053 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005054 netdev_err(dev->netdev, "allocate resource failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005055 goto err1;
5056 }
5057
5058 err = cp->start_hw(dev);
5059 if (err)
5060 goto err1;
5061
5062 err = cnic_cm_open(dev);
5063 if (err)
5064 goto err1;
5065
5066 set_bit(CNIC_F_CNIC_UP, &dev->flags);
5067
5068 cp->enable_int(dev);
5069
5070 return 0;
5071
5072err1:
Michael Chana4636962009-06-08 18:14:43 -07005073 cp->free_resc(dev);
5074 pci_dev_put(dev->pcidev);
Michael Chana4636962009-06-08 18:14:43 -07005075 return err;
5076}
5077
5078static void cnic_stop_bnx2_hw(struct cnic_dev *dev)
5079{
Michael Chana4636962009-06-08 18:14:43 -07005080 cnic_disable_bnx2_int_sync(dev);
5081
5082 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
5083 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
5084
5085 cnic_init_context(dev, KWQ_CID);
5086 cnic_init_context(dev, KCQ_CID);
5087
5088 cnic_setup_5709_context(dev, 0);
5089 cnic_free_irq(dev);
5090
Michael Chana4636962009-06-08 18:14:43 -07005091 cnic_free_resc(dev);
5092}
5093
Michael Chan71034ba2009-10-10 13:46:59 +00005094
5095static void cnic_stop_bnx2x_hw(struct cnic_dev *dev)
5096{
5097 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00005098
5099 cnic_free_irq(dev);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005100 *cp->kcq1.hw_prod_idx_ptr = 0;
Michael Chan4e9c4fd2009-12-10 15:40:58 +00005101 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005102 CSTORM_ISCSI_EQ_CONS_OFFSET(cp->pfid, 0), 0);
Michael Chane6c28892010-06-24 14:58:39 +00005103 CNIC_WR16(dev, cp->kcq1.io_addr, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005104 cnic_free_resc(dev);
5105}
5106
Michael Chana4636962009-06-08 18:14:43 -07005107static void cnic_stop_hw(struct cnic_dev *dev)
5108{
5109 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5110 struct cnic_local *cp = dev->cnic_priv;
Michael Chan48f753d2010-05-18 11:32:53 +00005111 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -07005112
Michael Chan48f753d2010-05-18 11:32:53 +00005113 /* Need to wait for the ring shutdown event to complete
5114 * before clearing the CNIC_UP flag.
5115 */
Michael Chancd801532010-10-13 14:06:49 +00005116 while (cp->udev->uio_dev != -1 && i < 15) {
Michael Chan48f753d2010-05-18 11:32:53 +00005117 msleep(100);
5118 i++;
5119 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005120 cnic_shutdown_rings(dev);
Michael Chana4636962009-06-08 18:14:43 -07005121 clear_bit(CNIC_F_CNIC_UP, &dev->flags);
5122 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], NULL);
5123 synchronize_rcu();
5124 cnic_cm_shutdown(dev);
5125 cp->stop_hw(dev);
5126 pci_dev_put(dev->pcidev);
5127 }
5128}
5129
5130static void cnic_free_dev(struct cnic_dev *dev)
5131{
5132 int i = 0;
5133
5134 while ((atomic_read(&dev->ref_count) != 0) && i < 10) {
5135 msleep(100);
5136 i++;
5137 }
5138 if (atomic_read(&dev->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +00005139 netdev_err(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -07005140
Joe Perchesddf79b22010-02-17 15:01:54 +00005141 netdev_info(dev->netdev, "Removed CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005142 dev_put(dev->netdev);
5143 kfree(dev);
5144}
5145
5146static struct cnic_dev *cnic_alloc_dev(struct net_device *dev,
5147 struct pci_dev *pdev)
5148{
5149 struct cnic_dev *cdev;
5150 struct cnic_local *cp;
5151 int alloc_size;
5152
5153 alloc_size = sizeof(struct cnic_dev) + sizeof(struct cnic_local);
5154
5155 cdev = kzalloc(alloc_size , GFP_KERNEL);
5156 if (cdev == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005157 netdev_err(dev, "allocate dev struct failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005158 return NULL;
5159 }
5160
5161 cdev->netdev = dev;
5162 cdev->cnic_priv = (char *)cdev + sizeof(struct cnic_dev);
5163 cdev->register_device = cnic_register_device;
5164 cdev->unregister_device = cnic_unregister_device;
5165 cdev->iscsi_nl_msg_recv = cnic_iscsi_nl_msg_recv;
5166
5167 cp = cdev->cnic_priv;
5168 cp->dev = cdev;
Michael Chana4636962009-06-08 18:14:43 -07005169 cp->l2_single_buf_size = 0x400;
5170 cp->l2_rx_ring_size = 3;
5171
5172 spin_lock_init(&cp->cnic_ulp_lock);
5173
Joe Perchesddf79b22010-02-17 15:01:54 +00005174 netdev_info(dev, "Added CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005175
5176 return cdev;
5177}
5178
5179static struct cnic_dev *init_bnx2_cnic(struct net_device *dev)
5180{
5181 struct pci_dev *pdev;
5182 struct cnic_dev *cdev;
5183 struct cnic_local *cp;
5184 struct cnic_eth_dev *ethdev = NULL;
Michael Chane2ee3612009-06-13 17:43:02 -07005185 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
Michael Chana4636962009-06-08 18:14:43 -07005186
Michael Chane2ee3612009-06-13 17:43:02 -07005187 probe = symbol_get(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07005188 if (probe) {
5189 ethdev = (*probe)(dev);
Michael Chan64c64602009-08-14 15:49:43 +00005190 symbol_put(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07005191 }
5192 if (!ethdev)
5193 return NULL;
5194
5195 pdev = ethdev->pdev;
5196 if (!pdev)
5197 return NULL;
5198
5199 dev_hold(dev);
5200 pci_dev_get(pdev);
Sergei Shtylyovff938e42011-02-28 11:57:33 -08005201 if ((pdev->device == PCI_DEVICE_ID_NX2_5709 ||
5202 pdev->device == PCI_DEVICE_ID_NX2_5709S) &&
5203 (pdev->revision < 0x10)) {
5204 pci_dev_put(pdev);
5205 goto cnic_err;
Michael Chana4636962009-06-08 18:14:43 -07005206 }
5207 pci_dev_put(pdev);
5208
5209 cdev = cnic_alloc_dev(dev, pdev);
5210 if (cdev == NULL)
5211 goto cnic_err;
5212
5213 set_bit(CNIC_F_BNX2_CLASS, &cdev->flags);
5214 cdev->submit_kwqes = cnic_submit_bnx2_kwqes;
5215
5216 cp = cdev->cnic_priv;
5217 cp->ethdev = ethdev;
5218 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005219 cp->chip_id = ethdev->chip_id;
Michael Chana4636962009-06-08 18:14:43 -07005220
5221 cp->cnic_ops = &cnic_bnx2_ops;
5222 cp->start_hw = cnic_start_bnx2_hw;
5223 cp->stop_hw = cnic_stop_bnx2_hw;
5224 cp->setup_pgtbl = cnic_setup_page_tbl;
5225 cp->alloc_resc = cnic_alloc_bnx2_resc;
5226 cp->free_resc = cnic_free_resc;
5227 cp->start_cm = cnic_cm_init_bnx2_hw;
5228 cp->stop_cm = cnic_cm_stop_bnx2_hw;
5229 cp->enable_int = cnic_enable_bnx2_int;
5230 cp->disable_int_sync = cnic_disable_bnx2_int_sync;
5231 cp->close_conn = cnic_close_bnx2_conn;
5232 cp->next_idx = cnic_bnx2_next_idx;
5233 cp->hw_idx = cnic_bnx2_hw_idx;
5234 return cdev;
5235
5236cnic_err:
5237 dev_put(dev);
5238 return NULL;
5239}
5240
Michael Chan71034ba2009-10-10 13:46:59 +00005241static struct cnic_dev *init_bnx2x_cnic(struct net_device *dev)
5242{
5243 struct pci_dev *pdev;
5244 struct cnic_dev *cdev;
5245 struct cnic_local *cp;
5246 struct cnic_eth_dev *ethdev = NULL;
5247 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
5248
5249 probe = symbol_get(bnx2x_cnic_probe);
5250 if (probe) {
5251 ethdev = (*probe)(dev);
5252 symbol_put(bnx2x_cnic_probe);
5253 }
5254 if (!ethdev)
5255 return NULL;
5256
5257 pdev = ethdev->pdev;
5258 if (!pdev)
5259 return NULL;
5260
5261 dev_hold(dev);
5262 cdev = cnic_alloc_dev(dev, pdev);
5263 if (cdev == NULL) {
5264 dev_put(dev);
5265 return NULL;
5266 }
5267
5268 set_bit(CNIC_F_BNX2X_CLASS, &cdev->flags);
5269 cdev->submit_kwqes = cnic_submit_bnx2x_kwqes;
5270
5271 cp = cdev->cnic_priv;
5272 cp->ethdev = ethdev;
5273 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005274 cp->chip_id = ethdev->chip_id;
Michael Chan71034ba2009-10-10 13:46:59 +00005275
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005276 if (!(ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI))
5277 cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
5278 if (BNX2X_CHIP_IS_E2(cp->chip_id) &&
5279 !(ethdev->drv_state & CNIC_DRV_STATE_NO_FCOE))
5280 cdev->max_fcoe_conn = ethdev->max_fcoe_conn;
5281
5282 memcpy(cdev->mac_addr, ethdev->iscsi_mac, 6);
5283
Michael Chan71034ba2009-10-10 13:46:59 +00005284 cp->cnic_ops = &cnic_bnx2x_ops;
5285 cp->start_hw = cnic_start_bnx2x_hw;
5286 cp->stop_hw = cnic_stop_bnx2x_hw;
5287 cp->setup_pgtbl = cnic_setup_page_tbl_le;
5288 cp->alloc_resc = cnic_alloc_bnx2x_resc;
5289 cp->free_resc = cnic_free_resc;
5290 cp->start_cm = cnic_cm_init_bnx2x_hw;
5291 cp->stop_cm = cnic_cm_stop_bnx2x_hw;
5292 cp->enable_int = cnic_enable_bnx2x_int;
5293 cp->disable_int_sync = cnic_disable_bnx2x_int_sync;
Michael Chanee87a822010-10-13 14:06:51 +00005294 if (BNX2X_CHIP_IS_E2(cp->chip_id))
5295 cp->ack_int = cnic_ack_bnx2x_e2_msix;
5296 else
5297 cp->ack_int = cnic_ack_bnx2x_msix;
Michael Chan71034ba2009-10-10 13:46:59 +00005298 cp->close_conn = cnic_close_bnx2x_conn;
5299 cp->next_idx = cnic_bnx2x_next_idx;
5300 cp->hw_idx = cnic_bnx2x_hw_idx;
5301 return cdev;
5302}
5303
Michael Chana4636962009-06-08 18:14:43 -07005304static struct cnic_dev *is_cnic_dev(struct net_device *dev)
5305{
5306 struct ethtool_drvinfo drvinfo;
5307 struct cnic_dev *cdev = NULL;
5308
5309 if (dev->ethtool_ops && dev->ethtool_ops->get_drvinfo) {
5310 memset(&drvinfo, 0, sizeof(drvinfo));
5311 dev->ethtool_ops->get_drvinfo(dev, &drvinfo);
5312
5313 if (!strcmp(drvinfo.driver, "bnx2"))
5314 cdev = init_bnx2_cnic(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005315 if (!strcmp(drvinfo.driver, "bnx2x"))
5316 cdev = init_bnx2x_cnic(dev);
Michael Chana4636962009-06-08 18:14:43 -07005317 if (cdev) {
5318 write_lock(&cnic_dev_lock);
5319 list_add(&cdev->list, &cnic_dev_list);
5320 write_unlock(&cnic_dev_lock);
5321 }
5322 }
5323 return cdev;
5324}
5325
5326/**
5327 * netdev event handler
5328 */
5329static int cnic_netdev_event(struct notifier_block *this, unsigned long event,
5330 void *ptr)
5331{
5332 struct net_device *netdev = ptr;
5333 struct cnic_dev *dev;
5334 int if_type;
5335 int new_dev = 0;
5336
5337 dev = cnic_from_netdev(netdev);
5338
5339 if (!dev && (event == NETDEV_REGISTER || event == NETDEV_UP)) {
5340 /* Check for the hot-plug device */
5341 dev = is_cnic_dev(netdev);
5342 if (dev) {
5343 new_dev = 1;
5344 cnic_hold(dev);
5345 }
5346 }
5347 if (dev) {
5348 struct cnic_local *cp = dev->cnic_priv;
5349
5350 if (new_dev)
5351 cnic_ulp_init(dev);
5352 else if (event == NETDEV_UNREGISTER)
5353 cnic_ulp_exit(dev);
Michael Chan6053bbf2009-10-02 11:03:28 -07005354
5355 if (event == NETDEV_UP) {
Michael Chana3059b12009-08-14 15:49:44 +00005356 if (cnic_register_netdev(dev) != 0) {
5357 cnic_put(dev);
5358 goto done;
5359 }
Michael Chana4636962009-06-08 18:14:43 -07005360 if (!cnic_start_hw(dev))
5361 cnic_ulp_start(dev);
Michael Chana4636962009-06-08 18:14:43 -07005362 }
5363
5364 rcu_read_lock();
5365 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
5366 struct cnic_ulp_ops *ulp_ops;
5367 void *ctx;
5368
5369 ulp_ops = rcu_dereference(cp->ulp_ops[if_type]);
5370 if (!ulp_ops || !ulp_ops->indicate_netevent)
5371 continue;
5372
5373 ctx = cp->ulp_handle[if_type];
5374
5375 ulp_ops->indicate_netevent(ctx, event);
5376 }
5377 rcu_read_unlock();
5378
5379 if (event == NETDEV_GOING_DOWN) {
Michael Chana4636962009-06-08 18:14:43 -07005380 cnic_ulp_stop(dev);
5381 cnic_stop_hw(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005382 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005383 } else if (event == NETDEV_UNREGISTER) {
5384 write_lock(&cnic_dev_lock);
5385 list_del_init(&dev->list);
5386 write_unlock(&cnic_dev_lock);
5387
5388 cnic_put(dev);
5389 cnic_free_dev(dev);
5390 goto done;
5391 }
5392 cnic_put(dev);
5393 }
5394done:
5395 return NOTIFY_DONE;
5396}
5397
5398static struct notifier_block cnic_netdev_notifier = {
5399 .notifier_call = cnic_netdev_event
5400};
5401
5402static void cnic_release(void)
5403{
5404 struct cnic_dev *dev;
Michael Chana3ceeeb2010-10-13 14:06:50 +00005405 struct cnic_uio_dev *udev;
Michael Chana4636962009-06-08 18:14:43 -07005406
5407 while (!list_empty(&cnic_dev_list)) {
5408 dev = list_entry(cnic_dev_list.next, struct cnic_dev, list);
5409 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5410 cnic_ulp_stop(dev);
5411 cnic_stop_hw(dev);
5412 }
5413
5414 cnic_ulp_exit(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005415 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005416 list_del_init(&dev->list);
5417 cnic_free_dev(dev);
5418 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005419 while (!list_empty(&cnic_udev_list)) {
5420 udev = list_entry(cnic_udev_list.next, struct cnic_uio_dev,
5421 list);
5422 cnic_free_uio(udev);
5423 }
Michael Chana4636962009-06-08 18:14:43 -07005424}
5425
5426static int __init cnic_init(void)
5427{
5428 int rc = 0;
5429
Joe Perchesddf79b22010-02-17 15:01:54 +00005430 pr_info("%s", version);
Michael Chana4636962009-06-08 18:14:43 -07005431
5432 rc = register_netdevice_notifier(&cnic_netdev_notifier);
5433 if (rc) {
5434 cnic_release();
5435 return rc;
5436 }
5437
Michael Chanfdf24082010-10-13 14:06:47 +00005438 cnic_wq = create_singlethread_workqueue("cnic_wq");
5439 if (!cnic_wq) {
5440 cnic_release();
5441 unregister_netdevice_notifier(&cnic_netdev_notifier);
5442 return -ENOMEM;
5443 }
5444
Michael Chana4636962009-06-08 18:14:43 -07005445 return 0;
5446}
5447
5448static void __exit cnic_exit(void)
5449{
5450 unregister_netdevice_notifier(&cnic_netdev_notifier);
5451 cnic_release();
Michael Chanfdf24082010-10-13 14:06:47 +00005452 destroy_workqueue(cnic_wq);
Michael Chana4636962009-06-08 18:14:43 -07005453}
5454
5455module_init(cnic_init);
5456module_exit(cnic_exit);