blob: fabdb7868c94832966b917fbcdc843ab1593aa21 [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"
Michael Chane2513062009-10-10 13:46:58 +000043#include "bnx2x_reg.h"
44#include "bnx2x_fw_defs.h"
45#include "bnx2x_hsi.h"
46#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
62static LIST_HEAD(cnic_dev_list);
63static DEFINE_RWLOCK(cnic_dev_lock);
64static DEFINE_MUTEX(cnic_lock);
65
66static struct cnic_ulp_ops *cnic_ulp_tbl[MAX_CNIC_ULP_TYPE];
67
68static int cnic_service_bnx2(void *, void *);
Michael Chan71034ba2009-10-10 13:46:59 +000069static int cnic_service_bnx2x(void *, void *);
Michael Chana4636962009-06-08 18:14:43 -070070static int cnic_ctl(void *, struct cnic_ctl_info *);
71
72static struct cnic_ops cnic_bnx2_ops = {
73 .cnic_owner = THIS_MODULE,
74 .cnic_handler = cnic_service_bnx2,
75 .cnic_ctl = cnic_ctl,
76};
77
Michael Chan71034ba2009-10-10 13:46:59 +000078static struct cnic_ops cnic_bnx2x_ops = {
79 .cnic_owner = THIS_MODULE,
80 .cnic_handler = cnic_service_bnx2x,
81 .cnic_ctl = cnic_ctl,
82};
83
Michael Chan86b53602009-10-10 13:46:57 +000084static void cnic_shutdown_rings(struct cnic_dev *);
85static void cnic_init_rings(struct cnic_dev *);
Michael Chana4636962009-06-08 18:14:43 -070086static int cnic_cm_set_pg(struct cnic_sock *);
87
88static int cnic_uio_open(struct uio_info *uinfo, struct inode *inode)
89{
90 struct cnic_dev *dev = uinfo->priv;
91 struct cnic_local *cp = dev->cnic_priv;
92
93 if (!capable(CAP_NET_ADMIN))
94 return -EPERM;
95
96 if (cp->uio_dev != -1)
97 return -EBUSY;
98
Michael Chan86b53602009-10-10 13:46:57 +000099 rtnl_lock();
100 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
101 rtnl_unlock();
102 return -ENODEV;
103 }
104
Michael Chana4636962009-06-08 18:14:43 -0700105 cp->uio_dev = iminor(inode);
106
Michael Chan86b53602009-10-10 13:46:57 +0000107 cnic_init_rings(dev);
108 rtnl_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700109
110 return 0;
111}
112
113static int cnic_uio_close(struct uio_info *uinfo, struct inode *inode)
114{
115 struct cnic_dev *dev = uinfo->priv;
116 struct cnic_local *cp = dev->cnic_priv;
117
Michael Chan86b53602009-10-10 13:46:57 +0000118 cnic_shutdown_rings(dev);
Michael Chan6ef57a02009-09-21 15:39:37 +0000119
Michael Chana4636962009-06-08 18:14:43 -0700120 cp->uio_dev = -1;
121 return 0;
122}
123
124static inline void cnic_hold(struct cnic_dev *dev)
125{
126 atomic_inc(&dev->ref_count);
127}
128
129static inline void cnic_put(struct cnic_dev *dev)
130{
131 atomic_dec(&dev->ref_count);
132}
133
134static inline void csk_hold(struct cnic_sock *csk)
135{
136 atomic_inc(&csk->ref_count);
137}
138
139static inline void csk_put(struct cnic_sock *csk)
140{
141 atomic_dec(&csk->ref_count);
142}
143
144static struct cnic_dev *cnic_from_netdev(struct net_device *netdev)
145{
146 struct cnic_dev *cdev;
147
148 read_lock(&cnic_dev_lock);
149 list_for_each_entry(cdev, &cnic_dev_list, list) {
150 if (netdev == cdev->netdev) {
151 cnic_hold(cdev);
152 read_unlock(&cnic_dev_lock);
153 return cdev;
154 }
155 }
156 read_unlock(&cnic_dev_lock);
157 return NULL;
158}
159
Michael Chan7fc1ece2009-08-14 15:49:47 +0000160static inline void ulp_get(struct cnic_ulp_ops *ulp_ops)
161{
162 atomic_inc(&ulp_ops->ref_count);
163}
164
165static inline void ulp_put(struct cnic_ulp_ops *ulp_ops)
166{
167 atomic_dec(&ulp_ops->ref_count);
168}
169
Michael Chana4636962009-06-08 18:14:43 -0700170static void cnic_ctx_wr(struct cnic_dev *dev, u32 cid_addr, u32 off, u32 val)
171{
172 struct cnic_local *cp = dev->cnic_priv;
173 struct cnic_eth_dev *ethdev = cp->ethdev;
174 struct drv_ctl_info info;
175 struct drv_ctl_io *io = &info.data.io;
176
177 info.cmd = DRV_CTL_CTX_WR_CMD;
178 io->cid_addr = cid_addr;
179 io->offset = off;
180 io->data = val;
181 ethdev->drv_ctl(dev->netdev, &info);
182}
183
Michael Chan71034ba2009-10-10 13:46:59 +0000184static void cnic_ctx_tbl_wr(struct cnic_dev *dev, u32 off, dma_addr_t addr)
185{
186 struct cnic_local *cp = dev->cnic_priv;
187 struct cnic_eth_dev *ethdev = cp->ethdev;
188 struct drv_ctl_info info;
189 struct drv_ctl_io *io = &info.data.io;
190
191 info.cmd = DRV_CTL_CTXTBL_WR_CMD;
192 io->offset = off;
193 io->dma_addr = addr;
194 ethdev->drv_ctl(dev->netdev, &info);
195}
196
197static void cnic_ring_ctl(struct cnic_dev *dev, u32 cid, u32 cl_id, int start)
198{
199 struct cnic_local *cp = dev->cnic_priv;
200 struct cnic_eth_dev *ethdev = cp->ethdev;
201 struct drv_ctl_info info;
202 struct drv_ctl_l2_ring *ring = &info.data.ring;
203
204 if (start)
205 info.cmd = DRV_CTL_START_L2_CMD;
206 else
207 info.cmd = DRV_CTL_STOP_L2_CMD;
208
209 ring->cid = cid;
210 ring->client_id = cl_id;
211 ethdev->drv_ctl(dev->netdev, &info);
212}
213
Michael Chana4636962009-06-08 18:14:43 -0700214static void cnic_reg_wr_ind(struct cnic_dev *dev, u32 off, u32 val)
215{
216 struct cnic_local *cp = dev->cnic_priv;
217 struct cnic_eth_dev *ethdev = cp->ethdev;
218 struct drv_ctl_info info;
219 struct drv_ctl_io *io = &info.data.io;
220
221 info.cmd = DRV_CTL_IO_WR_CMD;
222 io->offset = off;
223 io->data = val;
224 ethdev->drv_ctl(dev->netdev, &info);
225}
226
227static u32 cnic_reg_rd_ind(struct cnic_dev *dev, u32 off)
228{
229 struct cnic_local *cp = dev->cnic_priv;
230 struct cnic_eth_dev *ethdev = cp->ethdev;
231 struct drv_ctl_info info;
232 struct drv_ctl_io *io = &info.data.io;
233
234 info.cmd = DRV_CTL_IO_RD_CMD;
235 io->offset = off;
236 ethdev->drv_ctl(dev->netdev, &info);
237 return io->data;
238}
239
240static int cnic_in_use(struct cnic_sock *csk)
241{
242 return test_bit(SK_F_INUSE, &csk->flags);
243}
244
245static void cnic_kwq_completion(struct cnic_dev *dev, u32 count)
246{
247 struct cnic_local *cp = dev->cnic_priv;
248 struct cnic_eth_dev *ethdev = cp->ethdev;
249 struct drv_ctl_info info;
250
251 info.cmd = DRV_CTL_COMPLETION_CMD;
252 info.data.comp.comp_count = count;
253 ethdev->drv_ctl(dev->netdev, &info);
254}
255
Michael Chan71034ba2009-10-10 13:46:59 +0000256static int cnic_get_l5_cid(struct cnic_local *cp, u32 cid, u32 *l5_cid)
257{
258 u32 i;
259
Michael Chan520efdf2010-06-24 14:58:37 +0000260 for (i = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +0000261 if (cp->ctx_tbl[i].cid == cid) {
262 *l5_cid = i;
263 return 0;
264 }
265 }
266 return -EINVAL;
267}
268
Michael Chana4636962009-06-08 18:14:43 -0700269static int cnic_send_nlmsg(struct cnic_local *cp, u32 type,
270 struct cnic_sock *csk)
271{
272 struct iscsi_path path_req;
273 char *buf = NULL;
274 u16 len = 0;
275 u32 msg_type = ISCSI_KEVENT_IF_DOWN;
276 struct cnic_ulp_ops *ulp_ops;
277
278 if (cp->uio_dev == -1)
279 return -ENODEV;
280
281 if (csk) {
282 len = sizeof(path_req);
283 buf = (char *) &path_req;
284 memset(&path_req, 0, len);
285
286 msg_type = ISCSI_KEVENT_PATH_REQ;
287 path_req.handle = (u64) csk->l5_cid;
288 if (test_bit(SK_F_IPV6, &csk->flags)) {
289 memcpy(&path_req.dst.v6_addr, &csk->dst_ip[0],
290 sizeof(struct in6_addr));
291 path_req.ip_addr_len = 16;
292 } else {
293 memcpy(&path_req.dst.v4_addr, &csk->dst_ip[0],
294 sizeof(struct in_addr));
295 path_req.ip_addr_len = 4;
296 }
297 path_req.vlan_id = csk->vlan_id;
298 path_req.pmtu = csk->mtu;
299 }
300
301 rcu_read_lock();
Michael Chan6d7760a2009-07-27 11:25:58 -0700302 ulp_ops = rcu_dereference(cnic_ulp_tbl[CNIC_ULP_ISCSI]);
Michael Chana4636962009-06-08 18:14:43 -0700303 if (ulp_ops)
304 ulp_ops->iscsi_nl_send_msg(cp->dev, msg_type, buf, len);
305 rcu_read_unlock();
306 return 0;
307}
308
309static int cnic_iscsi_nl_msg_recv(struct cnic_dev *dev, u32 msg_type,
310 char *buf, u16 len)
311{
312 int rc = -EINVAL;
313
314 switch (msg_type) {
315 case ISCSI_UEVENT_PATH_UPDATE: {
316 struct cnic_local *cp;
317 u32 l5_cid;
318 struct cnic_sock *csk;
319 struct iscsi_path *path_resp;
320
321 if (len < sizeof(*path_resp))
322 break;
323
324 path_resp = (struct iscsi_path *) buf;
325 cp = dev->cnic_priv;
326 l5_cid = (u32) path_resp->handle;
327 if (l5_cid >= MAX_CM_SK_TBL_SZ)
328 break;
329
Michael Chand02a5e62010-02-24 14:42:06 +0000330 rcu_read_lock();
331 if (!rcu_dereference(cp->ulp_ops[CNIC_ULP_L4])) {
332 rc = -ENODEV;
333 rcu_read_unlock();
334 break;
335 }
Michael Chana4636962009-06-08 18:14:43 -0700336 csk = &cp->csk_tbl[l5_cid];
337 csk_hold(csk);
338 if (cnic_in_use(csk)) {
339 memcpy(csk->ha, path_resp->mac_addr, 6);
340 if (test_bit(SK_F_IPV6, &csk->flags))
341 memcpy(&csk->src_ip[0], &path_resp->src.v6_addr,
342 sizeof(struct in6_addr));
343 else
344 memcpy(&csk->src_ip[0], &path_resp->src.v4_addr,
345 sizeof(struct in_addr));
346 if (is_valid_ether_addr(csk->ha))
347 cnic_cm_set_pg(csk);
348 }
349 csk_put(csk);
Michael Chand02a5e62010-02-24 14:42:06 +0000350 rcu_read_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700351 rc = 0;
352 }
353 }
354
355 return rc;
356}
357
358static int cnic_offld_prep(struct cnic_sock *csk)
359{
360 if (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
361 return 0;
362
363 if (!test_bit(SK_F_CONNECT_START, &csk->flags)) {
364 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
365 return 0;
366 }
367
368 return 1;
369}
370
371static int cnic_close_prep(struct cnic_sock *csk)
372{
373 clear_bit(SK_F_CONNECT_START, &csk->flags);
374 smp_mb__after_clear_bit();
375
376 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
377 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
378 msleep(1);
379
380 return 1;
381 }
382 return 0;
383}
384
385static int cnic_abort_prep(struct cnic_sock *csk)
386{
387 clear_bit(SK_F_CONNECT_START, &csk->flags);
388 smp_mb__after_clear_bit();
389
390 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
391 msleep(1);
392
393 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
394 csk->state = L4_KCQE_OPCODE_VALUE_RESET_COMP;
395 return 1;
396 }
397
398 return 0;
399}
400
Michael Chan6d7760a2009-07-27 11:25:58 -0700401static void cnic_uio_stop(void)
402{
403 struct cnic_dev *dev;
404
405 read_lock(&cnic_dev_lock);
406 list_for_each_entry(dev, &cnic_dev_list, list) {
407 struct cnic_local *cp = dev->cnic_priv;
408
409 if (cp->cnic_uinfo)
410 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
411 }
412 read_unlock(&cnic_dev_lock);
413}
414
Michael Chana4636962009-06-08 18:14:43 -0700415int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops)
416{
417 struct cnic_dev *dev;
418
roel kluin0d37f362009-11-02 06:53:44 +0000419 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000420 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700421 return -EINVAL;
422 }
423 mutex_lock(&cnic_lock);
424 if (cnic_ulp_tbl[ulp_type]) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000425 pr_err("%s: Type %d has already been registered\n",
426 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700427 mutex_unlock(&cnic_lock);
428 return -EBUSY;
429 }
430
431 read_lock(&cnic_dev_lock);
432 list_for_each_entry(dev, &cnic_dev_list, list) {
433 struct cnic_local *cp = dev->cnic_priv;
434
435 clear_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]);
436 }
437 read_unlock(&cnic_dev_lock);
438
Michael Chan7fc1ece2009-08-14 15:49:47 +0000439 atomic_set(&ulp_ops->ref_count, 0);
Michael Chana4636962009-06-08 18:14:43 -0700440 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], ulp_ops);
441 mutex_unlock(&cnic_lock);
442
443 /* Prevent race conditions with netdev_event */
444 rtnl_lock();
445 read_lock(&cnic_dev_lock);
446 list_for_each_entry(dev, &cnic_dev_list, list) {
447 struct cnic_local *cp = dev->cnic_priv;
448
449 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]))
450 ulp_ops->cnic_init(dev);
451 }
452 read_unlock(&cnic_dev_lock);
453 rtnl_unlock();
454
455 return 0;
456}
457
458int cnic_unregister_driver(int ulp_type)
459{
460 struct cnic_dev *dev;
Michael Chan7fc1ece2009-08-14 15:49:47 +0000461 struct cnic_ulp_ops *ulp_ops;
462 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700463
roel kluin0d37f362009-11-02 06:53:44 +0000464 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000465 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700466 return -EINVAL;
467 }
468 mutex_lock(&cnic_lock);
Michael Chan7fc1ece2009-08-14 15:49:47 +0000469 ulp_ops = cnic_ulp_tbl[ulp_type];
470 if (!ulp_ops) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000471 pr_err("%s: Type %d has not been registered\n",
472 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700473 goto out_unlock;
474 }
475 read_lock(&cnic_dev_lock);
476 list_for_each_entry(dev, &cnic_dev_list, list) {
477 struct cnic_local *cp = dev->cnic_priv;
478
479 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000480 pr_err("%s: Type %d still has devices registered\n",
481 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700482 read_unlock(&cnic_dev_lock);
483 goto out_unlock;
484 }
485 }
486 read_unlock(&cnic_dev_lock);
487
Michael Chan6d7760a2009-07-27 11:25:58 -0700488 if (ulp_type == CNIC_ULP_ISCSI)
489 cnic_uio_stop();
490
Michael Chana4636962009-06-08 18:14:43 -0700491 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], NULL);
492
493 mutex_unlock(&cnic_lock);
494 synchronize_rcu();
Michael Chan7fc1ece2009-08-14 15:49:47 +0000495 while ((atomic_read(&ulp_ops->ref_count) != 0) && (i < 20)) {
496 msleep(100);
497 i++;
498 }
499
500 if (atomic_read(&ulp_ops->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +0000501 netdev_warn(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -0700502 return 0;
503
504out_unlock:
505 mutex_unlock(&cnic_lock);
506 return -EINVAL;
507}
508
509static int cnic_start_hw(struct cnic_dev *);
510static void cnic_stop_hw(struct cnic_dev *);
511
512static int cnic_register_device(struct cnic_dev *dev, int ulp_type,
513 void *ulp_ctx)
514{
515 struct cnic_local *cp = dev->cnic_priv;
516 struct cnic_ulp_ops *ulp_ops;
517
roel kluin0d37f362009-11-02 06:53:44 +0000518 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000519 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700520 return -EINVAL;
521 }
522 mutex_lock(&cnic_lock);
523 if (cnic_ulp_tbl[ulp_type] == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000524 pr_err("%s: Driver with type %d has not been registered\n",
525 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700526 mutex_unlock(&cnic_lock);
527 return -EAGAIN;
528 }
529 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000530 pr_err("%s: Type %d has already been registered to this device\n",
531 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700532 mutex_unlock(&cnic_lock);
533 return -EBUSY;
534 }
535
536 clear_bit(ULP_F_START, &cp->ulp_flags[ulp_type]);
537 cp->ulp_handle[ulp_type] = ulp_ctx;
538 ulp_ops = cnic_ulp_tbl[ulp_type];
539 rcu_assign_pointer(cp->ulp_ops[ulp_type], ulp_ops);
540 cnic_hold(dev);
541
542 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
543 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[ulp_type]))
544 ulp_ops->cnic_start(cp->ulp_handle[ulp_type]);
545
546 mutex_unlock(&cnic_lock);
547
548 return 0;
549
550}
551EXPORT_SYMBOL(cnic_register_driver);
552
553static int cnic_unregister_device(struct cnic_dev *dev, int ulp_type)
554{
555 struct cnic_local *cp = dev->cnic_priv;
Michael Chan681dbd72009-08-14 15:49:46 +0000556 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700557
roel kluin0d37f362009-11-02 06:53:44 +0000558 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000559 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700560 return -EINVAL;
561 }
562 mutex_lock(&cnic_lock);
563 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
564 rcu_assign_pointer(cp->ulp_ops[ulp_type], NULL);
565 cnic_put(dev);
566 } else {
Joe Perchesddf79b22010-02-17 15:01:54 +0000567 pr_err("%s: device not registered to this ulp type %d\n",
568 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700569 mutex_unlock(&cnic_lock);
570 return -EINVAL;
571 }
572 mutex_unlock(&cnic_lock);
573
574 synchronize_rcu();
575
Michael Chan681dbd72009-08-14 15:49:46 +0000576 while (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]) &&
577 i < 20) {
578 msleep(100);
579 i++;
580 }
581 if (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]))
Joe Perchesddf79b22010-02-17 15:01:54 +0000582 netdev_warn(dev->netdev, "Failed waiting for ULP up call to complete\n");
Michael Chan681dbd72009-08-14 15:49:46 +0000583
Michael Chana4636962009-06-08 18:14:43 -0700584 return 0;
585}
586EXPORT_SYMBOL(cnic_unregister_driver);
587
588static int cnic_init_id_tbl(struct cnic_id_tbl *id_tbl, u32 size, u32 start_id)
589{
590 id_tbl->start = start_id;
591 id_tbl->max = size;
592 id_tbl->next = 0;
593 spin_lock_init(&id_tbl->lock);
594 id_tbl->table = kzalloc(DIV_ROUND_UP(size, 32) * 4, GFP_KERNEL);
595 if (!id_tbl->table)
596 return -ENOMEM;
597
598 return 0;
599}
600
601static void cnic_free_id_tbl(struct cnic_id_tbl *id_tbl)
602{
603 kfree(id_tbl->table);
604 id_tbl->table = NULL;
605}
606
607static int cnic_alloc_id(struct cnic_id_tbl *id_tbl, u32 id)
608{
609 int ret = -1;
610
611 id -= id_tbl->start;
612 if (id >= id_tbl->max)
613 return ret;
614
615 spin_lock(&id_tbl->lock);
616 if (!test_bit(id, id_tbl->table)) {
617 set_bit(id, id_tbl->table);
618 ret = 0;
619 }
620 spin_unlock(&id_tbl->lock);
621 return ret;
622}
623
624/* Returns -1 if not successful */
625static u32 cnic_alloc_new_id(struct cnic_id_tbl *id_tbl)
626{
627 u32 id;
628
629 spin_lock(&id_tbl->lock);
630 id = find_next_zero_bit(id_tbl->table, id_tbl->max, id_tbl->next);
631 if (id >= id_tbl->max) {
632 id = -1;
633 if (id_tbl->next != 0) {
634 id = find_first_zero_bit(id_tbl->table, id_tbl->next);
635 if (id >= id_tbl->next)
636 id = -1;
637 }
638 }
639
640 if (id < id_tbl->max) {
641 set_bit(id, id_tbl->table);
642 id_tbl->next = (id + 1) & (id_tbl->max - 1);
643 id += id_tbl->start;
644 }
645
646 spin_unlock(&id_tbl->lock);
647
648 return id;
649}
650
651static void cnic_free_id(struct cnic_id_tbl *id_tbl, u32 id)
652{
653 if (id == -1)
654 return;
655
656 id -= id_tbl->start;
657 if (id >= id_tbl->max)
658 return;
659
660 clear_bit(id, id_tbl->table);
661}
662
663static void cnic_free_dma(struct cnic_dev *dev, struct cnic_dma *dma)
664{
665 int i;
666
667 if (!dma->pg_arr)
668 return;
669
670 for (i = 0; i < dma->num_pages; i++) {
671 if (dma->pg_arr[i]) {
Michael Chan3248e162009-12-02 15:15:39 +0000672 dma_free_coherent(&dev->pcidev->dev, BCM_PAGE_SIZE,
673 dma->pg_arr[i], dma->pg_map_arr[i]);
Michael Chana4636962009-06-08 18:14:43 -0700674 dma->pg_arr[i] = NULL;
675 }
676 }
677 if (dma->pgtbl) {
Michael Chan3248e162009-12-02 15:15:39 +0000678 dma_free_coherent(&dev->pcidev->dev, dma->pgtbl_size,
679 dma->pgtbl, dma->pgtbl_map);
Michael Chana4636962009-06-08 18:14:43 -0700680 dma->pgtbl = NULL;
681 }
682 kfree(dma->pg_arr);
683 dma->pg_arr = NULL;
684 dma->num_pages = 0;
685}
686
687static void cnic_setup_page_tbl(struct cnic_dev *dev, struct cnic_dma *dma)
688{
689 int i;
690 u32 *page_table = dma->pgtbl;
691
692 for (i = 0; i < dma->num_pages; i++) {
693 /* Each entry needs to be in big endian format. */
694 *page_table = (u32) ((u64) dma->pg_map_arr[i] >> 32);
695 page_table++;
696 *page_table = (u32) dma->pg_map_arr[i];
697 page_table++;
698 }
699}
700
Michael Chan71034ba2009-10-10 13:46:59 +0000701static void cnic_setup_page_tbl_le(struct cnic_dev *dev, struct cnic_dma *dma)
702{
703 int i;
704 u32 *page_table = dma->pgtbl;
705
706 for (i = 0; i < dma->num_pages; i++) {
707 /* Each entry needs to be in little endian format. */
708 *page_table = dma->pg_map_arr[i] & 0xffffffff;
709 page_table++;
710 *page_table = (u32) ((u64) dma->pg_map_arr[i] >> 32);
711 page_table++;
712 }
713}
714
Michael Chana4636962009-06-08 18:14:43 -0700715static int cnic_alloc_dma(struct cnic_dev *dev, struct cnic_dma *dma,
716 int pages, int use_pg_tbl)
717{
718 int i, size;
719 struct cnic_local *cp = dev->cnic_priv;
720
721 size = pages * (sizeof(void *) + sizeof(dma_addr_t));
722 dma->pg_arr = kzalloc(size, GFP_ATOMIC);
723 if (dma->pg_arr == NULL)
724 return -ENOMEM;
725
726 dma->pg_map_arr = (dma_addr_t *) (dma->pg_arr + pages);
727 dma->num_pages = pages;
728
729 for (i = 0; i < pages; i++) {
Michael Chan3248e162009-12-02 15:15:39 +0000730 dma->pg_arr[i] = dma_alloc_coherent(&dev->pcidev->dev,
731 BCM_PAGE_SIZE,
732 &dma->pg_map_arr[i],
733 GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700734 if (dma->pg_arr[i] == NULL)
735 goto error;
736 }
737 if (!use_pg_tbl)
738 return 0;
739
740 dma->pgtbl_size = ((pages * 8) + BCM_PAGE_SIZE - 1) &
741 ~(BCM_PAGE_SIZE - 1);
Michael Chan3248e162009-12-02 15:15:39 +0000742 dma->pgtbl = dma_alloc_coherent(&dev->pcidev->dev, dma->pgtbl_size,
743 &dma->pgtbl_map, GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700744 if (dma->pgtbl == NULL)
745 goto error;
746
747 cp->setup_pgtbl(dev, dma);
748
749 return 0;
750
751error:
752 cnic_free_dma(dev, dma);
753 return -ENOMEM;
754}
755
Michael Chan86b53602009-10-10 13:46:57 +0000756static void cnic_free_context(struct cnic_dev *dev)
757{
758 struct cnic_local *cp = dev->cnic_priv;
759 int i;
760
761 for (i = 0; i < cp->ctx_blks; i++) {
762 if (cp->ctx_arr[i].ctx) {
Michael Chan3248e162009-12-02 15:15:39 +0000763 dma_free_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
764 cp->ctx_arr[i].ctx,
765 cp->ctx_arr[i].mapping);
Michael Chan86b53602009-10-10 13:46:57 +0000766 cp->ctx_arr[i].ctx = NULL;
767 }
768 }
769}
770
Michael Chana4636962009-06-08 18:14:43 -0700771static void cnic_free_resc(struct cnic_dev *dev)
772{
773 struct cnic_local *cp = dev->cnic_priv;
774 int i = 0;
775
776 if (cp->cnic_uinfo) {
Michael Chana4636962009-06-08 18:14:43 -0700777 while (cp->uio_dev != -1 && i < 15) {
778 msleep(100);
779 i++;
780 }
781 uio_unregister_device(cp->cnic_uinfo);
782 kfree(cp->cnic_uinfo);
783 cp->cnic_uinfo = NULL;
784 }
785
786 if (cp->l2_buf) {
Michael Chan3248e162009-12-02 15:15:39 +0000787 dma_free_coherent(&dev->pcidev->dev, cp->l2_buf_size,
788 cp->l2_buf, cp->l2_buf_map);
Michael Chana4636962009-06-08 18:14:43 -0700789 cp->l2_buf = NULL;
790 }
791
792 if (cp->l2_ring) {
Michael Chan3248e162009-12-02 15:15:39 +0000793 dma_free_coherent(&dev->pcidev->dev, cp->l2_ring_size,
794 cp->l2_ring, cp->l2_ring_map);
Michael Chana4636962009-06-08 18:14:43 -0700795 cp->l2_ring = NULL;
796 }
797
Michael Chan86b53602009-10-10 13:46:57 +0000798 cnic_free_context(dev);
Michael Chana4636962009-06-08 18:14:43 -0700799 kfree(cp->ctx_arr);
800 cp->ctx_arr = NULL;
801 cp->ctx_blks = 0;
802
803 cnic_free_dma(dev, &cp->gbl_buf_info);
804 cnic_free_dma(dev, &cp->conn_buf_info);
805 cnic_free_dma(dev, &cp->kwq_info);
Michael Chan71034ba2009-10-10 13:46:59 +0000806 cnic_free_dma(dev, &cp->kwq_16_data_info);
Michael Chane6c28892010-06-24 14:58:39 +0000807 cnic_free_dma(dev, &cp->kcq1.dma);
Michael Chana4636962009-06-08 18:14:43 -0700808 kfree(cp->iscsi_tbl);
809 cp->iscsi_tbl = NULL;
810 kfree(cp->ctx_tbl);
811 cp->ctx_tbl = NULL;
812
813 cnic_free_id_tbl(&cp->cid_tbl);
814}
815
816static int cnic_alloc_context(struct cnic_dev *dev)
817{
818 struct cnic_local *cp = dev->cnic_priv;
819
820 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
821 int i, k, arr_size;
822
823 cp->ctx_blk_size = BCM_PAGE_SIZE;
824 cp->cids_per_blk = BCM_PAGE_SIZE / 128;
825 arr_size = BNX2_MAX_CID / cp->cids_per_blk *
826 sizeof(struct cnic_ctx);
827 cp->ctx_arr = kzalloc(arr_size, GFP_KERNEL);
828 if (cp->ctx_arr == NULL)
829 return -ENOMEM;
830
831 k = 0;
832 for (i = 0; i < 2; i++) {
833 u32 j, reg, off, lo, hi;
834
835 if (i == 0)
836 off = BNX2_PG_CTX_MAP;
837 else
838 off = BNX2_ISCSI_CTX_MAP;
839
840 reg = cnic_reg_rd_ind(dev, off);
841 lo = reg >> 16;
842 hi = reg & 0xffff;
843 for (j = lo; j < hi; j += cp->cids_per_blk, k++)
844 cp->ctx_arr[k].cid = j;
845 }
846
847 cp->ctx_blks = k;
848 if (cp->ctx_blks >= (BNX2_MAX_CID / cp->cids_per_blk)) {
849 cp->ctx_blks = 0;
850 return -ENOMEM;
851 }
852
853 for (i = 0; i < cp->ctx_blks; i++) {
854 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +0000855 dma_alloc_coherent(&dev->pcidev->dev,
856 BCM_PAGE_SIZE,
857 &cp->ctx_arr[i].mapping,
858 GFP_KERNEL);
Michael Chana4636962009-06-08 18:14:43 -0700859 if (cp->ctx_arr[i].ctx == NULL)
860 return -ENOMEM;
861 }
862 }
863 return 0;
864}
865
Michael Chane6c28892010-06-24 14:58:39 +0000866static int cnic_alloc_kcq(struct cnic_dev *dev, struct kcq_info *info)
867{
868 int err, i, is_bnx2 = 0;
869 struct kcqe **kcq;
870
871 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags))
872 is_bnx2 = 1;
873
874 err = cnic_alloc_dma(dev, &info->dma, KCQ_PAGE_CNT, is_bnx2);
875 if (err)
876 return err;
877
878 kcq = (struct kcqe **) info->dma.pg_arr;
879 info->kcq = kcq;
880
881 if (is_bnx2)
882 return 0;
883
884 for (i = 0; i < KCQ_PAGE_CNT; i++) {
885 struct bnx2x_bd_chain_next *next =
886 (struct bnx2x_bd_chain_next *) &kcq[i][MAX_KCQE_CNT];
887 int j = i + 1;
888
889 if (j >= KCQ_PAGE_CNT)
890 j = 0;
891 next->addr_hi = (u64) info->dma.pg_map_arr[j] >> 32;
892 next->addr_lo = info->dma.pg_map_arr[j] & 0xffffffff;
893 }
894 return 0;
895}
896
Michael Chanec0248e2009-08-26 09:49:22 +0000897static int cnic_alloc_l2_rings(struct cnic_dev *dev, int pages)
898{
899 struct cnic_local *cp = dev->cnic_priv;
900
901 cp->l2_ring_size = pages * BCM_PAGE_SIZE;
Michael Chan3248e162009-12-02 15:15:39 +0000902 cp->l2_ring = dma_alloc_coherent(&dev->pcidev->dev, cp->l2_ring_size,
903 &cp->l2_ring_map,
904 GFP_KERNEL | __GFP_COMP);
Michael Chanec0248e2009-08-26 09:49:22 +0000905 if (!cp->l2_ring)
906 return -ENOMEM;
907
908 cp->l2_buf_size = (cp->l2_rx_ring_size + 1) * cp->l2_single_buf_size;
909 cp->l2_buf_size = PAGE_ALIGN(cp->l2_buf_size);
Michael Chan3248e162009-12-02 15:15:39 +0000910 cp->l2_buf = dma_alloc_coherent(&dev->pcidev->dev, cp->l2_buf_size,
911 &cp->l2_buf_map,
912 GFP_KERNEL | __GFP_COMP);
Michael Chanec0248e2009-08-26 09:49:22 +0000913 if (!cp->l2_buf)
914 return -ENOMEM;
915
916 return 0;
917}
918
Michael Chan5e9b2db2009-08-26 09:49:23 +0000919static int cnic_alloc_uio(struct cnic_dev *dev) {
920 struct cnic_local *cp = dev->cnic_priv;
921 struct uio_info *uinfo;
922 int ret;
923
924 uinfo = kzalloc(sizeof(*uinfo), GFP_ATOMIC);
925 if (!uinfo)
926 return -ENOMEM;
927
928 uinfo->mem[0].addr = dev->netdev->base_addr;
929 uinfo->mem[0].internal_addr = dev->regview;
930 uinfo->mem[0].size = dev->netdev->mem_end - dev->netdev->mem_start;
931 uinfo->mem[0].memtype = UIO_MEM_PHYS;
932
Michael Chan5e9b2db2009-08-26 09:49:23 +0000933 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
Michael Chana4dde3a2010-02-24 14:42:08 +0000934 uinfo->mem[1].addr = (unsigned long) cp->status_blk.gen &
935 PAGE_MASK;
Michael Chan5e9b2db2009-08-26 09:49:23 +0000936 if (cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
937 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE * 9;
938 else
939 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE;
940
941 uinfo->name = "bnx2_cnic";
Michael Chan71034ba2009-10-10 13:46:59 +0000942 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
943 uinfo->mem[1].addr = (unsigned long) cp->bnx2x_def_status_blk &
944 PAGE_MASK;
945 uinfo->mem[1].size = sizeof(struct host_def_status_block);
946
947 uinfo->name = "bnx2x_cnic";
Michael Chan5e9b2db2009-08-26 09:49:23 +0000948 }
949
950 uinfo->mem[1].memtype = UIO_MEM_LOGICAL;
951
952 uinfo->mem[2].addr = (unsigned long) cp->l2_ring;
953 uinfo->mem[2].size = cp->l2_ring_size;
954 uinfo->mem[2].memtype = UIO_MEM_LOGICAL;
955
956 uinfo->mem[3].addr = (unsigned long) cp->l2_buf;
957 uinfo->mem[3].size = cp->l2_buf_size;
958 uinfo->mem[3].memtype = UIO_MEM_LOGICAL;
959
960 uinfo->version = CNIC_MODULE_VERSION;
961 uinfo->irq = UIO_IRQ_CUSTOM;
962
963 uinfo->open = cnic_uio_open;
964 uinfo->release = cnic_uio_close;
965
966 uinfo->priv = dev;
967
968 ret = uio_register_device(&dev->pcidev->dev, uinfo);
969 if (ret) {
970 kfree(uinfo);
971 return ret;
972 }
973
974 cp->cnic_uinfo = uinfo;
975 return 0;
976}
977
Michael Chana4636962009-06-08 18:14:43 -0700978static int cnic_alloc_bnx2_resc(struct cnic_dev *dev)
979{
980 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -0700981 int ret;
982
983 ret = cnic_alloc_dma(dev, &cp->kwq_info, KWQ_PAGE_CNT, 1);
984 if (ret)
985 goto error;
986 cp->kwq = (struct kwqe **) cp->kwq_info.pg_arr;
987
Michael Chane6c28892010-06-24 14:58:39 +0000988 ret = cnic_alloc_kcq(dev, &cp->kcq1);
Michael Chana4636962009-06-08 18:14:43 -0700989 if (ret)
990 goto error;
Michael Chana4636962009-06-08 18:14:43 -0700991
992 ret = cnic_alloc_context(dev);
993 if (ret)
994 goto error;
995
Michael Chanec0248e2009-08-26 09:49:22 +0000996 ret = cnic_alloc_l2_rings(dev, 2);
997 if (ret)
Michael Chana4636962009-06-08 18:14:43 -0700998 goto error;
999
Michael Chan5e9b2db2009-08-26 09:49:23 +00001000 ret = cnic_alloc_uio(dev);
1001 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001002 goto error;
1003
Michael Chana4636962009-06-08 18:14:43 -07001004 return 0;
1005
1006error:
1007 cnic_free_resc(dev);
1008 return ret;
1009}
1010
Michael Chan71034ba2009-10-10 13:46:59 +00001011static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
1012{
1013 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001014 int ctx_blk_size = cp->ethdev->ctx_blk_size;
Michael Chan520efdf2010-06-24 14:58:37 +00001015 int total_mem, blks, i;
Michael Chan71034ba2009-10-10 13:46:59 +00001016
Michael Chan520efdf2010-06-24 14:58:37 +00001017 total_mem = BNX2X_CONTEXT_MEM_SIZE * cp->max_cid_space;
Michael Chan71034ba2009-10-10 13:46:59 +00001018 blks = total_mem / ctx_blk_size;
1019 if (total_mem % ctx_blk_size)
1020 blks++;
1021
1022 if (blks > cp->ethdev->ctx_tbl_len)
1023 return -ENOMEM;
1024
1025 cp->ctx_arr = kzalloc(blks * sizeof(struct cnic_ctx), GFP_KERNEL);
1026 if (cp->ctx_arr == NULL)
1027 return -ENOMEM;
1028
1029 cp->ctx_blks = blks;
1030 cp->ctx_blk_size = ctx_blk_size;
1031 if (BNX2X_CHIP_IS_E1H(cp->chip_id))
1032 cp->ctx_align = 0;
1033 else
1034 cp->ctx_align = ctx_blk_size;
1035
1036 cp->cids_per_blk = ctx_blk_size / BNX2X_CONTEXT_MEM_SIZE;
1037
1038 for (i = 0; i < blks; i++) {
1039 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +00001040 dma_alloc_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
1041 &cp->ctx_arr[i].mapping,
1042 GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001043 if (cp->ctx_arr[i].ctx == NULL)
1044 return -ENOMEM;
1045
1046 if (cp->ctx_align && cp->ctx_blk_size == ctx_blk_size) {
1047 if (cp->ctx_arr[i].mapping & (cp->ctx_align - 1)) {
1048 cnic_free_context(dev);
1049 cp->ctx_blk_size += cp->ctx_align;
1050 i = -1;
1051 continue;
1052 }
1053 }
1054 }
1055 return 0;
1056}
1057
1058static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
1059{
1060 struct cnic_local *cp = dev->cnic_priv;
Michael Chan520efdf2010-06-24 14:58:37 +00001061 struct cnic_eth_dev *ethdev = cp->ethdev;
1062 u32 start_cid = ethdev->starting_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001063 int i, j, n, ret, pages;
1064 struct cnic_dma *kwq_16_dma = &cp->kwq_16_data_info;
1065
Michael Chan520efdf2010-06-24 14:58:37 +00001066 cp->max_cid_space = MAX_ISCSI_TBL_SZ;
1067 cp->iscsi_start_cid = start_cid;
1068 if (start_cid < BNX2X_ISCSI_START_CID) {
1069 u32 delta = BNX2X_ISCSI_START_CID - start_cid;
1070
1071 cp->iscsi_start_cid = BNX2X_ISCSI_START_CID;
1072 cp->max_cid_space += delta;
1073 }
1074
Michael Chan71034ba2009-10-10 13:46:59 +00001075 cp->iscsi_tbl = kzalloc(sizeof(struct cnic_iscsi) * MAX_ISCSI_TBL_SZ,
1076 GFP_KERNEL);
1077 if (!cp->iscsi_tbl)
1078 goto error;
1079
1080 cp->ctx_tbl = kzalloc(sizeof(struct cnic_context) *
Michael Chan520efdf2010-06-24 14:58:37 +00001081 cp->max_cid_space, GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001082 if (!cp->ctx_tbl)
1083 goto error;
1084
1085 for (i = 0; i < MAX_ISCSI_TBL_SZ; i++) {
1086 cp->ctx_tbl[i].proto.iscsi = &cp->iscsi_tbl[i];
1087 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_ISCSI;
1088 }
1089
Michael Chan520efdf2010-06-24 14:58:37 +00001090 pages = PAGE_ALIGN(cp->max_cid_space * CNIC_KWQ16_DATA_SIZE) /
Michael Chan71034ba2009-10-10 13:46:59 +00001091 PAGE_SIZE;
1092
1093 ret = cnic_alloc_dma(dev, kwq_16_dma, pages, 0);
1094 if (ret)
1095 return -ENOMEM;
1096
1097 n = PAGE_SIZE / CNIC_KWQ16_DATA_SIZE;
Michael Chan520efdf2010-06-24 14:58:37 +00001098 for (i = 0, j = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +00001099 long off = CNIC_KWQ16_DATA_SIZE * (i % n);
1100
1101 cp->ctx_tbl[i].kwqe_data = kwq_16_dma->pg_arr[j] + off;
1102 cp->ctx_tbl[i].kwqe_data_mapping = kwq_16_dma->pg_map_arr[j] +
1103 off;
1104
1105 if ((i % n) == (n - 1))
1106 j++;
1107 }
1108
Michael Chane6c28892010-06-24 14:58:39 +00001109 ret = cnic_alloc_kcq(dev, &cp->kcq1);
Michael Chan71034ba2009-10-10 13:46:59 +00001110 if (ret)
1111 goto error;
Michael Chan71034ba2009-10-10 13:46:59 +00001112
1113 pages = PAGE_ALIGN(BNX2X_ISCSI_NUM_CONNECTIONS *
1114 BNX2X_ISCSI_CONN_BUF_SIZE) / PAGE_SIZE;
1115 ret = cnic_alloc_dma(dev, &cp->conn_buf_info, pages, 1);
1116 if (ret)
1117 goto error;
1118
1119 pages = PAGE_ALIGN(BNX2X_ISCSI_GLB_BUF_SIZE) / PAGE_SIZE;
1120 ret = cnic_alloc_dma(dev, &cp->gbl_buf_info, pages, 0);
1121 if (ret)
1122 goto error;
1123
1124 ret = cnic_alloc_bnx2x_context(dev);
1125 if (ret)
1126 goto error;
1127
Michael Chan71034ba2009-10-10 13:46:59 +00001128 cp->bnx2x_def_status_blk = cp->ethdev->irq_arr[1].status_blk;
1129
Michael Chana4dde3a2010-02-24 14:42:08 +00001130 memset(cp->status_blk.bnx2x, 0, sizeof(*cp->status_blk.bnx2x));
Michael Chan4e9c4fd2009-12-10 15:40:58 +00001131
Michael Chan71034ba2009-10-10 13:46:59 +00001132 cp->l2_rx_ring_size = 15;
1133
1134 ret = cnic_alloc_l2_rings(dev, 4);
1135 if (ret)
1136 goto error;
1137
1138 ret = cnic_alloc_uio(dev);
1139 if (ret)
1140 goto error;
1141
1142 return 0;
1143
1144error:
1145 cnic_free_resc(dev);
1146 return -ENOMEM;
1147}
1148
Michael Chana4636962009-06-08 18:14:43 -07001149static inline u32 cnic_kwq_avail(struct cnic_local *cp)
1150{
1151 return cp->max_kwq_idx -
1152 ((cp->kwq_prod_idx - cp->kwq_con_idx) & cp->max_kwq_idx);
1153}
1154
1155static int cnic_submit_bnx2_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
1156 u32 num_wqes)
1157{
1158 struct cnic_local *cp = dev->cnic_priv;
1159 struct kwqe *prod_qe;
1160 u16 prod, sw_prod, i;
1161
1162 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
1163 return -EAGAIN; /* bnx2 is down */
1164
1165 spin_lock_bh(&cp->cnic_ulp_lock);
1166 if (num_wqes > cnic_kwq_avail(cp) &&
Michael Chan1f1332a2010-05-18 11:32:52 +00001167 !test_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags)) {
Michael Chana4636962009-06-08 18:14:43 -07001168 spin_unlock_bh(&cp->cnic_ulp_lock);
1169 return -EAGAIN;
1170 }
1171
Michael Chan1f1332a2010-05-18 11:32:52 +00001172 clear_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07001173
1174 prod = cp->kwq_prod_idx;
1175 sw_prod = prod & MAX_KWQ_IDX;
1176 for (i = 0; i < num_wqes; i++) {
1177 prod_qe = &cp->kwq[KWQ_PG(sw_prod)][KWQ_IDX(sw_prod)];
1178 memcpy(prod_qe, wqes[i], sizeof(struct kwqe));
1179 prod++;
1180 sw_prod = prod & MAX_KWQ_IDX;
1181 }
1182 cp->kwq_prod_idx = prod;
1183
1184 CNIC_WR16(dev, cp->kwq_io_addr, cp->kwq_prod_idx);
1185
1186 spin_unlock_bh(&cp->cnic_ulp_lock);
1187 return 0;
1188}
1189
Michael Chan71034ba2009-10-10 13:46:59 +00001190static void *cnic_get_kwqe_16_data(struct cnic_local *cp, u32 l5_cid,
1191 union l5cm_specific_data *l5_data)
1192{
1193 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1194 dma_addr_t map;
1195
1196 map = ctx->kwqe_data_mapping;
1197 l5_data->phy_address.lo = (u64) map & 0xffffffff;
1198 l5_data->phy_address.hi = (u64) map >> 32;
1199 return ctx->kwqe_data;
1200}
1201
1202static int cnic_submit_kwqe_16(struct cnic_dev *dev, u32 cmd, u32 cid,
1203 u32 type, union l5cm_specific_data *l5_data)
1204{
1205 struct cnic_local *cp = dev->cnic_priv;
1206 struct l5cm_spe kwqe;
1207 struct kwqe_16 *kwq[1];
1208 int ret;
1209
1210 kwqe.hdr.conn_and_cmd_data =
1211 cpu_to_le32(((cmd << SPE_HDR_CMD_ID_SHIFT) |
1212 BNX2X_HW_CID(cid, cp->func)));
1213 kwqe.hdr.type = cpu_to_le16(type);
1214 kwqe.hdr.reserved = 0;
1215 kwqe.data.phy_address.lo = cpu_to_le32(l5_data->phy_address.lo);
1216 kwqe.data.phy_address.hi = cpu_to_le32(l5_data->phy_address.hi);
1217
1218 kwq[0] = (struct kwqe_16 *) &kwqe;
1219
1220 spin_lock_bh(&cp->cnic_ulp_lock);
1221 ret = cp->ethdev->drv_submit_kwqes_16(dev->netdev, kwq, 1);
1222 spin_unlock_bh(&cp->cnic_ulp_lock);
1223
1224 if (ret == 1)
1225 return 0;
1226
1227 return -EBUSY;
1228}
1229
1230static void cnic_reply_bnx2x_kcqes(struct cnic_dev *dev, int ulp_type,
1231 struct kcqe *cqes[], u32 num_cqes)
1232{
1233 struct cnic_local *cp = dev->cnic_priv;
1234 struct cnic_ulp_ops *ulp_ops;
1235
1236 rcu_read_lock();
1237 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
1238 if (likely(ulp_ops)) {
1239 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
1240 cqes, num_cqes);
1241 }
1242 rcu_read_unlock();
1243}
1244
1245static int cnic_bnx2x_iscsi_init1(struct cnic_dev *dev, struct kwqe *kwqe)
1246{
1247 struct cnic_local *cp = dev->cnic_priv;
1248 struct iscsi_kwqe_init1 *req1 = (struct iscsi_kwqe_init1 *) kwqe;
1249 int func = cp->func, pages;
1250 int hq_bds;
1251
1252 cp->num_iscsi_tasks = req1->num_tasks_per_conn;
1253 cp->num_ccells = req1->num_ccells_per_conn;
1254 cp->task_array_size = BNX2X_ISCSI_TASK_CONTEXT_SIZE *
1255 cp->num_iscsi_tasks;
1256 cp->r2tq_size = cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS *
1257 BNX2X_ISCSI_R2TQE_SIZE;
1258 cp->hq_size = cp->num_ccells * BNX2X_ISCSI_HQ_BD_SIZE;
1259 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1260 hq_bds = pages * (PAGE_SIZE / BNX2X_ISCSI_HQ_BD_SIZE);
1261 cp->num_cqs = req1->num_cqs;
1262
1263 if (!dev->max_iscsi_conn)
1264 return 0;
1265
1266 /* init Tstorm RAM */
1267 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_RQ_SIZE_OFFSET(func),
1268 req1->rq_num_wqes);
1269 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_PAGE_SIZE_OFFSET(func),
1270 PAGE_SIZE);
1271 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1272 TSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func), PAGE_SHIFT);
1273 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
1274 TSTORM_ISCSI_NUM_OF_TASKS_OFFSET(func),
1275 req1->num_tasks_per_conn);
1276
1277 /* init Ustorm RAM */
1278 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
1279 USTORM_ISCSI_RQ_BUFFER_SIZE_OFFSET(func),
1280 req1->rq_buffer_size);
1281 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_PAGE_SIZE_OFFSET(func),
1282 PAGE_SIZE);
1283 CNIC_WR8(dev, BAR_USTRORM_INTMEM +
1284 USTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func), PAGE_SHIFT);
1285 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
1286 USTORM_ISCSI_NUM_OF_TASKS_OFFSET(func),
1287 req1->num_tasks_per_conn);
1288 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_RQ_SIZE_OFFSET(func),
1289 req1->rq_num_wqes);
1290 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_CQ_SIZE_OFFSET(func),
1291 req1->cq_num_wqes);
1292 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_R2TQ_SIZE_OFFSET(func),
1293 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1294
1295 /* init Xstorm RAM */
1296 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_PAGE_SIZE_OFFSET(func),
1297 PAGE_SIZE);
1298 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1299 XSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func), PAGE_SHIFT);
1300 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
1301 XSTORM_ISCSI_NUM_OF_TASKS_OFFSET(func),
1302 req1->num_tasks_per_conn);
1303 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_HQ_SIZE_OFFSET(func),
1304 hq_bds);
1305 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_SQ_SIZE_OFFSET(func),
1306 req1->num_tasks_per_conn);
1307 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_R2TQ_SIZE_OFFSET(func),
1308 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1309
1310 /* init Cstorm RAM */
1311 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_PAGE_SIZE_OFFSET(func),
1312 PAGE_SIZE);
1313 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
1314 CSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func), PAGE_SHIFT);
1315 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
1316 CSTORM_ISCSI_NUM_OF_TASKS_OFFSET(func),
1317 req1->num_tasks_per_conn);
1318 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_CQ_SIZE_OFFSET(func),
1319 req1->cq_num_wqes);
1320 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_HQ_SIZE_OFFSET(func),
1321 hq_bds);
1322
1323 return 0;
1324}
1325
1326static int cnic_bnx2x_iscsi_init2(struct cnic_dev *dev, struct kwqe *kwqe)
1327{
1328 struct iscsi_kwqe_init2 *req2 = (struct iscsi_kwqe_init2 *) kwqe;
1329 struct cnic_local *cp = dev->cnic_priv;
1330 int func = cp->func;
1331 struct iscsi_kcqe kcqe;
1332 struct kcqe *cqes[1];
1333
1334 memset(&kcqe, 0, sizeof(kcqe));
1335 if (!dev->max_iscsi_conn) {
1336 kcqe.completion_status =
1337 ISCSI_KCQE_COMPLETION_STATUS_ISCSI_NOT_SUPPORTED;
1338 goto done;
1339 }
1340
1341 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
1342 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(func), req2->error_bit_map[0]);
1343 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
1344 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(func) + 4,
1345 req2->error_bit_map[1]);
1346
1347 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
1348 USTORM_ISCSI_CQ_SQN_SIZE_OFFSET(func), req2->max_cq_sqn);
1349 CNIC_WR(dev, BAR_USTRORM_INTMEM +
1350 USTORM_ISCSI_ERROR_BITMAP_OFFSET(func), req2->error_bit_map[0]);
1351 CNIC_WR(dev, BAR_USTRORM_INTMEM +
1352 USTORM_ISCSI_ERROR_BITMAP_OFFSET(func) + 4,
1353 req2->error_bit_map[1]);
1354
1355 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
1356 CSTORM_ISCSI_CQ_SQN_SIZE_OFFSET(func), req2->max_cq_sqn);
1357
1358 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1359
1360done:
1361 kcqe.op_code = ISCSI_KCQE_OPCODE_INIT;
1362 cqes[0] = (struct kcqe *) &kcqe;
1363 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1364
1365 return 0;
1366}
1367
1368static void cnic_free_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1369{
1370 struct cnic_local *cp = dev->cnic_priv;
1371 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1372
1373 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI) {
1374 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1375
1376 cnic_free_dma(dev, &iscsi->hq_info);
1377 cnic_free_dma(dev, &iscsi->r2tq_info);
1378 cnic_free_dma(dev, &iscsi->task_array_info);
1379 }
1380 cnic_free_id(&cp->cid_tbl, ctx->cid);
1381 ctx->cid = 0;
1382}
1383
1384static int cnic_alloc_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1385{
1386 u32 cid;
1387 int ret, pages;
1388 struct cnic_local *cp = dev->cnic_priv;
1389 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1390 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1391
1392 cid = cnic_alloc_new_id(&cp->cid_tbl);
1393 if (cid == -1) {
1394 ret = -ENOMEM;
1395 goto error;
1396 }
1397
1398 ctx->cid = cid;
1399 pages = PAGE_ALIGN(cp->task_array_size) / PAGE_SIZE;
1400
1401 ret = cnic_alloc_dma(dev, &iscsi->task_array_info, pages, 1);
1402 if (ret)
1403 goto error;
1404
1405 pages = PAGE_ALIGN(cp->r2tq_size) / PAGE_SIZE;
1406 ret = cnic_alloc_dma(dev, &iscsi->r2tq_info, pages, 1);
1407 if (ret)
1408 goto error;
1409
1410 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1411 ret = cnic_alloc_dma(dev, &iscsi->hq_info, pages, 1);
1412 if (ret)
1413 goto error;
1414
1415 return 0;
1416
1417error:
1418 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1419 return ret;
1420}
1421
1422static void *cnic_get_bnx2x_ctx(struct cnic_dev *dev, u32 cid, int init,
1423 struct regpair *ctx_addr)
1424{
1425 struct cnic_local *cp = dev->cnic_priv;
1426 struct cnic_eth_dev *ethdev = cp->ethdev;
1427 int blk = (cid - ethdev->starting_cid) / cp->cids_per_blk;
1428 int off = (cid - ethdev->starting_cid) % cp->cids_per_blk;
1429 unsigned long align_off = 0;
1430 dma_addr_t ctx_map;
1431 void *ctx;
1432
1433 if (cp->ctx_align) {
1434 unsigned long mask = cp->ctx_align - 1;
1435
1436 if (cp->ctx_arr[blk].mapping & mask)
1437 align_off = cp->ctx_align -
1438 (cp->ctx_arr[blk].mapping & mask);
1439 }
1440 ctx_map = cp->ctx_arr[blk].mapping + align_off +
1441 (off * BNX2X_CONTEXT_MEM_SIZE);
1442 ctx = cp->ctx_arr[blk].ctx + align_off +
1443 (off * BNX2X_CONTEXT_MEM_SIZE);
1444 if (init)
1445 memset(ctx, 0, BNX2X_CONTEXT_MEM_SIZE);
1446
1447 ctx_addr->lo = ctx_map & 0xffffffff;
1448 ctx_addr->hi = (u64) ctx_map >> 32;
1449 return ctx;
1450}
1451
1452static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
1453 u32 num)
1454{
1455 struct cnic_local *cp = dev->cnic_priv;
1456 struct iscsi_kwqe_conn_offload1 *req1 =
1457 (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1458 struct iscsi_kwqe_conn_offload2 *req2 =
1459 (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1460 struct iscsi_kwqe_conn_offload3 *req3;
1461 struct cnic_context *ctx = &cp->ctx_tbl[req1->iscsi_conn_id];
1462 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1463 u32 cid = ctx->cid;
1464 u32 hw_cid = BNX2X_HW_CID(cid, cp->func);
1465 struct iscsi_context *ictx;
1466 struct regpair context_addr;
1467 int i, j, n = 2, n_max;
1468
1469 ctx->ctx_flags = 0;
1470 if (!req2->num_additional_wqes)
1471 return -EINVAL;
1472
1473 n_max = req2->num_additional_wqes + 2;
1474
1475 ictx = cnic_get_bnx2x_ctx(dev, cid, 1, &context_addr);
1476 if (ictx == NULL)
1477 return -ENOMEM;
1478
1479 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1480
1481 ictx->xstorm_ag_context.hq_prod = 1;
1482
1483 ictx->xstorm_st_context.iscsi.first_burst_length =
1484 ISCSI_DEF_FIRST_BURST_LEN;
1485 ictx->xstorm_st_context.iscsi.max_send_pdu_length =
1486 ISCSI_DEF_MAX_RECV_SEG_LEN;
1487 ictx->xstorm_st_context.iscsi.sq_pbl_base.lo =
1488 req1->sq_page_table_addr_lo;
1489 ictx->xstorm_st_context.iscsi.sq_pbl_base.hi =
1490 req1->sq_page_table_addr_hi;
1491 ictx->xstorm_st_context.iscsi.sq_curr_pbe.lo = req2->sq_first_pte.hi;
1492 ictx->xstorm_st_context.iscsi.sq_curr_pbe.hi = req2->sq_first_pte.lo;
1493 ictx->xstorm_st_context.iscsi.hq_pbl_base.lo =
1494 iscsi->hq_info.pgtbl_map & 0xffffffff;
1495 ictx->xstorm_st_context.iscsi.hq_pbl_base.hi =
1496 (u64) iscsi->hq_info.pgtbl_map >> 32;
1497 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.lo =
1498 iscsi->hq_info.pgtbl[0];
1499 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.hi =
1500 iscsi->hq_info.pgtbl[1];
1501 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.lo =
1502 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1503 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.hi =
1504 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1505 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.lo =
1506 iscsi->r2tq_info.pgtbl[0];
1507 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.hi =
1508 iscsi->r2tq_info.pgtbl[1];
1509 ictx->xstorm_st_context.iscsi.task_pbl_base.lo =
1510 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1511 ictx->xstorm_st_context.iscsi.task_pbl_base.hi =
1512 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1513 ictx->xstorm_st_context.iscsi.task_pbl_cache_idx =
1514 BNX2X_ISCSI_PBL_NOT_CACHED;
1515 ictx->xstorm_st_context.iscsi.flags.flags |=
1516 XSTORM_ISCSI_CONTEXT_FLAGS_B_IMMEDIATE_DATA;
1517 ictx->xstorm_st_context.iscsi.flags.flags |=
1518 XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T;
1519
1520 ictx->tstorm_st_context.iscsi.hdr_bytes_2_fetch = ISCSI_HEADER_SIZE;
1521 /* TSTORM requires the base address of RQ DB & not PTE */
1522 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.lo =
1523 req2->rq_page_table_addr_lo & PAGE_MASK;
1524 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.hi =
1525 req2->rq_page_table_addr_hi;
1526 ictx->tstorm_st_context.iscsi.iscsi_conn_id = req1->iscsi_conn_id;
1527 ictx->tstorm_st_context.tcp.cwnd = 0x5A8;
1528 ictx->tstorm_st_context.tcp.flags2 |=
1529 TSTORM_TCP_ST_CONTEXT_SECTION_DA_EN;
1530
1531 ictx->timers_context.flags |= ISCSI_TIMERS_BLOCK_CONTEXT_CONN_VALID_FLG;
1532
1533 ictx->ustorm_st_context.ring.rq.pbl_base.lo =
Michael Chan15971c32009-12-02 15:15:38 +00001534 req2->rq_page_table_addr_lo;
Michael Chan71034ba2009-10-10 13:46:59 +00001535 ictx->ustorm_st_context.ring.rq.pbl_base.hi =
Michael Chan15971c32009-12-02 15:15:38 +00001536 req2->rq_page_table_addr_hi;
Michael Chan71034ba2009-10-10 13:46:59 +00001537 ictx->ustorm_st_context.ring.rq.curr_pbe.lo = req3->qp_first_pte[0].hi;
1538 ictx->ustorm_st_context.ring.rq.curr_pbe.hi = req3->qp_first_pte[0].lo;
1539 ictx->ustorm_st_context.ring.r2tq.pbl_base.lo =
1540 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1541 ictx->ustorm_st_context.ring.r2tq.pbl_base.hi =
1542 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1543 ictx->ustorm_st_context.ring.r2tq.curr_pbe.lo =
1544 iscsi->r2tq_info.pgtbl[0];
1545 ictx->ustorm_st_context.ring.r2tq.curr_pbe.hi =
1546 iscsi->r2tq_info.pgtbl[1];
1547 ictx->ustorm_st_context.ring.cq_pbl_base.lo =
1548 req1->cq_page_table_addr_lo;
1549 ictx->ustorm_st_context.ring.cq_pbl_base.hi =
1550 req1->cq_page_table_addr_hi;
1551 ictx->ustorm_st_context.ring.cq[0].cq_sn = ISCSI_INITIAL_SN;
1552 ictx->ustorm_st_context.ring.cq[0].curr_pbe.lo = req2->cq_first_pte.hi;
1553 ictx->ustorm_st_context.ring.cq[0].curr_pbe.hi = req2->cq_first_pte.lo;
1554 ictx->ustorm_st_context.task_pbe_cache_index =
1555 BNX2X_ISCSI_PBL_NOT_CACHED;
1556 ictx->ustorm_st_context.task_pdu_cache_index =
1557 BNX2X_ISCSI_PDU_HEADER_NOT_CACHED;
1558
1559 for (i = 1, j = 1; i < cp->num_cqs; i++, j++) {
1560 if (j == 3) {
1561 if (n >= n_max)
1562 break;
1563 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1564 j = 0;
1565 }
1566 ictx->ustorm_st_context.ring.cq[i].cq_sn = ISCSI_INITIAL_SN;
1567 ictx->ustorm_st_context.ring.cq[i].curr_pbe.lo =
1568 req3->qp_first_pte[j].hi;
1569 ictx->ustorm_st_context.ring.cq[i].curr_pbe.hi =
1570 req3->qp_first_pte[j].lo;
1571 }
1572
1573 ictx->ustorm_st_context.task_pbl_base.lo =
1574 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1575 ictx->ustorm_st_context.task_pbl_base.hi =
1576 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1577 ictx->ustorm_st_context.tce_phy_addr.lo =
1578 iscsi->task_array_info.pgtbl[0];
1579 ictx->ustorm_st_context.tce_phy_addr.hi =
1580 iscsi->task_array_info.pgtbl[1];
1581 ictx->ustorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1582 ictx->ustorm_st_context.num_cqs = cp->num_cqs;
1583 ictx->ustorm_st_context.negotiated_rx |= ISCSI_DEF_MAX_RECV_SEG_LEN;
1584 ictx->ustorm_st_context.negotiated_rx_and_flags |=
1585 ISCSI_DEF_MAX_BURST_LEN;
1586 ictx->ustorm_st_context.negotiated_rx |=
1587 ISCSI_DEFAULT_MAX_OUTSTANDING_R2T <<
1588 USTORM_ISCSI_ST_CONTEXT_MAX_OUTSTANDING_R2TS_SHIFT;
1589
1590 ictx->cstorm_st_context.hq_pbl_base.lo =
1591 iscsi->hq_info.pgtbl_map & 0xffffffff;
1592 ictx->cstorm_st_context.hq_pbl_base.hi =
1593 (u64) iscsi->hq_info.pgtbl_map >> 32;
1594 ictx->cstorm_st_context.hq_curr_pbe.lo = iscsi->hq_info.pgtbl[0];
1595 ictx->cstorm_st_context.hq_curr_pbe.hi = iscsi->hq_info.pgtbl[1];
1596 ictx->cstorm_st_context.task_pbl_base.lo =
1597 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1598 ictx->cstorm_st_context.task_pbl_base.hi =
1599 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1600 /* CSTORM and USTORM initialization is different, CSTORM requires
1601 * CQ DB base & not PTE addr */
1602 ictx->cstorm_st_context.cq_db_base.lo =
1603 req1->cq_page_table_addr_lo & PAGE_MASK;
1604 ictx->cstorm_st_context.cq_db_base.hi = req1->cq_page_table_addr_hi;
1605 ictx->cstorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1606 ictx->cstorm_st_context.cq_proc_en_bit_map = (1 << cp->num_cqs) - 1;
1607 for (i = 0; i < cp->num_cqs; i++) {
1608 ictx->cstorm_st_context.cq_c_prod_sqn_arr.sqn[i] =
1609 ISCSI_INITIAL_SN;
1610 ictx->cstorm_st_context.cq_c_sqn_2_notify_arr.sqn[i] =
1611 ISCSI_INITIAL_SN;
1612 }
1613
1614 ictx->xstorm_ag_context.cdu_reserved =
1615 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
1616 ISCSI_CONNECTION_TYPE);
1617 ictx->ustorm_ag_context.cdu_usage =
1618 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
1619 ISCSI_CONNECTION_TYPE);
1620 return 0;
1621
1622}
1623
1624static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
1625 u32 num, int *work)
1626{
1627 struct iscsi_kwqe_conn_offload1 *req1;
1628 struct iscsi_kwqe_conn_offload2 *req2;
1629 struct cnic_local *cp = dev->cnic_priv;
1630 struct iscsi_kcqe kcqe;
1631 struct kcqe *cqes[1];
1632 u32 l5_cid;
1633 int ret;
1634
1635 if (num < 2) {
1636 *work = num;
1637 return -EINVAL;
1638 }
1639
1640 req1 = (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1641 req2 = (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1642 if ((num - 2) < req2->num_additional_wqes) {
1643 *work = num;
1644 return -EINVAL;
1645 }
1646 *work = 2 + req2->num_additional_wqes;;
1647
1648 l5_cid = req1->iscsi_conn_id;
1649 if (l5_cid >= MAX_ISCSI_TBL_SZ)
1650 return -EINVAL;
1651
1652 memset(&kcqe, 0, sizeof(kcqe));
1653 kcqe.op_code = ISCSI_KCQE_OPCODE_OFFLOAD_CONN;
1654 kcqe.iscsi_conn_id = l5_cid;
1655 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
1656
1657 if (atomic_inc_return(&cp->iscsi_conn) > dev->max_iscsi_conn) {
1658 atomic_dec(&cp->iscsi_conn);
1659 ret = 0;
1660 goto done;
1661 }
1662 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
1663 if (ret) {
1664 atomic_dec(&cp->iscsi_conn);
1665 ret = 0;
1666 goto done;
1667 }
1668 ret = cnic_setup_bnx2x_ctx(dev, wqes, num);
1669 if (ret < 0) {
1670 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1671 atomic_dec(&cp->iscsi_conn);
1672 goto done;
1673 }
1674
1675 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1676 kcqe.iscsi_conn_context_id = BNX2X_HW_CID(cp->ctx_tbl[l5_cid].cid,
1677 cp->func);
1678
1679done:
1680 cqes[0] = (struct kcqe *) &kcqe;
1681 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1682 return ret;
1683}
1684
1685
1686static int cnic_bnx2x_iscsi_update(struct cnic_dev *dev, struct kwqe *kwqe)
1687{
1688 struct cnic_local *cp = dev->cnic_priv;
1689 struct iscsi_kwqe_conn_update *req =
1690 (struct iscsi_kwqe_conn_update *) kwqe;
1691 void *data;
1692 union l5cm_specific_data l5_data;
1693 u32 l5_cid, cid = BNX2X_SW_CID(req->context_id);
1694 int ret;
1695
1696 if (cnic_get_l5_cid(cp, cid, &l5_cid) != 0)
1697 return -EINVAL;
1698
1699 data = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
1700 if (!data)
1701 return -ENOMEM;
1702
1703 memcpy(data, kwqe, sizeof(struct kwqe));
1704
1705 ret = cnic_submit_kwqe_16(dev, ISCSI_RAMROD_CMD_ID_UPDATE_CONN,
1706 req->context_id, ISCSI_CONNECTION_TYPE, &l5_data);
1707 return ret;
1708}
1709
1710static int cnic_bnx2x_iscsi_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
1711{
1712 struct cnic_local *cp = dev->cnic_priv;
1713 struct iscsi_kwqe_conn_destroy *req =
1714 (struct iscsi_kwqe_conn_destroy *) kwqe;
1715 union l5cm_specific_data l5_data;
1716 u32 l5_cid = req->reserved0;
1717 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1718 int ret = 0;
1719 struct iscsi_kcqe kcqe;
1720 struct kcqe *cqes[1];
1721
1722 if (!(ctx->ctx_flags & CTX_FL_OFFLD_START))
1723 goto skip_cfc_delete;
1724
1725 while (!time_after(jiffies, ctx->timestamp + (2 * HZ)))
1726 msleep(250);
1727
1728 init_waitqueue_head(&ctx->waitq);
1729 ctx->wait_cond = 0;
1730 memset(&l5_data, 0, sizeof(l5_data));
1731 ret = cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CFC_DEL,
1732 req->context_id,
1733 ETH_CONNECTION_TYPE |
1734 (1 << SPE_HDR_COMMON_RAMROD_SHIFT),
1735 &l5_data);
1736 if (ret == 0)
1737 wait_event(ctx->waitq, ctx->wait_cond);
1738
1739skip_cfc_delete:
1740 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1741
1742 atomic_dec(&cp->iscsi_conn);
1743
1744 memset(&kcqe, 0, sizeof(kcqe));
1745 kcqe.op_code = ISCSI_KCQE_OPCODE_DESTROY_CONN;
1746 kcqe.iscsi_conn_id = l5_cid;
1747 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1748 kcqe.iscsi_conn_context_id = req->context_id;
1749
1750 cqes[0] = (struct kcqe *) &kcqe;
1751 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1752
1753 return ret;
1754}
1755
1756static void cnic_init_storm_conn_bufs(struct cnic_dev *dev,
1757 struct l4_kwq_connect_req1 *kwqe1,
1758 struct l4_kwq_connect_req3 *kwqe3,
1759 struct l5cm_active_conn_buffer *conn_buf)
1760{
1761 struct l5cm_conn_addr_params *conn_addr = &conn_buf->conn_addr_buf;
1762 struct l5cm_xstorm_conn_buffer *xstorm_buf =
1763 &conn_buf->xstorm_conn_buffer;
1764 struct l5cm_tstorm_conn_buffer *tstorm_buf =
1765 &conn_buf->tstorm_conn_buffer;
1766 struct regpair context_addr;
1767 u32 cid = BNX2X_SW_CID(kwqe1->cid);
1768 struct in6_addr src_ip, dst_ip;
1769 int i;
1770 u32 *addrp;
1771
1772 addrp = (u32 *) &conn_addr->local_ip_addr;
1773 for (i = 0; i < 4; i++, addrp++)
1774 src_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
1775
1776 addrp = (u32 *) &conn_addr->remote_ip_addr;
1777 for (i = 0; i < 4; i++, addrp++)
1778 dst_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
1779
1780 cnic_get_bnx2x_ctx(dev, cid, 0, &context_addr);
1781
1782 xstorm_buf->context_addr.hi = context_addr.hi;
1783 xstorm_buf->context_addr.lo = context_addr.lo;
1784 xstorm_buf->mss = 0xffff;
1785 xstorm_buf->rcv_buf = kwqe3->rcv_buf;
1786 if (kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE)
1787 xstorm_buf->params |= L5CM_XSTORM_CONN_BUFFER_NAGLE_ENABLE;
1788 xstorm_buf->pseudo_header_checksum =
1789 swab16(~csum_ipv6_magic(&src_ip, &dst_ip, 0, IPPROTO_TCP, 0));
1790
1791 if (!(kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK))
1792 tstorm_buf->params |=
1793 L5CM_TSTORM_CONN_BUFFER_DELAYED_ACK_ENABLE;
1794 if (kwqe3->ka_timeout) {
1795 tstorm_buf->ka_enable = 1;
1796 tstorm_buf->ka_timeout = kwqe3->ka_timeout;
1797 tstorm_buf->ka_interval = kwqe3->ka_interval;
1798 tstorm_buf->ka_max_probe_count = kwqe3->ka_max_probe_count;
1799 }
1800 tstorm_buf->rcv_buf = kwqe3->rcv_buf;
1801 tstorm_buf->snd_buf = kwqe3->snd_buf;
1802 tstorm_buf->max_rt_time = 0xffffffff;
1803}
1804
1805static void cnic_init_bnx2x_mac(struct cnic_dev *dev)
1806{
1807 struct cnic_local *cp = dev->cnic_priv;
1808 int func = CNIC_FUNC(cp);
1809 u8 *mac = dev->mac_addr;
1810
1811 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1812 XSTORM_ISCSI_LOCAL_MAC_ADDR0_OFFSET(func), mac[0]);
1813 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1814 XSTORM_ISCSI_LOCAL_MAC_ADDR1_OFFSET(func), mac[1]);
1815 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1816 XSTORM_ISCSI_LOCAL_MAC_ADDR2_OFFSET(func), mac[2]);
1817 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1818 XSTORM_ISCSI_LOCAL_MAC_ADDR3_OFFSET(func), mac[3]);
1819 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1820 XSTORM_ISCSI_LOCAL_MAC_ADDR4_OFFSET(func), mac[4]);
1821 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1822 XSTORM_ISCSI_LOCAL_MAC_ADDR5_OFFSET(func), mac[5]);
1823
1824 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1825 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(func), mac[5]);
1826 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1827 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(func) + 1,
1828 mac[4]);
1829 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1830 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func), mac[3]);
1831 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1832 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func) + 1,
1833 mac[2]);
1834 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1835 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func) + 2,
1836 mac[1]);
1837 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1838 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func) + 3,
1839 mac[0]);
1840}
1841
1842static void cnic_bnx2x_set_tcp_timestamp(struct cnic_dev *dev, int tcp_ts)
1843{
1844 struct cnic_local *cp = dev->cnic_priv;
1845 u8 xstorm_flags = XSTORM_L5CM_TCP_FLAGS_WND_SCL_EN;
1846 u16 tstorm_flags = 0;
1847
1848 if (tcp_ts) {
1849 xstorm_flags |= XSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
1850 tstorm_flags |= TSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
1851 }
1852
1853 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1854 XSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->func), xstorm_flags);
1855
1856 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
1857 TSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->func), tstorm_flags);
1858}
1859
1860static int cnic_bnx2x_connect(struct cnic_dev *dev, struct kwqe *wqes[],
1861 u32 num, int *work)
1862{
1863 struct cnic_local *cp = dev->cnic_priv;
1864 struct l4_kwq_connect_req1 *kwqe1 =
1865 (struct l4_kwq_connect_req1 *) wqes[0];
1866 struct l4_kwq_connect_req3 *kwqe3;
1867 struct l5cm_active_conn_buffer *conn_buf;
1868 struct l5cm_conn_addr_params *conn_addr;
1869 union l5cm_specific_data l5_data;
1870 u32 l5_cid = kwqe1->pg_cid;
1871 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
1872 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1873 int ret;
1874
1875 if (num < 2) {
1876 *work = num;
1877 return -EINVAL;
1878 }
1879
1880 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6)
1881 *work = 3;
1882 else
1883 *work = 2;
1884
1885 if (num < *work) {
1886 *work = num;
1887 return -EINVAL;
1888 }
1889
1890 if (sizeof(*conn_buf) > CNIC_KWQ16_DATA_SIZE) {
Joe Perchesddf79b22010-02-17 15:01:54 +00001891 netdev_err(dev->netdev, "conn_buf size too big\n");
Michael Chan71034ba2009-10-10 13:46:59 +00001892 return -ENOMEM;
1893 }
1894 conn_buf = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
1895 if (!conn_buf)
1896 return -ENOMEM;
1897
1898 memset(conn_buf, 0, sizeof(*conn_buf));
1899
1900 conn_addr = &conn_buf->conn_addr_buf;
1901 conn_addr->remote_addr_0 = csk->ha[0];
1902 conn_addr->remote_addr_1 = csk->ha[1];
1903 conn_addr->remote_addr_2 = csk->ha[2];
1904 conn_addr->remote_addr_3 = csk->ha[3];
1905 conn_addr->remote_addr_4 = csk->ha[4];
1906 conn_addr->remote_addr_5 = csk->ha[5];
1907
1908 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6) {
1909 struct l4_kwq_connect_req2 *kwqe2 =
1910 (struct l4_kwq_connect_req2 *) wqes[1];
1911
1912 conn_addr->local_ip_addr.ip_addr_hi_hi = kwqe2->src_ip_v6_4;
1913 conn_addr->local_ip_addr.ip_addr_hi_lo = kwqe2->src_ip_v6_3;
1914 conn_addr->local_ip_addr.ip_addr_lo_hi = kwqe2->src_ip_v6_2;
1915
1916 conn_addr->remote_ip_addr.ip_addr_hi_hi = kwqe2->dst_ip_v6_4;
1917 conn_addr->remote_ip_addr.ip_addr_hi_lo = kwqe2->dst_ip_v6_3;
1918 conn_addr->remote_ip_addr.ip_addr_lo_hi = kwqe2->dst_ip_v6_2;
1919 conn_addr->params |= L5CM_CONN_ADDR_PARAMS_IP_VERSION;
1920 }
1921 kwqe3 = (struct l4_kwq_connect_req3 *) wqes[*work - 1];
1922
1923 conn_addr->local_ip_addr.ip_addr_lo_lo = kwqe1->src_ip;
1924 conn_addr->remote_ip_addr.ip_addr_lo_lo = kwqe1->dst_ip;
1925 conn_addr->local_tcp_port = kwqe1->src_port;
1926 conn_addr->remote_tcp_port = kwqe1->dst_port;
1927
1928 conn_addr->pmtu = kwqe3->pmtu;
1929 cnic_init_storm_conn_bufs(dev, kwqe1, kwqe3, conn_buf);
1930
1931 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
1932 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(cp->func), csk->vlan_id);
1933
1934 cnic_bnx2x_set_tcp_timestamp(dev,
1935 kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_TIME_STAMP);
1936
1937 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_TCP_CONNECT,
1938 kwqe1->cid, ISCSI_CONNECTION_TYPE, &l5_data);
1939 if (!ret)
1940 ctx->ctx_flags |= CTX_FL_OFFLD_START;
1941
1942 return ret;
1943}
1944
1945static int cnic_bnx2x_close(struct cnic_dev *dev, struct kwqe *kwqe)
1946{
1947 struct l4_kwq_close_req *req = (struct l4_kwq_close_req *) kwqe;
1948 union l5cm_specific_data l5_data;
1949 int ret;
1950
1951 memset(&l5_data, 0, sizeof(l5_data));
1952 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_CLOSE,
1953 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
1954 return ret;
1955}
1956
1957static int cnic_bnx2x_reset(struct cnic_dev *dev, struct kwqe *kwqe)
1958{
1959 struct l4_kwq_reset_req *req = (struct l4_kwq_reset_req *) kwqe;
1960 union l5cm_specific_data l5_data;
1961 int ret;
1962
1963 memset(&l5_data, 0, sizeof(l5_data));
1964 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_ABORT,
1965 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
1966 return ret;
1967}
1968static int cnic_bnx2x_offload_pg(struct cnic_dev *dev, struct kwqe *kwqe)
1969{
1970 struct l4_kwq_offload_pg *req = (struct l4_kwq_offload_pg *) kwqe;
1971 struct l4_kcq kcqe;
1972 struct kcqe *cqes[1];
1973
1974 memset(&kcqe, 0, sizeof(kcqe));
1975 kcqe.pg_host_opaque = req->host_opaque;
1976 kcqe.pg_cid = req->host_opaque;
1977 kcqe.op_code = L4_KCQE_OPCODE_VALUE_OFFLOAD_PG;
1978 cqes[0] = (struct kcqe *) &kcqe;
1979 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
1980 return 0;
1981}
1982
1983static int cnic_bnx2x_update_pg(struct cnic_dev *dev, struct kwqe *kwqe)
1984{
1985 struct l4_kwq_update_pg *req = (struct l4_kwq_update_pg *) kwqe;
1986 struct l4_kcq kcqe;
1987 struct kcqe *cqes[1];
1988
1989 memset(&kcqe, 0, sizeof(kcqe));
1990 kcqe.pg_host_opaque = req->pg_host_opaque;
1991 kcqe.pg_cid = req->pg_cid;
1992 kcqe.op_code = L4_KCQE_OPCODE_VALUE_UPDATE_PG;
1993 cqes[0] = (struct kcqe *) &kcqe;
1994 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
1995 return 0;
1996}
1997
1998static int cnic_submit_bnx2x_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
1999 u32 num_wqes)
2000{
2001 int i, work, ret;
2002 u32 opcode;
2003 struct kwqe *kwqe;
2004
2005 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2006 return -EAGAIN; /* bnx2 is down */
2007
2008 for (i = 0; i < num_wqes; ) {
2009 kwqe = wqes[i];
2010 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2011 work = 1;
2012
2013 switch (opcode) {
2014 case ISCSI_KWQE_OPCODE_INIT1:
2015 ret = cnic_bnx2x_iscsi_init1(dev, kwqe);
2016 break;
2017 case ISCSI_KWQE_OPCODE_INIT2:
2018 ret = cnic_bnx2x_iscsi_init2(dev, kwqe);
2019 break;
2020 case ISCSI_KWQE_OPCODE_OFFLOAD_CONN1:
2021 ret = cnic_bnx2x_iscsi_ofld1(dev, &wqes[i],
2022 num_wqes - i, &work);
2023 break;
2024 case ISCSI_KWQE_OPCODE_UPDATE_CONN:
2025 ret = cnic_bnx2x_iscsi_update(dev, kwqe);
2026 break;
2027 case ISCSI_KWQE_OPCODE_DESTROY_CONN:
2028 ret = cnic_bnx2x_iscsi_destroy(dev, kwqe);
2029 break;
2030 case L4_KWQE_OPCODE_VALUE_CONNECT1:
2031 ret = cnic_bnx2x_connect(dev, &wqes[i], num_wqes - i,
2032 &work);
2033 break;
2034 case L4_KWQE_OPCODE_VALUE_CLOSE:
2035 ret = cnic_bnx2x_close(dev, kwqe);
2036 break;
2037 case L4_KWQE_OPCODE_VALUE_RESET:
2038 ret = cnic_bnx2x_reset(dev, kwqe);
2039 break;
2040 case L4_KWQE_OPCODE_VALUE_OFFLOAD_PG:
2041 ret = cnic_bnx2x_offload_pg(dev, kwqe);
2042 break;
2043 case L4_KWQE_OPCODE_VALUE_UPDATE_PG:
2044 ret = cnic_bnx2x_update_pg(dev, kwqe);
2045 break;
2046 case L4_KWQE_OPCODE_VALUE_UPLOAD_PG:
2047 ret = 0;
2048 break;
2049 default:
2050 ret = 0;
Joe Perchesddf79b22010-02-17 15:01:54 +00002051 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2052 opcode);
Michael Chan71034ba2009-10-10 13:46:59 +00002053 break;
2054 }
2055 if (ret < 0)
Joe Perchesddf79b22010-02-17 15:01:54 +00002056 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2057 opcode);
Michael Chan71034ba2009-10-10 13:46:59 +00002058 i += work;
2059 }
2060 return 0;
2061}
2062
Michael Chana4636962009-06-08 18:14:43 -07002063static void service_kcqes(struct cnic_dev *dev, int num_cqes)
2064{
2065 struct cnic_local *cp = dev->cnic_priv;
2066 int i, j;
2067
2068 i = 0;
2069 j = 1;
2070 while (num_cqes) {
2071 struct cnic_ulp_ops *ulp_ops;
2072 int ulp_type;
2073 u32 kcqe_op_flag = cp->completed_kcq[i]->kcqe_op_flag;
2074 u32 kcqe_layer = kcqe_op_flag & KCQE_FLAGS_LAYER_MASK;
2075
2076 if (unlikely(kcqe_op_flag & KCQE_RAMROD_COMPLETION))
2077 cnic_kwq_completion(dev, 1);
2078
2079 while (j < num_cqes) {
2080 u32 next_op = cp->completed_kcq[i + j]->kcqe_op_flag;
2081
2082 if ((next_op & KCQE_FLAGS_LAYER_MASK) != kcqe_layer)
2083 break;
2084
2085 if (unlikely(next_op & KCQE_RAMROD_COMPLETION))
2086 cnic_kwq_completion(dev, 1);
2087 j++;
2088 }
2089
2090 if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_RDMA)
2091 ulp_type = CNIC_ULP_RDMA;
2092 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_ISCSI)
2093 ulp_type = CNIC_ULP_ISCSI;
2094 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L4)
2095 ulp_type = CNIC_ULP_L4;
2096 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L2)
2097 goto end;
2098 else {
Joe Perchesddf79b22010-02-17 15:01:54 +00002099 netdev_err(dev->netdev, "Unknown type of KCQE(0x%x)\n",
2100 kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002101 goto end;
2102 }
2103
2104 rcu_read_lock();
2105 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
2106 if (likely(ulp_ops)) {
2107 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
2108 cp->completed_kcq + i, j);
2109 }
2110 rcu_read_unlock();
2111end:
2112 num_cqes -= j;
2113 i += j;
2114 j = 1;
2115 }
Michael Chana4636962009-06-08 18:14:43 -07002116}
2117
2118static u16 cnic_bnx2_next_idx(u16 idx)
2119{
2120 return idx + 1;
2121}
2122
2123static u16 cnic_bnx2_hw_idx(u16 idx)
2124{
2125 return idx;
2126}
2127
Michael Chan71034ba2009-10-10 13:46:59 +00002128static u16 cnic_bnx2x_next_idx(u16 idx)
2129{
2130 idx++;
2131 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
2132 idx++;
2133
2134 return idx;
2135}
2136
2137static u16 cnic_bnx2x_hw_idx(u16 idx)
2138{
2139 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
2140 idx++;
2141 return idx;
2142}
2143
Michael Chan644b9d42010-06-24 14:58:40 +00002144static int cnic_get_kcqes(struct cnic_dev *dev, struct kcq_info *info)
Michael Chana4636962009-06-08 18:14:43 -07002145{
2146 struct cnic_local *cp = dev->cnic_priv;
Michael Chan644b9d42010-06-24 14:58:40 +00002147 u16 i, ri, hw_prod, last;
Michael Chana4636962009-06-08 18:14:43 -07002148 struct kcqe *kcqe;
2149 int kcqe_cnt = 0, last_cnt = 0;
2150
Michael Chan644b9d42010-06-24 14:58:40 +00002151 i = ri = last = info->sw_prod_idx;
Michael Chana4636962009-06-08 18:14:43 -07002152 ri &= MAX_KCQ_IDX;
Michael Chan644b9d42010-06-24 14:58:40 +00002153 hw_prod = *info->hw_prod_idx_ptr;
2154 hw_prod = cp->hw_idx(hw_prod);
Michael Chana4636962009-06-08 18:14:43 -07002155
2156 while ((i != hw_prod) && (kcqe_cnt < MAX_COMPLETED_KCQE)) {
Michael Chan644b9d42010-06-24 14:58:40 +00002157 kcqe = &info->kcq[KCQ_PG(ri)][KCQ_IDX(ri)];
Michael Chana4636962009-06-08 18:14:43 -07002158 cp->completed_kcq[kcqe_cnt++] = kcqe;
2159 i = cp->next_idx(i);
2160 ri = i & MAX_KCQ_IDX;
2161 if (likely(!(kcqe->kcqe_op_flag & KCQE_FLAGS_NEXT))) {
2162 last_cnt = kcqe_cnt;
2163 last = i;
2164 }
2165 }
2166
Michael Chan644b9d42010-06-24 14:58:40 +00002167 info->sw_prod_idx = last;
Michael Chana4636962009-06-08 18:14:43 -07002168 return last_cnt;
2169}
2170
Michael Chan48f753d2010-05-18 11:32:53 +00002171static int cnic_l2_completion(struct cnic_local *cp)
2172{
2173 u16 hw_cons, sw_cons;
2174 union eth_rx_cqe *cqe, *cqe_ring = (union eth_rx_cqe *)
2175 (cp->l2_ring + (2 * BCM_PAGE_SIZE));
2176 u32 cmd;
2177 int comp = 0;
2178
2179 if (!test_bit(CNIC_F_BNX2X_CLASS, &cp->dev->flags))
2180 return 0;
2181
2182 hw_cons = *cp->rx_cons_ptr;
2183 if ((hw_cons & BNX2X_MAX_RCQ_DESC_CNT) == BNX2X_MAX_RCQ_DESC_CNT)
2184 hw_cons++;
2185
2186 sw_cons = cp->rx_cons;
2187 while (sw_cons != hw_cons) {
2188 u8 cqe_fp_flags;
2189
2190 cqe = &cqe_ring[sw_cons & BNX2X_MAX_RCQ_DESC_CNT];
2191 cqe_fp_flags = cqe->fast_path_cqe.type_error_flags;
2192 if (cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE) {
2193 cmd = le32_to_cpu(cqe->ramrod_cqe.conn_and_cmd_data);
2194 cmd >>= COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT;
2195 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP ||
2196 cmd == RAMROD_CMD_ID_ETH_HALT)
2197 comp++;
2198 }
2199 sw_cons = BNX2X_NEXT_RCQE(sw_cons);
2200 }
2201 return comp;
2202}
2203
Michael Chan86b53602009-10-10 13:46:57 +00002204static void cnic_chk_pkt_rings(struct cnic_local *cp)
Michael Chana4636962009-06-08 18:14:43 -07002205{
2206 u16 rx_cons = *cp->rx_cons_ptr;
2207 u16 tx_cons = *cp->tx_cons_ptr;
Michael Chan48f753d2010-05-18 11:32:53 +00002208 int comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002209
Michael Chan66fee9e2010-06-24 14:58:38 +00002210 if (!test_bit(CNIC_F_CNIC_UP, &cp->dev->flags))
2211 return;
2212
Michael Chana4636962009-06-08 18:14:43 -07002213 if (cp->tx_cons != tx_cons || cp->rx_cons != rx_cons) {
Michael Chan48f753d2010-05-18 11:32:53 +00002214 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
2215 comp = cnic_l2_completion(cp);
2216
Michael Chana4636962009-06-08 18:14:43 -07002217 cp->tx_cons = tx_cons;
2218 cp->rx_cons = rx_cons;
Michael Chan71034ba2009-10-10 13:46:59 +00002219
Michael Chana4636962009-06-08 18:14:43 -07002220 uio_event_notify(cp->cnic_uinfo);
2221 }
Michael Chan48f753d2010-05-18 11:32:53 +00002222 if (comp)
2223 clear_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07002224}
2225
2226static int cnic_service_bnx2(void *data, void *status_blk)
2227{
2228 struct cnic_dev *dev = data;
Michael Chana4636962009-06-08 18:14:43 -07002229 struct cnic_local *cp = dev->cnic_priv;
Michael Chan644b9d42010-06-24 14:58:40 +00002230 u32 status_idx = *cp->kcq1.status_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002231 int kcqe_cnt;
2232
2233 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags)))
2234 return status_idx;
2235
2236 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
2237
Michael Chan644b9d42010-06-24 14:58:40 +00002238 while ((kcqe_cnt = cnic_get_kcqes(dev, &cp->kcq1))) {
Michael Chana4636962009-06-08 18:14:43 -07002239
2240 service_kcqes(dev, kcqe_cnt);
2241
2242 /* Tell compiler that status_blk fields can change. */
2243 barrier();
Michael Chan644b9d42010-06-24 14:58:40 +00002244 if (status_idx != *cp->kcq1.status_idx_ptr) {
2245 status_idx = *cp->kcq1.status_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002246 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002247 } else
2248 break;
2249 }
2250
Michael Chan644b9d42010-06-24 14:58:40 +00002251 CNIC_WR16(dev, cp->kcq1.io_addr, cp->kcq1.sw_prod_idx);
Michael Chana4636962009-06-08 18:14:43 -07002252
Michael Chan86b53602009-10-10 13:46:57 +00002253 cnic_chk_pkt_rings(cp);
Michael Chana4636962009-06-08 18:14:43 -07002254 return status_idx;
2255}
2256
2257static void cnic_service_bnx2_msix(unsigned long data)
2258{
2259 struct cnic_dev *dev = (struct cnic_dev *) data;
2260 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4dde3a2010-02-24 14:42:08 +00002261 struct status_block_msix *status_blk = cp->status_blk.bnx2;
Michael Chan644b9d42010-06-24 14:58:40 +00002262 u32 status_idx = *cp->kcq1.status_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002263 int kcqe_cnt;
2264
2265 cp->kwq_con_idx = status_blk->status_cmd_consumer_index;
2266
Michael Chan644b9d42010-06-24 14:58:40 +00002267 while ((kcqe_cnt = cnic_get_kcqes(dev, &cp->kcq1))) {
Michael Chana4636962009-06-08 18:14:43 -07002268
2269 service_kcqes(dev, kcqe_cnt);
2270
2271 /* Tell compiler that status_blk fields can change. */
2272 barrier();
Michael Chan644b9d42010-06-24 14:58:40 +00002273 if (status_idx != *cp->kcq1.status_idx_ptr) {
2274 status_idx = *cp->kcq1.status_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002275 cp->kwq_con_idx = status_blk->status_cmd_consumer_index;
Michael Chana4636962009-06-08 18:14:43 -07002276 } else
2277 break;
2278 }
2279
Michael Chan644b9d42010-06-24 14:58:40 +00002280 CNIC_WR16(dev, cp->kcq1.io_addr, cp->kcq1.sw_prod_idx);
Michael Chana4636962009-06-08 18:14:43 -07002281
Michael Chan86b53602009-10-10 13:46:57 +00002282 cnic_chk_pkt_rings(cp);
Michael Chana4636962009-06-08 18:14:43 -07002283
2284 cp->last_status_idx = status_idx;
2285 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
2286 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
2287}
2288
Michael Chan66fee9e2010-06-24 14:58:38 +00002289static void cnic_doirq(struct cnic_dev *dev)
2290{
2291 struct cnic_local *cp = dev->cnic_priv;
Michael Chane6c28892010-06-24 14:58:39 +00002292 u16 prod = cp->kcq1.sw_prod_idx & MAX_KCQ_IDX;
Michael Chan66fee9e2010-06-24 14:58:38 +00002293
2294 if (likely(test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
2295 prefetch(cp->status_blk.gen);
Michael Chane6c28892010-06-24 14:58:39 +00002296 prefetch(&cp->kcq1.kcq[KCQ_PG(prod)][KCQ_IDX(prod)]);
Michael Chan66fee9e2010-06-24 14:58:38 +00002297
2298 tasklet_schedule(&cp->cnic_irq_task);
2299 }
2300}
2301
Michael Chana4636962009-06-08 18:14:43 -07002302static irqreturn_t cnic_irq(int irq, void *dev_instance)
2303{
2304 struct cnic_dev *dev = dev_instance;
2305 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07002306
2307 if (cp->ack_int)
2308 cp->ack_int(dev);
2309
Michael Chan66fee9e2010-06-24 14:58:38 +00002310 cnic_doirq(dev);
Michael Chana4636962009-06-08 18:14:43 -07002311
2312 return IRQ_HANDLED;
2313}
2314
Michael Chan71034ba2009-10-10 13:46:59 +00002315static inline void cnic_ack_bnx2x_int(struct cnic_dev *dev, u8 id, u8 storm,
2316 u16 index, u8 op, u8 update)
2317{
2318 struct cnic_local *cp = dev->cnic_priv;
2319 u32 hc_addr = (HC_REG_COMMAND_REG + CNIC_PORT(cp) * 32 +
2320 COMMAND_REG_INT_ACK);
2321 struct igu_ack_register igu_ack;
2322
2323 igu_ack.status_block_index = index;
2324 igu_ack.sb_id_and_flags =
2325 ((id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
2326 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
2327 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
2328 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
2329
2330 CNIC_WR(dev, hc_addr, (*(u32 *)&igu_ack));
2331}
2332
2333static void cnic_ack_bnx2x_msix(struct cnic_dev *dev)
2334{
2335 struct cnic_local *cp = dev->cnic_priv;
2336
2337 cnic_ack_bnx2x_int(dev, cp->status_blk_num, CSTORM_ID, 0,
2338 IGU_INT_DISABLE, 0);
2339}
2340
2341static void cnic_service_bnx2x_bh(unsigned long data)
2342{
2343 struct cnic_dev *dev = (struct cnic_dev *) data;
2344 struct cnic_local *cp = dev->cnic_priv;
Michael Chan644b9d42010-06-24 14:58:40 +00002345 u32 status_idx = *cp->kcq1.status_idx_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00002346 int kcqe_cnt;
2347
2348 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags)))
2349 return;
2350
Michael Chan644b9d42010-06-24 14:58:40 +00002351 while ((kcqe_cnt = cnic_get_kcqes(dev, &cp->kcq1))) {
Michael Chan71034ba2009-10-10 13:46:59 +00002352
2353 service_kcqes(dev, kcqe_cnt);
2354
2355 /* Tell compiler that sblk fields can change. */
2356 barrier();
Michael Chan644b9d42010-06-24 14:58:40 +00002357 if (status_idx == *cp->kcq1.status_idx_ptr)
Michael Chan71034ba2009-10-10 13:46:59 +00002358 break;
2359
Michael Chan644b9d42010-06-24 14:58:40 +00002360 status_idx = *cp->kcq1.status_idx_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00002361 }
2362
Michael Chan644b9d42010-06-24 14:58:40 +00002363 CNIC_WR16(dev, cp->kcq1.io_addr, cp->kcq1.sw_prod_idx + MAX_KCQ_IDX);
Michael Chan71034ba2009-10-10 13:46:59 +00002364 cnic_ack_bnx2x_int(dev, cp->status_blk_num, CSTORM_ID,
2365 status_idx, IGU_INT_ENABLE, 1);
Michael Chan71034ba2009-10-10 13:46:59 +00002366}
2367
2368static int cnic_service_bnx2x(void *data, void *status_blk)
2369{
2370 struct cnic_dev *dev = data;
2371 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00002372
Michael Chan66fee9e2010-06-24 14:58:38 +00002373 if (!(cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
2374 cnic_doirq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00002375
Michael Chan66fee9e2010-06-24 14:58:38 +00002376 cnic_chk_pkt_rings(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00002377
2378 return 0;
2379}
2380
Michael Chana4636962009-06-08 18:14:43 -07002381static void cnic_ulp_stop(struct cnic_dev *dev)
2382{
2383 struct cnic_local *cp = dev->cnic_priv;
2384 int if_type;
2385
Michael Chan6d7760a2009-07-27 11:25:58 -07002386 if (cp->cnic_uinfo)
2387 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
2388
Michael Chana4636962009-06-08 18:14:43 -07002389 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
2390 struct cnic_ulp_ops *ulp_ops;
2391
Michael Chan681dbd72009-08-14 15:49:46 +00002392 mutex_lock(&cnic_lock);
2393 ulp_ops = cp->ulp_ops[if_type];
2394 if (!ulp_ops) {
2395 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07002396 continue;
Michael Chan681dbd72009-08-14 15:49:46 +00002397 }
2398 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
2399 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07002400
2401 if (test_and_clear_bit(ULP_F_START, &cp->ulp_flags[if_type]))
2402 ulp_ops->cnic_stop(cp->ulp_handle[if_type]);
Michael Chan681dbd72009-08-14 15:49:46 +00002403
2404 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
Michael Chana4636962009-06-08 18:14:43 -07002405 }
Michael Chana4636962009-06-08 18:14:43 -07002406}
2407
2408static void cnic_ulp_start(struct cnic_dev *dev)
2409{
2410 struct cnic_local *cp = dev->cnic_priv;
2411 int if_type;
2412
Michael Chana4636962009-06-08 18:14:43 -07002413 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
2414 struct cnic_ulp_ops *ulp_ops;
2415
Michael Chan681dbd72009-08-14 15:49:46 +00002416 mutex_lock(&cnic_lock);
2417 ulp_ops = cp->ulp_ops[if_type];
2418 if (!ulp_ops || !ulp_ops->cnic_start) {
2419 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07002420 continue;
Michael Chan681dbd72009-08-14 15:49:46 +00002421 }
2422 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
2423 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07002424
2425 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[if_type]))
2426 ulp_ops->cnic_start(cp->ulp_handle[if_type]);
Michael Chan681dbd72009-08-14 15:49:46 +00002427
2428 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
Michael Chana4636962009-06-08 18:14:43 -07002429 }
Michael Chana4636962009-06-08 18:14:43 -07002430}
2431
2432static int cnic_ctl(void *data, struct cnic_ctl_info *info)
2433{
2434 struct cnic_dev *dev = data;
2435
2436 switch (info->cmd) {
2437 case CNIC_CTL_STOP_CMD:
2438 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07002439
2440 cnic_ulp_stop(dev);
2441 cnic_stop_hw(dev);
2442
Michael Chana4636962009-06-08 18:14:43 -07002443 cnic_put(dev);
2444 break;
2445 case CNIC_CTL_START_CMD:
2446 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07002447
2448 if (!cnic_start_hw(dev))
2449 cnic_ulp_start(dev);
2450
Michael Chana4636962009-06-08 18:14:43 -07002451 cnic_put(dev);
2452 break;
Michael Chan71034ba2009-10-10 13:46:59 +00002453 case CNIC_CTL_COMPLETION_CMD: {
2454 u32 cid = BNX2X_SW_CID(info->data.comp.cid);
2455 u32 l5_cid;
2456 struct cnic_local *cp = dev->cnic_priv;
2457
2458 if (cnic_get_l5_cid(cp, cid, &l5_cid) == 0) {
2459 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
2460
2461 ctx->wait_cond = 1;
2462 wake_up(&ctx->waitq);
2463 }
2464 break;
2465 }
Michael Chana4636962009-06-08 18:14:43 -07002466 default:
2467 return -EINVAL;
2468 }
2469 return 0;
2470}
2471
2472static void cnic_ulp_init(struct cnic_dev *dev)
2473{
2474 int i;
2475 struct cnic_local *cp = dev->cnic_priv;
2476
Michael Chana4636962009-06-08 18:14:43 -07002477 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
2478 struct cnic_ulp_ops *ulp_ops;
2479
Michael Chan7fc1ece2009-08-14 15:49:47 +00002480 mutex_lock(&cnic_lock);
2481 ulp_ops = cnic_ulp_tbl[i];
2482 if (!ulp_ops || !ulp_ops->cnic_init) {
2483 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07002484 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00002485 }
2486 ulp_get(ulp_ops);
2487 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07002488
2489 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[i]))
2490 ulp_ops->cnic_init(dev);
2491
Michael Chan7fc1ece2009-08-14 15:49:47 +00002492 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07002493 }
Michael Chana4636962009-06-08 18:14:43 -07002494}
2495
2496static void cnic_ulp_exit(struct cnic_dev *dev)
2497{
2498 int i;
2499 struct cnic_local *cp = dev->cnic_priv;
2500
Michael Chana4636962009-06-08 18:14:43 -07002501 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
2502 struct cnic_ulp_ops *ulp_ops;
2503
Michael Chan7fc1ece2009-08-14 15:49:47 +00002504 mutex_lock(&cnic_lock);
2505 ulp_ops = cnic_ulp_tbl[i];
2506 if (!ulp_ops || !ulp_ops->cnic_exit) {
2507 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07002508 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00002509 }
2510 ulp_get(ulp_ops);
2511 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07002512
2513 if (test_and_clear_bit(ULP_F_INIT, &cp->ulp_flags[i]))
2514 ulp_ops->cnic_exit(dev);
2515
Michael Chan7fc1ece2009-08-14 15:49:47 +00002516 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07002517 }
Michael Chana4636962009-06-08 18:14:43 -07002518}
2519
2520static int cnic_cm_offload_pg(struct cnic_sock *csk)
2521{
2522 struct cnic_dev *dev = csk->dev;
2523 struct l4_kwq_offload_pg *l4kwqe;
2524 struct kwqe *wqes[1];
2525
2526 l4kwqe = (struct l4_kwq_offload_pg *) &csk->kwqe1;
2527 memset(l4kwqe, 0, sizeof(*l4kwqe));
2528 wqes[0] = (struct kwqe *) l4kwqe;
2529
2530 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_OFFLOAD_PG;
2531 l4kwqe->flags =
2532 L4_LAYER_CODE << L4_KWQ_OFFLOAD_PG_LAYER_CODE_SHIFT;
2533 l4kwqe->l2hdr_nbytes = ETH_HLEN;
2534
2535 l4kwqe->da0 = csk->ha[0];
2536 l4kwqe->da1 = csk->ha[1];
2537 l4kwqe->da2 = csk->ha[2];
2538 l4kwqe->da3 = csk->ha[3];
2539 l4kwqe->da4 = csk->ha[4];
2540 l4kwqe->da5 = csk->ha[5];
2541
2542 l4kwqe->sa0 = dev->mac_addr[0];
2543 l4kwqe->sa1 = dev->mac_addr[1];
2544 l4kwqe->sa2 = dev->mac_addr[2];
2545 l4kwqe->sa3 = dev->mac_addr[3];
2546 l4kwqe->sa4 = dev->mac_addr[4];
2547 l4kwqe->sa5 = dev->mac_addr[5];
2548
2549 l4kwqe->etype = ETH_P_IP;
Eddie Waia9736c02010-02-24 14:42:04 +00002550 l4kwqe->ipid_start = DEF_IPID_START;
Michael Chana4636962009-06-08 18:14:43 -07002551 l4kwqe->host_opaque = csk->l5_cid;
2552
2553 if (csk->vlan_id) {
2554 l4kwqe->pg_flags |= L4_KWQ_OFFLOAD_PG_VLAN_TAGGING;
2555 l4kwqe->vlan_tag = csk->vlan_id;
2556 l4kwqe->l2hdr_nbytes += 4;
2557 }
2558
2559 return dev->submit_kwqes(dev, wqes, 1);
2560}
2561
2562static int cnic_cm_update_pg(struct cnic_sock *csk)
2563{
2564 struct cnic_dev *dev = csk->dev;
2565 struct l4_kwq_update_pg *l4kwqe;
2566 struct kwqe *wqes[1];
2567
2568 l4kwqe = (struct l4_kwq_update_pg *) &csk->kwqe1;
2569 memset(l4kwqe, 0, sizeof(*l4kwqe));
2570 wqes[0] = (struct kwqe *) l4kwqe;
2571
2572 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPDATE_PG;
2573 l4kwqe->flags =
2574 L4_LAYER_CODE << L4_KWQ_UPDATE_PG_LAYER_CODE_SHIFT;
2575 l4kwqe->pg_cid = csk->pg_cid;
2576
2577 l4kwqe->da0 = csk->ha[0];
2578 l4kwqe->da1 = csk->ha[1];
2579 l4kwqe->da2 = csk->ha[2];
2580 l4kwqe->da3 = csk->ha[3];
2581 l4kwqe->da4 = csk->ha[4];
2582 l4kwqe->da5 = csk->ha[5];
2583
2584 l4kwqe->pg_host_opaque = csk->l5_cid;
2585 l4kwqe->pg_valids = L4_KWQ_UPDATE_PG_VALIDS_DA;
2586
2587 return dev->submit_kwqes(dev, wqes, 1);
2588}
2589
2590static int cnic_cm_upload_pg(struct cnic_sock *csk)
2591{
2592 struct cnic_dev *dev = csk->dev;
2593 struct l4_kwq_upload *l4kwqe;
2594 struct kwqe *wqes[1];
2595
2596 l4kwqe = (struct l4_kwq_upload *) &csk->kwqe1;
2597 memset(l4kwqe, 0, sizeof(*l4kwqe));
2598 wqes[0] = (struct kwqe *) l4kwqe;
2599
2600 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPLOAD_PG;
2601 l4kwqe->flags =
2602 L4_LAYER_CODE << L4_KWQ_UPLOAD_LAYER_CODE_SHIFT;
2603 l4kwqe->cid = csk->pg_cid;
2604
2605 return dev->submit_kwqes(dev, wqes, 1);
2606}
2607
2608static int cnic_cm_conn_req(struct cnic_sock *csk)
2609{
2610 struct cnic_dev *dev = csk->dev;
2611 struct l4_kwq_connect_req1 *l4kwqe1;
2612 struct l4_kwq_connect_req2 *l4kwqe2;
2613 struct l4_kwq_connect_req3 *l4kwqe3;
2614 struct kwqe *wqes[3];
2615 u8 tcp_flags = 0;
2616 int num_wqes = 2;
2617
2618 l4kwqe1 = (struct l4_kwq_connect_req1 *) &csk->kwqe1;
2619 l4kwqe2 = (struct l4_kwq_connect_req2 *) &csk->kwqe2;
2620 l4kwqe3 = (struct l4_kwq_connect_req3 *) &csk->kwqe3;
2621 memset(l4kwqe1, 0, sizeof(*l4kwqe1));
2622 memset(l4kwqe2, 0, sizeof(*l4kwqe2));
2623 memset(l4kwqe3, 0, sizeof(*l4kwqe3));
2624
2625 l4kwqe3->op_code = L4_KWQE_OPCODE_VALUE_CONNECT3;
2626 l4kwqe3->flags =
2627 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ3_LAYER_CODE_SHIFT;
2628 l4kwqe3->ka_timeout = csk->ka_timeout;
2629 l4kwqe3->ka_interval = csk->ka_interval;
2630 l4kwqe3->ka_max_probe_count = csk->ka_max_probe_count;
2631 l4kwqe3->tos = csk->tos;
2632 l4kwqe3->ttl = csk->ttl;
2633 l4kwqe3->snd_seq_scale = csk->snd_seq_scale;
2634 l4kwqe3->pmtu = csk->mtu;
2635 l4kwqe3->rcv_buf = csk->rcv_buf;
2636 l4kwqe3->snd_buf = csk->snd_buf;
2637 l4kwqe3->seed = csk->seed;
2638
2639 wqes[0] = (struct kwqe *) l4kwqe1;
2640 if (test_bit(SK_F_IPV6, &csk->flags)) {
2641 wqes[1] = (struct kwqe *) l4kwqe2;
2642 wqes[2] = (struct kwqe *) l4kwqe3;
2643 num_wqes = 3;
2644
2645 l4kwqe1->conn_flags = L4_KWQ_CONNECT_REQ1_IP_V6;
2646 l4kwqe2->op_code = L4_KWQE_OPCODE_VALUE_CONNECT2;
2647 l4kwqe2->flags =
2648 L4_KWQ_CONNECT_REQ2_LINKED_WITH_NEXT |
2649 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ2_LAYER_CODE_SHIFT;
2650 l4kwqe2->src_ip_v6_2 = be32_to_cpu(csk->src_ip[1]);
2651 l4kwqe2->src_ip_v6_3 = be32_to_cpu(csk->src_ip[2]);
2652 l4kwqe2->src_ip_v6_4 = be32_to_cpu(csk->src_ip[3]);
2653 l4kwqe2->dst_ip_v6_2 = be32_to_cpu(csk->dst_ip[1]);
2654 l4kwqe2->dst_ip_v6_3 = be32_to_cpu(csk->dst_ip[2]);
2655 l4kwqe2->dst_ip_v6_4 = be32_to_cpu(csk->dst_ip[3]);
2656 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct ipv6hdr) -
2657 sizeof(struct tcphdr);
2658 } else {
2659 wqes[1] = (struct kwqe *) l4kwqe3;
2660 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct iphdr) -
2661 sizeof(struct tcphdr);
2662 }
2663
2664 l4kwqe1->op_code = L4_KWQE_OPCODE_VALUE_CONNECT1;
2665 l4kwqe1->flags =
2666 (L4_LAYER_CODE << L4_KWQ_CONNECT_REQ1_LAYER_CODE_SHIFT) |
2667 L4_KWQ_CONNECT_REQ3_LINKED_WITH_NEXT;
2668 l4kwqe1->cid = csk->cid;
2669 l4kwqe1->pg_cid = csk->pg_cid;
2670 l4kwqe1->src_ip = be32_to_cpu(csk->src_ip[0]);
2671 l4kwqe1->dst_ip = be32_to_cpu(csk->dst_ip[0]);
2672 l4kwqe1->src_port = be16_to_cpu(csk->src_port);
2673 l4kwqe1->dst_port = be16_to_cpu(csk->dst_port);
2674 if (csk->tcp_flags & SK_TCP_NO_DELAY_ACK)
2675 tcp_flags |= L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK;
2676 if (csk->tcp_flags & SK_TCP_KEEP_ALIVE)
2677 tcp_flags |= L4_KWQ_CONNECT_REQ1_KEEP_ALIVE;
2678 if (csk->tcp_flags & SK_TCP_NAGLE)
2679 tcp_flags |= L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE;
2680 if (csk->tcp_flags & SK_TCP_TIMESTAMP)
2681 tcp_flags |= L4_KWQ_CONNECT_REQ1_TIME_STAMP;
2682 if (csk->tcp_flags & SK_TCP_SACK)
2683 tcp_flags |= L4_KWQ_CONNECT_REQ1_SACK;
2684 if (csk->tcp_flags & SK_TCP_SEG_SCALING)
2685 tcp_flags |= L4_KWQ_CONNECT_REQ1_SEG_SCALING;
2686
2687 l4kwqe1->tcp_flags = tcp_flags;
2688
2689 return dev->submit_kwqes(dev, wqes, num_wqes);
2690}
2691
2692static int cnic_cm_close_req(struct cnic_sock *csk)
2693{
2694 struct cnic_dev *dev = csk->dev;
2695 struct l4_kwq_close_req *l4kwqe;
2696 struct kwqe *wqes[1];
2697
2698 l4kwqe = (struct l4_kwq_close_req *) &csk->kwqe2;
2699 memset(l4kwqe, 0, sizeof(*l4kwqe));
2700 wqes[0] = (struct kwqe *) l4kwqe;
2701
2702 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_CLOSE;
2703 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_CLOSE_REQ_LAYER_CODE_SHIFT;
2704 l4kwqe->cid = csk->cid;
2705
2706 return dev->submit_kwqes(dev, wqes, 1);
2707}
2708
2709static int cnic_cm_abort_req(struct cnic_sock *csk)
2710{
2711 struct cnic_dev *dev = csk->dev;
2712 struct l4_kwq_reset_req *l4kwqe;
2713 struct kwqe *wqes[1];
2714
2715 l4kwqe = (struct l4_kwq_reset_req *) &csk->kwqe2;
2716 memset(l4kwqe, 0, sizeof(*l4kwqe));
2717 wqes[0] = (struct kwqe *) l4kwqe;
2718
2719 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_RESET;
2720 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_RESET_REQ_LAYER_CODE_SHIFT;
2721 l4kwqe->cid = csk->cid;
2722
2723 return dev->submit_kwqes(dev, wqes, 1);
2724}
2725
2726static int cnic_cm_create(struct cnic_dev *dev, int ulp_type, u32 cid,
2727 u32 l5_cid, struct cnic_sock **csk, void *context)
2728{
2729 struct cnic_local *cp = dev->cnic_priv;
2730 struct cnic_sock *csk1;
2731
2732 if (l5_cid >= MAX_CM_SK_TBL_SZ)
2733 return -EINVAL;
2734
2735 csk1 = &cp->csk_tbl[l5_cid];
2736 if (atomic_read(&csk1->ref_count))
2737 return -EAGAIN;
2738
2739 if (test_and_set_bit(SK_F_INUSE, &csk1->flags))
2740 return -EBUSY;
2741
2742 csk1->dev = dev;
2743 csk1->cid = cid;
2744 csk1->l5_cid = l5_cid;
2745 csk1->ulp_type = ulp_type;
2746 csk1->context = context;
2747
2748 csk1->ka_timeout = DEF_KA_TIMEOUT;
2749 csk1->ka_interval = DEF_KA_INTERVAL;
2750 csk1->ka_max_probe_count = DEF_KA_MAX_PROBE_COUNT;
2751 csk1->tos = DEF_TOS;
2752 csk1->ttl = DEF_TTL;
2753 csk1->snd_seq_scale = DEF_SND_SEQ_SCALE;
2754 csk1->rcv_buf = DEF_RCV_BUF;
2755 csk1->snd_buf = DEF_SND_BUF;
2756 csk1->seed = DEF_SEED;
2757
2758 *csk = csk1;
2759 return 0;
2760}
2761
2762static void cnic_cm_cleanup(struct cnic_sock *csk)
2763{
2764 if (csk->src_port) {
2765 struct cnic_dev *dev = csk->dev;
2766 struct cnic_local *cp = dev->cnic_priv;
2767
2768 cnic_free_id(&cp->csk_port_tbl, csk->src_port);
2769 csk->src_port = 0;
2770 }
2771}
2772
2773static void cnic_close_conn(struct cnic_sock *csk)
2774{
2775 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags)) {
2776 cnic_cm_upload_pg(csk);
2777 clear_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
2778 }
2779 cnic_cm_cleanup(csk);
2780}
2781
2782static int cnic_cm_destroy(struct cnic_sock *csk)
2783{
2784 if (!cnic_in_use(csk))
2785 return -EINVAL;
2786
2787 csk_hold(csk);
2788 clear_bit(SK_F_INUSE, &csk->flags);
2789 smp_mb__after_clear_bit();
2790 while (atomic_read(&csk->ref_count) != 1)
2791 msleep(1);
2792 cnic_cm_cleanup(csk);
2793
2794 csk->flags = 0;
2795 csk_put(csk);
2796 return 0;
2797}
2798
2799static inline u16 cnic_get_vlan(struct net_device *dev,
2800 struct net_device **vlan_dev)
2801{
2802 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2803 *vlan_dev = vlan_dev_real_dev(dev);
2804 return vlan_dev_vlan_id(dev);
2805 }
2806 *vlan_dev = dev;
2807 return 0;
2808}
2809
2810static int cnic_get_v4_route(struct sockaddr_in *dst_addr,
2811 struct dst_entry **dst)
2812{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07002813#if defined(CONFIG_INET)
Michael Chana4636962009-06-08 18:14:43 -07002814 struct flowi fl;
2815 int err;
2816 struct rtable *rt;
2817
2818 memset(&fl, 0, sizeof(fl));
2819 fl.nl_u.ip4_u.daddr = dst_addr->sin_addr.s_addr;
2820
2821 err = ip_route_output_key(&init_net, &rt, &fl);
2822 if (!err)
Changli Gaod8d1f302010-06-10 23:31:35 -07002823 *dst = &rt->dst;
Michael Chana4636962009-06-08 18:14:43 -07002824 return err;
Randy Dunlapfaea56c2009-06-12 11:43:48 -07002825#else
2826 return -ENETUNREACH;
2827#endif
Michael Chana4636962009-06-08 18:14:43 -07002828}
2829
2830static int cnic_get_v6_route(struct sockaddr_in6 *dst_addr,
2831 struct dst_entry **dst)
2832{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07002833#if defined(CONFIG_IPV6) || (defined(CONFIG_IPV6_MODULE) && defined(MODULE))
Michael Chana4636962009-06-08 18:14:43 -07002834 struct flowi fl;
2835
2836 memset(&fl, 0, sizeof(fl));
2837 ipv6_addr_copy(&fl.fl6_dst, &dst_addr->sin6_addr);
2838 if (ipv6_addr_type(&fl.fl6_dst) & IPV6_ADDR_LINKLOCAL)
2839 fl.oif = dst_addr->sin6_scope_id;
2840
2841 *dst = ip6_route_output(&init_net, NULL, &fl);
2842 if (*dst)
2843 return 0;
2844#endif
2845
2846 return -ENETUNREACH;
2847}
2848
2849static struct cnic_dev *cnic_cm_select_dev(struct sockaddr_in *dst_addr,
2850 int ulp_type)
2851{
2852 struct cnic_dev *dev = NULL;
2853 struct dst_entry *dst;
2854 struct net_device *netdev = NULL;
2855 int err = -ENETUNREACH;
2856
2857 if (dst_addr->sin_family == AF_INET)
2858 err = cnic_get_v4_route(dst_addr, &dst);
2859 else if (dst_addr->sin_family == AF_INET6) {
2860 struct sockaddr_in6 *dst_addr6 =
2861 (struct sockaddr_in6 *) dst_addr;
2862
2863 err = cnic_get_v6_route(dst_addr6, &dst);
2864 } else
2865 return NULL;
2866
2867 if (err)
2868 return NULL;
2869
2870 if (!dst->dev)
2871 goto done;
2872
2873 cnic_get_vlan(dst->dev, &netdev);
2874
2875 dev = cnic_from_netdev(netdev);
2876
2877done:
2878 dst_release(dst);
2879 if (dev)
2880 cnic_put(dev);
2881 return dev;
2882}
2883
2884static int cnic_resolve_addr(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
2885{
2886 struct cnic_dev *dev = csk->dev;
2887 struct cnic_local *cp = dev->cnic_priv;
2888
2889 return cnic_send_nlmsg(cp, ISCSI_KEVENT_PATH_REQ, csk);
2890}
2891
2892static int cnic_get_route(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
2893{
2894 struct cnic_dev *dev = csk->dev;
2895 struct cnic_local *cp = dev->cnic_priv;
Michael Chanc76284a2010-02-24 14:42:07 +00002896 int is_v6, rc = 0;
2897 struct dst_entry *dst = NULL;
Michael Chana4636962009-06-08 18:14:43 -07002898 struct net_device *realdev;
2899 u32 local_port;
2900
2901 if (saddr->local.v6.sin6_family == AF_INET6 &&
2902 saddr->remote.v6.sin6_family == AF_INET6)
2903 is_v6 = 1;
2904 else if (saddr->local.v4.sin_family == AF_INET &&
2905 saddr->remote.v4.sin_family == AF_INET)
2906 is_v6 = 0;
2907 else
2908 return -EINVAL;
2909
2910 clear_bit(SK_F_IPV6, &csk->flags);
2911
2912 if (is_v6) {
Michael Chana4636962009-06-08 18:14:43 -07002913 set_bit(SK_F_IPV6, &csk->flags);
Michael Chanc76284a2010-02-24 14:42:07 +00002914 cnic_get_v6_route(&saddr->remote.v6, &dst);
Michael Chana4636962009-06-08 18:14:43 -07002915
2916 memcpy(&csk->dst_ip[0], &saddr->remote.v6.sin6_addr,
2917 sizeof(struct in6_addr));
2918 csk->dst_port = saddr->remote.v6.sin6_port;
2919 local_port = saddr->local.v6.sin6_port;
Michael Chana4636962009-06-08 18:14:43 -07002920
2921 } else {
Michael Chanc76284a2010-02-24 14:42:07 +00002922 cnic_get_v4_route(&saddr->remote.v4, &dst);
Michael Chana4636962009-06-08 18:14:43 -07002923
2924 csk->dst_ip[0] = saddr->remote.v4.sin_addr.s_addr;
2925 csk->dst_port = saddr->remote.v4.sin_port;
2926 local_port = saddr->local.v4.sin_port;
2927 }
2928
Michael Chanc76284a2010-02-24 14:42:07 +00002929 csk->vlan_id = 0;
2930 csk->mtu = dev->netdev->mtu;
2931 if (dst && dst->dev) {
2932 u16 vlan = cnic_get_vlan(dst->dev, &realdev);
2933 if (realdev == dev->netdev) {
2934 csk->vlan_id = vlan;
2935 csk->mtu = dst_mtu(dst);
2936 }
2937 }
Michael Chana4636962009-06-08 18:14:43 -07002938
2939 if (local_port >= CNIC_LOCAL_PORT_MIN &&
2940 local_port < CNIC_LOCAL_PORT_MAX) {
2941 if (cnic_alloc_id(&cp->csk_port_tbl, local_port))
2942 local_port = 0;
2943 } else
2944 local_port = 0;
2945
2946 if (!local_port) {
2947 local_port = cnic_alloc_new_id(&cp->csk_port_tbl);
2948 if (local_port == -1) {
2949 rc = -ENOMEM;
2950 goto err_out;
2951 }
2952 }
2953 csk->src_port = local_port;
2954
Michael Chana4636962009-06-08 18:14:43 -07002955err_out:
2956 dst_release(dst);
2957 return rc;
2958}
2959
2960static void cnic_init_csk_state(struct cnic_sock *csk)
2961{
2962 csk->state = 0;
2963 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
2964 clear_bit(SK_F_CLOSING, &csk->flags);
2965}
2966
2967static int cnic_cm_connect(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
2968{
2969 int err = 0;
2970
2971 if (!cnic_in_use(csk))
2972 return -EINVAL;
2973
2974 if (test_and_set_bit(SK_F_CONNECT_START, &csk->flags))
2975 return -EINVAL;
2976
2977 cnic_init_csk_state(csk);
2978
2979 err = cnic_get_route(csk, saddr);
2980 if (err)
2981 goto err_out;
2982
2983 err = cnic_resolve_addr(csk, saddr);
2984 if (!err)
2985 return 0;
2986
2987err_out:
2988 clear_bit(SK_F_CONNECT_START, &csk->flags);
2989 return err;
2990}
2991
2992static int cnic_cm_abort(struct cnic_sock *csk)
2993{
2994 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chan7b34a462010-06-15 08:57:03 +00002995 u32 opcode = L4_KCQE_OPCODE_VALUE_RESET_COMP;
Michael Chana4636962009-06-08 18:14:43 -07002996
2997 if (!cnic_in_use(csk))
2998 return -EINVAL;
2999
3000 if (cnic_abort_prep(csk))
3001 return cnic_cm_abort_req(csk);
3002
3003 /* Getting here means that we haven't started connect, or
3004 * connect was not successful.
3005 */
3006
Michael Chana4636962009-06-08 18:14:43 -07003007 cp->close_conn(csk, opcode);
Michael Chan7b34a462010-06-15 08:57:03 +00003008 if (csk->state != opcode)
3009 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003010
3011 return 0;
3012}
3013
3014static int cnic_cm_close(struct cnic_sock *csk)
3015{
3016 if (!cnic_in_use(csk))
3017 return -EINVAL;
3018
3019 if (cnic_close_prep(csk)) {
3020 csk->state = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
3021 return cnic_cm_close_req(csk);
Michael Chaned99daa52010-06-15 08:57:00 +00003022 } else {
3023 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003024 }
3025 return 0;
3026}
3027
3028static void cnic_cm_upcall(struct cnic_local *cp, struct cnic_sock *csk,
3029 u8 opcode)
3030{
3031 struct cnic_ulp_ops *ulp_ops;
3032 int ulp_type = csk->ulp_type;
3033
3034 rcu_read_lock();
3035 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
3036 if (ulp_ops) {
3037 if (opcode == L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE)
3038 ulp_ops->cm_connect_complete(csk);
3039 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
3040 ulp_ops->cm_close_complete(csk);
3041 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED)
3042 ulp_ops->cm_remote_abort(csk);
3043 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_COMP)
3044 ulp_ops->cm_abort_complete(csk);
3045 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED)
3046 ulp_ops->cm_remote_close(csk);
3047 }
3048 rcu_read_unlock();
3049}
3050
3051static int cnic_cm_set_pg(struct cnic_sock *csk)
3052{
3053 if (cnic_offld_prep(csk)) {
3054 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3055 cnic_cm_update_pg(csk);
3056 else
3057 cnic_cm_offload_pg(csk);
3058 }
3059 return 0;
3060}
3061
3062static void cnic_cm_process_offld_pg(struct cnic_dev *dev, struct l4_kcq *kcqe)
3063{
3064 struct cnic_local *cp = dev->cnic_priv;
3065 u32 l5_cid = kcqe->pg_host_opaque;
3066 u8 opcode = kcqe->op_code;
3067 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
3068
3069 csk_hold(csk);
3070 if (!cnic_in_use(csk))
3071 goto done;
3072
3073 if (opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3074 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3075 goto done;
3076 }
Eddie Waia9736c02010-02-24 14:42:04 +00003077 /* Possible PG kcqe status: SUCCESS, OFFLOADED_PG, or CTX_ALLOC_FAIL */
3078 if (kcqe->status == L4_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAIL) {
3079 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3080 cnic_cm_upcall(cp, csk,
3081 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3082 goto done;
3083 }
3084
Michael Chana4636962009-06-08 18:14:43 -07003085 csk->pg_cid = kcqe->pg_cid;
3086 set_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3087 cnic_cm_conn_req(csk);
3088
3089done:
3090 csk_put(csk);
3091}
3092
3093static void cnic_cm_process_kcqe(struct cnic_dev *dev, struct kcqe *kcqe)
3094{
3095 struct cnic_local *cp = dev->cnic_priv;
3096 struct l4_kcq *l4kcqe = (struct l4_kcq *) kcqe;
3097 u8 opcode = l4kcqe->op_code;
3098 u32 l5_cid;
3099 struct cnic_sock *csk;
3100
3101 if (opcode == L4_KCQE_OPCODE_VALUE_OFFLOAD_PG ||
3102 opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3103 cnic_cm_process_offld_pg(dev, l4kcqe);
3104 return;
3105 }
3106
3107 l5_cid = l4kcqe->conn_id;
3108 if (opcode & 0x80)
3109 l5_cid = l4kcqe->cid;
3110 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3111 return;
3112
3113 csk = &cp->csk_tbl[l5_cid];
3114 csk_hold(csk);
3115
3116 if (!cnic_in_use(csk)) {
3117 csk_put(csk);
3118 return;
3119 }
3120
3121 switch (opcode) {
Eddie Waia9736c02010-02-24 14:42:04 +00003122 case L5CM_RAMROD_CMD_ID_TCP_CONNECT:
3123 if (l4kcqe->status != 0) {
3124 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3125 cnic_cm_upcall(cp, csk,
3126 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3127 }
3128 break;
Michael Chana4636962009-06-08 18:14:43 -07003129 case L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE:
3130 if (l4kcqe->status == 0)
3131 set_bit(SK_F_OFFLD_COMPLETE, &csk->flags);
3132
3133 smp_mb__before_clear_bit();
3134 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3135 cnic_cm_upcall(cp, csk, opcode);
3136 break;
3137
3138 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
Michael Chana4636962009-06-08 18:14:43 -07003139 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
3140 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan71034ba2009-10-10 13:46:59 +00003141 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
3142 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
Michael Chana4636962009-06-08 18:14:43 -07003143 cp->close_conn(csk, opcode);
3144 break;
3145
3146 case L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED:
3147 cnic_cm_upcall(cp, csk, opcode);
3148 break;
3149 }
3150 csk_put(csk);
3151}
3152
3153static void cnic_cm_indicate_kcqe(void *data, struct kcqe *kcqe[], u32 num)
3154{
3155 struct cnic_dev *dev = data;
3156 int i;
3157
3158 for (i = 0; i < num; i++)
3159 cnic_cm_process_kcqe(dev, kcqe[i]);
3160}
3161
3162static struct cnic_ulp_ops cm_ulp_ops = {
3163 .indicate_kcqes = cnic_cm_indicate_kcqe,
3164};
3165
3166static void cnic_cm_free_mem(struct cnic_dev *dev)
3167{
3168 struct cnic_local *cp = dev->cnic_priv;
3169
3170 kfree(cp->csk_tbl);
3171 cp->csk_tbl = NULL;
3172 cnic_free_id_tbl(&cp->csk_port_tbl);
3173}
3174
3175static int cnic_cm_alloc_mem(struct cnic_dev *dev)
3176{
3177 struct cnic_local *cp = dev->cnic_priv;
3178
3179 cp->csk_tbl = kzalloc(sizeof(struct cnic_sock) * MAX_CM_SK_TBL_SZ,
3180 GFP_KERNEL);
3181 if (!cp->csk_tbl)
3182 return -ENOMEM;
3183
3184 if (cnic_init_id_tbl(&cp->csk_port_tbl, CNIC_LOCAL_PORT_RANGE,
3185 CNIC_LOCAL_PORT_MIN)) {
3186 cnic_cm_free_mem(dev);
3187 return -ENOMEM;
3188 }
3189 return 0;
3190}
3191
3192static int cnic_ready_to_close(struct cnic_sock *csk, u32 opcode)
3193{
Michael Chan943189f2010-06-15 08:57:02 +00003194 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
3195 /* Unsolicited RESET_COMP or RESET_RECEIVED */
3196 opcode = L4_KCQE_OPCODE_VALUE_RESET_RECEIVED;
3197 csk->state = opcode;
Michael Chana1e621b2010-06-15 08:57:01 +00003198 }
Michael Chan943189f2010-06-15 08:57:02 +00003199
3200 /* 1. If event opcode matches the expected event in csk->state
3201 * 2. If the expected event is CLOSE_COMP, we accept any event
Michael Chan7b34a462010-06-15 08:57:03 +00003202 * 3. If the expected event is 0, meaning the connection was never
3203 * never established, we accept the opcode from cm_abort.
Michael Chan943189f2010-06-15 08:57:02 +00003204 */
Michael Chan7b34a462010-06-15 08:57:03 +00003205 if (opcode == csk->state || csk->state == 0 ||
3206 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP) {
3207 if (!test_and_set_bit(SK_F_CLOSING, &csk->flags)) {
3208 if (csk->state == 0)
3209 csk->state = opcode;
Michael Chana4636962009-06-08 18:14:43 -07003210 return 1;
Michael Chan7b34a462010-06-15 08:57:03 +00003211 }
Michael Chana4636962009-06-08 18:14:43 -07003212 }
3213 return 0;
3214}
3215
3216static void cnic_close_bnx2_conn(struct cnic_sock *csk, u32 opcode)
3217{
3218 struct cnic_dev *dev = csk->dev;
3219 struct cnic_local *cp = dev->cnic_priv;
3220
Michael Chana1e621b2010-06-15 08:57:01 +00003221 if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED) {
3222 cnic_cm_upcall(cp, csk, opcode);
3223 return;
3224 }
3225
Michael Chana4636962009-06-08 18:14:43 -07003226 clear_bit(SK_F_CONNECT_START, &csk->flags);
Eddie Wai66883e92010-02-24 14:42:05 +00003227 cnic_close_conn(csk);
Michael Chan7b34a462010-06-15 08:57:03 +00003228 csk->state = opcode;
Eddie Wai66883e92010-02-24 14:42:05 +00003229 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07003230}
3231
3232static void cnic_cm_stop_bnx2_hw(struct cnic_dev *dev)
3233{
3234}
3235
3236static int cnic_cm_init_bnx2_hw(struct cnic_dev *dev)
3237{
3238 u32 seed;
3239
3240 get_random_bytes(&seed, 4);
3241 cnic_ctx_wr(dev, 45, 0, seed);
3242 return 0;
3243}
3244
Michael Chan71034ba2009-10-10 13:46:59 +00003245static void cnic_close_bnx2x_conn(struct cnic_sock *csk, u32 opcode)
3246{
3247 struct cnic_dev *dev = csk->dev;
3248 struct cnic_local *cp = dev->cnic_priv;
3249 struct cnic_context *ctx = &cp->ctx_tbl[csk->l5_cid];
3250 union l5cm_specific_data l5_data;
3251 u32 cmd = 0;
3252 int close_complete = 0;
3253
3254 switch (opcode) {
3255 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
3256 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
3257 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan7b34a462010-06-15 08:57:03 +00003258 if (cnic_ready_to_close(csk, opcode)) {
3259 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3260 cmd = L5CM_RAMROD_CMD_ID_SEARCHER_DELETE;
3261 else
3262 close_complete = 1;
3263 }
Michael Chan71034ba2009-10-10 13:46:59 +00003264 break;
3265 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
3266 cmd = L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD;
3267 break;
3268 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
3269 close_complete = 1;
3270 break;
3271 }
3272 if (cmd) {
3273 memset(&l5_data, 0, sizeof(l5_data));
3274
3275 cnic_submit_kwqe_16(dev, cmd, csk->cid, ISCSI_CONNECTION_TYPE,
3276 &l5_data);
3277 } else if (close_complete) {
3278 ctx->timestamp = jiffies;
3279 cnic_close_conn(csk);
3280 cnic_cm_upcall(cp, csk, csk->state);
3281 }
3282}
3283
3284static void cnic_cm_stop_bnx2x_hw(struct cnic_dev *dev)
3285{
3286}
3287
3288static int cnic_cm_init_bnx2x_hw(struct cnic_dev *dev)
3289{
3290 struct cnic_local *cp = dev->cnic_priv;
3291 int func = CNIC_FUNC(cp);
3292
3293 cnic_init_bnx2x_mac(dev);
3294 cnic_bnx2x_set_tcp_timestamp(dev, 1);
3295
3296 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
3297 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(func), 0);
3298
3299 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
3300 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_ENABLED_OFFSET(func), 1);
3301 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
3302 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_MAX_COUNT_OFFSET(func),
3303 DEF_MAX_DA_COUNT);
3304
3305 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
3306 XSTORM_ISCSI_TCP_VARS_TTL_OFFSET(func), DEF_TTL);
3307 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
3308 XSTORM_ISCSI_TCP_VARS_TOS_OFFSET(func), DEF_TOS);
3309 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
3310 XSTORM_ISCSI_TCP_VARS_ADV_WND_SCL_OFFSET(func), 2);
3311 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
3312 XSTORM_TCP_TX_SWS_TIMER_VAL_OFFSET(func), DEF_SWS_TIMER);
3313
3314 CNIC_WR(dev, BAR_TSTRORM_INTMEM + TSTORM_TCP_MAX_CWND_OFFSET(func),
3315 DEF_MAX_CWND);
3316 return 0;
3317}
3318
Michael Chana4636962009-06-08 18:14:43 -07003319static int cnic_cm_open(struct cnic_dev *dev)
3320{
3321 struct cnic_local *cp = dev->cnic_priv;
3322 int err;
3323
3324 err = cnic_cm_alloc_mem(dev);
3325 if (err)
3326 return err;
3327
3328 err = cp->start_cm(dev);
3329
3330 if (err)
3331 goto err_out;
3332
3333 dev->cm_create = cnic_cm_create;
3334 dev->cm_destroy = cnic_cm_destroy;
3335 dev->cm_connect = cnic_cm_connect;
3336 dev->cm_abort = cnic_cm_abort;
3337 dev->cm_close = cnic_cm_close;
3338 dev->cm_select_dev = cnic_cm_select_dev;
3339
3340 cp->ulp_handle[CNIC_ULP_L4] = dev;
3341 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], &cm_ulp_ops);
3342 return 0;
3343
3344err_out:
3345 cnic_cm_free_mem(dev);
3346 return err;
3347}
3348
3349static int cnic_cm_shutdown(struct cnic_dev *dev)
3350{
3351 struct cnic_local *cp = dev->cnic_priv;
3352 int i;
3353
3354 cp->stop_cm(dev);
3355
3356 if (!cp->csk_tbl)
3357 return 0;
3358
3359 for (i = 0; i < MAX_CM_SK_TBL_SZ; i++) {
3360 struct cnic_sock *csk = &cp->csk_tbl[i];
3361
3362 clear_bit(SK_F_INUSE, &csk->flags);
3363 cnic_cm_cleanup(csk);
3364 }
3365 cnic_cm_free_mem(dev);
3366
3367 return 0;
3368}
3369
3370static void cnic_init_context(struct cnic_dev *dev, u32 cid)
3371{
Michael Chana4636962009-06-08 18:14:43 -07003372 u32 cid_addr;
3373 int i;
3374
Michael Chana4636962009-06-08 18:14:43 -07003375 cid_addr = GET_CID_ADDR(cid);
3376
3377 for (i = 0; i < CTX_SIZE; i += 4)
3378 cnic_ctx_wr(dev, cid_addr, i, 0);
3379}
3380
3381static int cnic_setup_5709_context(struct cnic_dev *dev, int valid)
3382{
3383 struct cnic_local *cp = dev->cnic_priv;
3384 int ret = 0, i;
3385 u32 valid_bit = valid ? BNX2_CTX_HOST_PAGE_TBL_DATA0_VALID : 0;
3386
3387 if (CHIP_NUM(cp) != CHIP_NUM_5709)
3388 return 0;
3389
3390 for (i = 0; i < cp->ctx_blks; i++) {
3391 int j;
3392 u32 idx = cp->ctx_arr[i].cid / cp->cids_per_blk;
3393 u32 val;
3394
3395 memset(cp->ctx_arr[i].ctx, 0, BCM_PAGE_SIZE);
3396
3397 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA0,
3398 (cp->ctx_arr[i].mapping & 0xffffffff) | valid_bit);
3399 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA1,
3400 (u64) cp->ctx_arr[i].mapping >> 32);
3401 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL, idx |
3402 BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ);
3403 for (j = 0; j < 10; j++) {
3404
3405 val = CNIC_RD(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL);
3406 if (!(val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ))
3407 break;
3408 udelay(5);
3409 }
3410 if (val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ) {
3411 ret = -EBUSY;
3412 break;
3413 }
3414 }
3415 return ret;
3416}
3417
3418static void cnic_free_irq(struct cnic_dev *dev)
3419{
3420 struct cnic_local *cp = dev->cnic_priv;
3421 struct cnic_eth_dev *ethdev = cp->ethdev;
3422
3423 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
3424 cp->disable_int_sync(dev);
3425 tasklet_disable(&cp->cnic_irq_task);
3426 free_irq(ethdev->irq_arr[0].vector, dev);
3427 }
3428}
3429
3430static int cnic_init_bnx2_irq(struct cnic_dev *dev)
3431{
3432 struct cnic_local *cp = dev->cnic_priv;
3433 struct cnic_eth_dev *ethdev = cp->ethdev;
3434
3435 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
3436 int err, i = 0;
3437 int sblk_num = cp->status_blk_num;
3438 u32 base = ((sblk_num - 1) * BNX2_HC_SB_CONFIG_SIZE) +
3439 BNX2_HC_SB_CONFIG_1;
3440
3441 CNIC_WR(dev, base, BNX2_HC_SB_CONFIG_1_ONE_SHOT);
3442
3443 CNIC_WR(dev, base + BNX2_HC_COMP_PROD_TRIP_OFF, (2 << 16) | 8);
3444 CNIC_WR(dev, base + BNX2_HC_COM_TICKS_OFF, (64 << 16) | 220);
3445 CNIC_WR(dev, base + BNX2_HC_CMD_TICKS_OFF, (64 << 16) | 220);
3446
Michael Chana4dde3a2010-02-24 14:42:08 +00003447 cp->last_status_idx = cp->status_blk.bnx2->status_idx;
Joe Perches164165d2009-11-19 09:30:10 +00003448 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2_msix,
Michael Chana4636962009-06-08 18:14:43 -07003449 (unsigned long) dev);
3450 err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0,
3451 "cnic", dev);
3452 if (err) {
3453 tasklet_disable(&cp->cnic_irq_task);
3454 return err;
3455 }
Michael Chana4dde3a2010-02-24 14:42:08 +00003456 while (cp->status_blk.bnx2->status_completion_producer_index &&
Michael Chana4636962009-06-08 18:14:43 -07003457 i < 10) {
3458 CNIC_WR(dev, BNX2_HC_COALESCE_NOW,
3459 1 << (11 + sblk_num));
3460 udelay(10);
3461 i++;
3462 barrier();
3463 }
Michael Chana4dde3a2010-02-24 14:42:08 +00003464 if (cp->status_blk.bnx2->status_completion_producer_index) {
Michael Chana4636962009-06-08 18:14:43 -07003465 cnic_free_irq(dev);
3466 goto failed;
3467 }
3468
3469 } else {
Michael Chana4dde3a2010-02-24 14:42:08 +00003470 struct status_block *sblk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07003471 u32 hc_cmd = CNIC_RD(dev, BNX2_HC_COMMAND);
3472 int i = 0;
3473
3474 while (sblk->status_completion_producer_index && i < 10) {
3475 CNIC_WR(dev, BNX2_HC_COMMAND,
3476 hc_cmd | BNX2_HC_COMMAND_COAL_NOW_WO_INT);
3477 udelay(10);
3478 i++;
3479 barrier();
3480 }
3481 if (sblk->status_completion_producer_index)
3482 goto failed;
3483
3484 }
3485 return 0;
3486
3487failed:
Joe Perchesddf79b22010-02-17 15:01:54 +00003488 netdev_err(dev->netdev, "KCQ index not resetting to 0\n");
Michael Chana4636962009-06-08 18:14:43 -07003489 return -EBUSY;
3490}
3491
3492static void cnic_enable_bnx2_int(struct cnic_dev *dev)
3493{
3494 struct cnic_local *cp = dev->cnic_priv;
3495 struct cnic_eth_dev *ethdev = cp->ethdev;
3496
3497 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
3498 return;
3499
3500 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
3501 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
3502}
3503
3504static void cnic_disable_bnx2_int_sync(struct cnic_dev *dev)
3505{
3506 struct cnic_local *cp = dev->cnic_priv;
3507 struct cnic_eth_dev *ethdev = cp->ethdev;
3508
3509 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
3510 return;
3511
3512 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
3513 BNX2_PCICFG_INT_ACK_CMD_MASK_INT);
3514 CNIC_RD(dev, BNX2_PCICFG_INT_ACK_CMD);
3515 synchronize_irq(ethdev->irq_arr[0].vector);
3516}
3517
3518static void cnic_init_bnx2_tx_ring(struct cnic_dev *dev)
3519{
3520 struct cnic_local *cp = dev->cnic_priv;
3521 struct cnic_eth_dev *ethdev = cp->ethdev;
3522 u32 cid_addr, tx_cid, sb_id;
3523 u32 val, offset0, offset1, offset2, offset3;
3524 int i;
3525 struct tx_bd *txbd;
3526 dma_addr_t buf_map;
Michael Chana4dde3a2010-02-24 14:42:08 +00003527 struct status_block *s_blk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07003528
3529 sb_id = cp->status_blk_num;
3530 tx_cid = 20;
Michael Chana4636962009-06-08 18:14:43 -07003531 cp->tx_cons_ptr = &s_blk->status_tx_quick_consumer_index2;
3532 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00003533 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07003534
3535 tx_cid = TX_TSS_CID + sb_id - 1;
Michael Chana4636962009-06-08 18:14:43 -07003536 CNIC_WR(dev, BNX2_TSCH_TSS_CFG, (sb_id << 24) |
3537 (TX_TSS_CID << 7));
3538 cp->tx_cons_ptr = &sblk->status_tx_quick_consumer_index;
3539 }
3540 cp->tx_cons = *cp->tx_cons_ptr;
3541
3542 cid_addr = GET_CID_ADDR(tx_cid);
3543 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
3544 u32 cid_addr2 = GET_CID_ADDR(tx_cid + 4) + 0x40;
3545
3546 for (i = 0; i < PHY_CTX_SIZE; i += 4)
3547 cnic_ctx_wr(dev, cid_addr2, i, 0);
3548
3549 offset0 = BNX2_L2CTX_TYPE_XI;
3550 offset1 = BNX2_L2CTX_CMD_TYPE_XI;
3551 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI_XI;
3552 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO_XI;
3553 } else {
Michael Chanb58ffb42010-05-27 16:31:41 -07003554 cnic_init_context(dev, tx_cid);
3555 cnic_init_context(dev, tx_cid + 1);
3556
Michael Chana4636962009-06-08 18:14:43 -07003557 offset0 = BNX2_L2CTX_TYPE;
3558 offset1 = BNX2_L2CTX_CMD_TYPE;
3559 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI;
3560 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO;
3561 }
3562 val = BNX2_L2CTX_TYPE_TYPE_L2 | BNX2_L2CTX_TYPE_SIZE_L2;
3563 cnic_ctx_wr(dev, cid_addr, offset0, val);
3564
3565 val = BNX2_L2CTX_CMD_TYPE_TYPE_L2 | (8 << 16);
3566 cnic_ctx_wr(dev, cid_addr, offset1, val);
3567
3568 txbd = (struct tx_bd *) cp->l2_ring;
3569
3570 buf_map = cp->l2_buf_map;
3571 for (i = 0; i < MAX_TX_DESC_CNT; i++, txbd++) {
3572 txbd->tx_bd_haddr_hi = (u64) buf_map >> 32;
3573 txbd->tx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
3574 }
3575 val = (u64) cp->l2_ring_map >> 32;
3576 cnic_ctx_wr(dev, cid_addr, offset2, val);
3577 txbd->tx_bd_haddr_hi = val;
3578
3579 val = (u64) cp->l2_ring_map & 0xffffffff;
3580 cnic_ctx_wr(dev, cid_addr, offset3, val);
3581 txbd->tx_bd_haddr_lo = val;
3582}
3583
3584static void cnic_init_bnx2_rx_ring(struct cnic_dev *dev)
3585{
3586 struct cnic_local *cp = dev->cnic_priv;
3587 struct cnic_eth_dev *ethdev = cp->ethdev;
3588 u32 cid_addr, sb_id, val, coal_reg, coal_val;
3589 int i;
3590 struct rx_bd *rxbd;
Michael Chana4dde3a2010-02-24 14:42:08 +00003591 struct status_block *s_blk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07003592
3593 sb_id = cp->status_blk_num;
3594 cnic_init_context(dev, 2);
3595 cp->rx_cons_ptr = &s_blk->status_rx_quick_consumer_index2;
3596 coal_reg = BNX2_HC_COMMAND;
3597 coal_val = CNIC_RD(dev, coal_reg);
3598 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00003599 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07003600
3601 cp->rx_cons_ptr = &sblk->status_rx_quick_consumer_index;
3602 coal_reg = BNX2_HC_COALESCE_NOW;
3603 coal_val = 1 << (11 + sb_id);
3604 }
3605 i = 0;
3606 while (!(*cp->rx_cons_ptr != 0) && i < 10) {
3607 CNIC_WR(dev, coal_reg, coal_val);
3608 udelay(10);
3609 i++;
3610 barrier();
3611 }
3612 cp->rx_cons = *cp->rx_cons_ptr;
3613
3614 cid_addr = GET_CID_ADDR(2);
3615 val = BNX2_L2CTX_CTX_TYPE_CTX_BD_CHN_TYPE_VALUE |
3616 BNX2_L2CTX_CTX_TYPE_SIZE_L2 | (0x02 << 8);
3617 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_CTX_TYPE, val);
3618
3619 if (sb_id == 0)
Michael Chand0549382009-10-28 03:41:59 -07003620 val = 2 << BNX2_L2CTX_L2_STATUSB_NUM_SHIFT;
Michael Chana4636962009-06-08 18:14:43 -07003621 else
Michael Chand0549382009-10-28 03:41:59 -07003622 val = BNX2_L2CTX_L2_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07003623 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_HOST_BDIDX, val);
3624
3625 rxbd = (struct rx_bd *) (cp->l2_ring + BCM_PAGE_SIZE);
3626 for (i = 0; i < MAX_RX_DESC_CNT; i++, rxbd++) {
3627 dma_addr_t buf_map;
3628 int n = (i % cp->l2_rx_ring_size) + 1;
3629
3630 buf_map = cp->l2_buf_map + (n * cp->l2_single_buf_size);
3631 rxbd->rx_bd_len = cp->l2_single_buf_size;
3632 rxbd->rx_bd_flags = RX_BD_FLAGS_START | RX_BD_FLAGS_END;
3633 rxbd->rx_bd_haddr_hi = (u64) buf_map >> 32;
3634 rxbd->rx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
3635 }
3636 val = (u64) (cp->l2_ring_map + BCM_PAGE_SIZE) >> 32;
3637 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_HI, val);
3638 rxbd->rx_bd_haddr_hi = val;
3639
3640 val = (u64) (cp->l2_ring_map + BCM_PAGE_SIZE) & 0xffffffff;
3641 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_LO, val);
3642 rxbd->rx_bd_haddr_lo = val;
3643
3644 val = cnic_reg_rd_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD);
3645 cnic_reg_wr_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD, val | (1 << 2));
3646}
3647
3648static void cnic_shutdown_bnx2_rx_ring(struct cnic_dev *dev)
3649{
3650 struct kwqe *wqes[1], l2kwqe;
3651
3652 memset(&l2kwqe, 0, sizeof(l2kwqe));
3653 wqes[0] = &l2kwqe;
3654 l2kwqe.kwqe_op_flag = (L2_LAYER_CODE << KWQE_FLAGS_LAYER_SHIFT) |
3655 (L2_KWQE_OPCODE_VALUE_FLUSH <<
3656 KWQE_OPCODE_SHIFT) | 2;
3657 dev->submit_kwqes(dev, wqes, 1);
3658}
3659
3660static void cnic_set_bnx2_mac(struct cnic_dev *dev)
3661{
3662 struct cnic_local *cp = dev->cnic_priv;
3663 u32 val;
3664
3665 val = cp->func << 2;
3666
3667 cp->shmem_base = cnic_reg_rd_ind(dev, BNX2_SHM_HDR_ADDR_0 + val);
3668
3669 val = cnic_reg_rd_ind(dev, cp->shmem_base +
3670 BNX2_PORT_HW_CFG_ISCSI_MAC_UPPER);
3671 dev->mac_addr[0] = (u8) (val >> 8);
3672 dev->mac_addr[1] = (u8) val;
3673
3674 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH4, val);
3675
3676 val = cnic_reg_rd_ind(dev, cp->shmem_base +
3677 BNX2_PORT_HW_CFG_ISCSI_MAC_LOWER);
3678 dev->mac_addr[2] = (u8) (val >> 24);
3679 dev->mac_addr[3] = (u8) (val >> 16);
3680 dev->mac_addr[4] = (u8) (val >> 8);
3681 dev->mac_addr[5] = (u8) val;
3682
3683 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH5, val);
3684
3685 val = 4 | BNX2_RPM_SORT_USER2_BC_EN;
3686 if (CHIP_NUM(cp) != CHIP_NUM_5709)
3687 val |= BNX2_RPM_SORT_USER2_PROM_VLAN;
3688
3689 CNIC_WR(dev, BNX2_RPM_SORT_USER2, 0x0);
3690 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val);
3691 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val | BNX2_RPM_SORT_USER2_ENA);
3692}
3693
3694static int cnic_start_bnx2_hw(struct cnic_dev *dev)
3695{
3696 struct cnic_local *cp = dev->cnic_priv;
3697 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chana4dde3a2010-02-24 14:42:08 +00003698 struct status_block *sblk = cp->status_blk.gen;
Michael Chane6c28892010-06-24 14:58:39 +00003699 u32 val, kcq_cid_addr, kwq_cid_addr;
Michael Chana4636962009-06-08 18:14:43 -07003700 int err;
3701
3702 cnic_set_bnx2_mac(dev);
3703
3704 val = CNIC_RD(dev, BNX2_MQ_CONFIG);
3705 val &= ~BNX2_MQ_CONFIG_KNL_BYP_BLK_SIZE;
3706 if (BCM_PAGE_BITS > 12)
3707 val |= (12 - 8) << 4;
3708 else
3709 val |= (BCM_PAGE_BITS - 8) << 4;
3710
3711 CNIC_WR(dev, BNX2_MQ_CONFIG, val);
3712
3713 CNIC_WR(dev, BNX2_HC_COMP_PROD_TRIP, (2 << 16) | 8);
3714 CNIC_WR(dev, BNX2_HC_COM_TICKS, (64 << 16) | 220);
3715 CNIC_WR(dev, BNX2_HC_CMD_TICKS, (64 << 16) | 220);
3716
3717 err = cnic_setup_5709_context(dev, 1);
3718 if (err)
3719 return err;
3720
3721 cnic_init_context(dev, KWQ_CID);
3722 cnic_init_context(dev, KCQ_CID);
3723
Michael Chane6c28892010-06-24 14:58:39 +00003724 kwq_cid_addr = GET_CID_ADDR(KWQ_CID);
Michael Chana4636962009-06-08 18:14:43 -07003725 cp->kwq_io_addr = MB_GET_CID_ADDR(KWQ_CID) + L5_KRNLQ_HOST_QIDX;
3726
3727 cp->max_kwq_idx = MAX_KWQ_IDX;
3728 cp->kwq_prod_idx = 0;
3729 cp->kwq_con_idx = 0;
Michael Chan1f1332a2010-05-18 11:32:52 +00003730 set_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07003731
3732 if (CHIP_NUM(cp) == CHIP_NUM_5706 || CHIP_NUM(cp) == CHIP_NUM_5708)
3733 cp->kwq_con_idx_ptr = &sblk->status_rx_quick_consumer_index15;
3734 else
3735 cp->kwq_con_idx_ptr = &sblk->status_cmd_consumer_index;
3736
3737 /* Initialize the kernel work queue context. */
3738 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
3739 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00003740 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07003741
3742 val = (BCM_PAGE_SIZE / sizeof(struct kwqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00003743 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07003744
3745 val = ((BCM_PAGE_SIZE / sizeof(struct kwqe)) << 16) | KWQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00003746 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07003747
3748 val = (u32) ((u64) cp->kwq_info.pgtbl_map >> 32);
Michael Chane6c28892010-06-24 14:58:39 +00003749 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07003750
3751 val = (u32) cp->kwq_info.pgtbl_map;
Michael Chane6c28892010-06-24 14:58:39 +00003752 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07003753
Michael Chane6c28892010-06-24 14:58:39 +00003754 kcq_cid_addr = GET_CID_ADDR(KCQ_CID);
3755 cp->kcq1.io_addr = MB_GET_CID_ADDR(KCQ_CID) + L5_KRNLQ_HOST_QIDX;
Michael Chana4636962009-06-08 18:14:43 -07003756
Michael Chane6c28892010-06-24 14:58:39 +00003757 cp->kcq1.sw_prod_idx = 0;
3758 cp->kcq1.hw_prod_idx_ptr =
3759 (u16 *) &sblk->status_completion_producer_index;
3760
3761 cp->kcq1.status_idx_ptr = (u16 *) &sblk->status_idx;
Michael Chana4636962009-06-08 18:14:43 -07003762
3763 /* Initialize the kernel complete queue context. */
3764 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
3765 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00003766 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07003767
3768 val = (BCM_PAGE_SIZE / sizeof(struct kcqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00003769 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07003770
3771 val = ((BCM_PAGE_SIZE / sizeof(struct kcqe)) << 16) | KCQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00003772 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07003773
Michael Chane6c28892010-06-24 14:58:39 +00003774 val = (u32) ((u64) cp->kcq1.dma.pgtbl_map >> 32);
3775 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07003776
Michael Chane6c28892010-06-24 14:58:39 +00003777 val = (u32) cp->kcq1.dma.pgtbl_map;
3778 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07003779
3780 cp->int_num = 0;
3781 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chane6c28892010-06-24 14:58:39 +00003782 struct status_block_msix *msblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07003783 u32 sb_id = cp->status_blk_num;
Michael Chand0549382009-10-28 03:41:59 -07003784 u32 sb = BNX2_L2CTX_L5_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07003785
Michael Chane6c28892010-06-24 14:58:39 +00003786 cp->kcq1.hw_prod_idx_ptr =
3787 (u16 *) &msblk->status_completion_producer_index;
3788 cp->kcq1.status_idx_ptr = (u16 *) &msblk->status_idx;
Michael Chana4636962009-06-08 18:14:43 -07003789 cp->int_num = sb_id << BNX2_PCICFG_INT_ACK_CMD_INT_NUM_SHIFT;
Michael Chane6c28892010-06-24 14:58:39 +00003790 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
3791 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
Michael Chana4636962009-06-08 18:14:43 -07003792 }
3793
3794 /* Enable Commnad Scheduler notification when we write to the
3795 * host producer index of the kernel contexts. */
3796 CNIC_WR(dev, BNX2_MQ_KNL_CMD_MASK1, 2);
3797
3798 /* Enable Command Scheduler notification when we write to either
3799 * the Send Queue or Receive Queue producer indexes of the kernel
3800 * bypass contexts. */
3801 CNIC_WR(dev, BNX2_MQ_KNL_BYP_CMD_MASK1, 7);
3802 CNIC_WR(dev, BNX2_MQ_KNL_BYP_WRITE_MASK1, 7);
3803
3804 /* Notify COM when the driver post an application buffer. */
3805 CNIC_WR(dev, BNX2_MQ_KNL_RX_V2P_MASK2, 0x2000);
3806
3807 /* Set the CP and COM doorbells. These two processors polls the
3808 * doorbell for a non zero value before running. This must be done
3809 * after setting up the kernel queue contexts. */
3810 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 1);
3811 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 1);
3812
3813 cnic_init_bnx2_tx_ring(dev);
3814 cnic_init_bnx2_rx_ring(dev);
3815
3816 err = cnic_init_bnx2_irq(dev);
3817 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00003818 netdev_err(dev->netdev, "cnic_init_irq failed\n");
Michael Chana4636962009-06-08 18:14:43 -07003819 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
3820 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
3821 return err;
3822 }
3823
3824 return 0;
3825}
3826
Michael Chan71034ba2009-10-10 13:46:59 +00003827static void cnic_setup_bnx2x_context(struct cnic_dev *dev)
3828{
3829 struct cnic_local *cp = dev->cnic_priv;
3830 struct cnic_eth_dev *ethdev = cp->ethdev;
3831 u32 start_offset = ethdev->ctx_tbl_offset;
3832 int i;
3833
3834 for (i = 0; i < cp->ctx_blks; i++) {
3835 struct cnic_ctx *ctx = &cp->ctx_arr[i];
3836 dma_addr_t map = ctx->mapping;
3837
3838 if (cp->ctx_align) {
3839 unsigned long mask = cp->ctx_align - 1;
3840
3841 map = (map + mask) & ~mask;
3842 }
3843
3844 cnic_ctx_tbl_wr(dev, start_offset + i, map);
3845 }
3846}
3847
3848static int cnic_init_bnx2x_irq(struct cnic_dev *dev)
3849{
3850 struct cnic_local *cp = dev->cnic_priv;
3851 struct cnic_eth_dev *ethdev = cp->ethdev;
3852 int err = 0;
3853
Joe Perches164165d2009-11-19 09:30:10 +00003854 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2x_bh,
Michael Chan71034ba2009-10-10 13:46:59 +00003855 (unsigned long) dev);
3856 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
3857 err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0,
3858 "cnic", dev);
3859 if (err)
3860 tasklet_disable(&cp->cnic_irq_task);
3861 }
3862 return err;
3863}
3864
3865static void cnic_enable_bnx2x_int(struct cnic_dev *dev)
3866{
3867 struct cnic_local *cp = dev->cnic_priv;
3868 u8 sb_id = cp->status_blk_num;
3869 int port = CNIC_PORT(cp);
3870
3871 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
3872 CSTORM_SB_HC_TIMEOUT_C_OFFSET(port, sb_id,
3873 HC_INDEX_C_ISCSI_EQ_CONS),
3874 64 / 12);
3875 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
3876 CSTORM_SB_HC_DISABLE_C_OFFSET(port, sb_id,
3877 HC_INDEX_C_ISCSI_EQ_CONS), 0);
3878}
3879
3880static void cnic_disable_bnx2x_int_sync(struct cnic_dev *dev)
3881{
3882}
3883
3884static void cnic_init_bnx2x_tx_ring(struct cnic_dev *dev)
3885{
3886 struct cnic_local *cp = dev->cnic_priv;
3887 union eth_tx_bd_types *txbd = (union eth_tx_bd_types *) cp->l2_ring;
3888 struct eth_context *context;
3889 struct regpair context_addr;
3890 dma_addr_t buf_map;
3891 int func = CNIC_FUNC(cp);
3892 int port = CNIC_PORT(cp);
3893 int i;
3894 int cli = BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp));
3895 u32 val;
3896
3897 memset(txbd, 0, BCM_PAGE_SIZE);
3898
3899 buf_map = cp->l2_buf_map;
3900 for (i = 0; i < MAX_TX_DESC_CNT; i += 3, txbd += 3) {
3901 struct eth_tx_start_bd *start_bd = &txbd->start_bd;
3902 struct eth_tx_bd *reg_bd = &((txbd + 2)->reg_bd);
3903
3904 start_bd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
3905 start_bd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
3906 reg_bd->addr_hi = start_bd->addr_hi;
3907 reg_bd->addr_lo = start_bd->addr_lo + 0x10;
3908 start_bd->nbytes = cpu_to_le16(0x10);
3909 start_bd->nbd = cpu_to_le16(3);
3910 start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
3911 start_bd->general_data = (UNICAST_ADDRESS <<
3912 ETH_TX_START_BD_ETH_ADDR_TYPE_SHIFT);
3913 start_bd->general_data |= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT);
3914
3915 }
3916 context = cnic_get_bnx2x_ctx(dev, BNX2X_ISCSI_L2_CID, 1, &context_addr);
3917
3918 val = (u64) cp->l2_ring_map >> 32;
3919 txbd->next_bd.addr_hi = cpu_to_le32(val);
3920
3921 context->xstorm_st_context.tx_bd_page_base_hi = val;
3922
3923 val = (u64) cp->l2_ring_map & 0xffffffff;
3924 txbd->next_bd.addr_lo = cpu_to_le32(val);
3925
3926 context->xstorm_st_context.tx_bd_page_base_lo = val;
3927
3928 context->cstorm_st_context.sb_index_number =
3929 HC_INDEX_DEF_C_ETH_ISCSI_CQ_CONS;
3930 context->cstorm_st_context.status_block_id = BNX2X_DEF_SB_ID;
3931
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07003932 if (cli < MAX_X_STAT_COUNTER_ID)
3933 context->xstorm_st_context.statistics_data = cli |
3934 XSTORM_ETH_ST_CONTEXT_STATISTICS_ENABLE;
Michael Chan71034ba2009-10-10 13:46:59 +00003935
3936 context->xstorm_ag_context.cdu_reserved =
3937 CDU_RSRVD_VALUE_TYPE_A(BNX2X_HW_CID(BNX2X_ISCSI_L2_CID, func),
3938 CDU_REGION_NUMBER_XCM_AG,
3939 ETH_CONNECTION_TYPE);
3940
3941 /* reset xstorm per client statistics */
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07003942 if (cli < MAX_X_STAT_COUNTER_ID) {
3943 val = BAR_XSTRORM_INTMEM +
3944 XSTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
3945 for (i = 0; i < sizeof(struct xstorm_per_client_stats) / 4; i++)
3946 CNIC_WR(dev, val + i * 4, 0);
3947 }
Michael Chan71034ba2009-10-10 13:46:59 +00003948
3949 cp->tx_cons_ptr =
3950 &cp->bnx2x_def_status_blk->c_def_status_block.index_values[
3951 HC_INDEX_DEF_C_ETH_ISCSI_CQ_CONS];
3952}
3953
3954static void cnic_init_bnx2x_rx_ring(struct cnic_dev *dev)
3955{
3956 struct cnic_local *cp = dev->cnic_priv;
3957 struct eth_rx_bd *rxbd = (struct eth_rx_bd *) (cp->l2_ring +
3958 BCM_PAGE_SIZE);
3959 struct eth_rx_cqe_next_page *rxcqe = (struct eth_rx_cqe_next_page *)
3960 (cp->l2_ring + (2 * BCM_PAGE_SIZE));
3961 struct eth_context *context;
3962 struct regpair context_addr;
3963 int i;
3964 int port = CNIC_PORT(cp);
3965 int func = CNIC_FUNC(cp);
3966 int cli = BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp));
3967 u32 val;
3968 struct tstorm_eth_client_config tstorm_client = {0};
3969
3970 for (i = 0; i < BNX2X_MAX_RX_DESC_CNT; i++, rxbd++) {
3971 dma_addr_t buf_map;
3972 int n = (i % cp->l2_rx_ring_size) + 1;
3973
3974 buf_map = cp->l2_buf_map + (n * cp->l2_single_buf_size);
3975 rxbd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
3976 rxbd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
3977 }
3978 context = cnic_get_bnx2x_ctx(dev, BNX2X_ISCSI_L2_CID, 0, &context_addr);
3979
3980 val = (u64) (cp->l2_ring_map + BCM_PAGE_SIZE) >> 32;
3981 rxbd->addr_hi = cpu_to_le32(val);
3982
3983 context->ustorm_st_context.common.bd_page_base_hi = val;
3984
3985 val = (u64) (cp->l2_ring_map + BCM_PAGE_SIZE) & 0xffffffff;
3986 rxbd->addr_lo = cpu_to_le32(val);
3987
3988 context->ustorm_st_context.common.bd_page_base_lo = val;
3989
3990 context->ustorm_st_context.common.sb_index_numbers =
3991 BNX2X_ISCSI_RX_SB_INDEX_NUM;
3992 context->ustorm_st_context.common.clientId = cli;
3993 context->ustorm_st_context.common.status_block_id = BNX2X_DEF_SB_ID;
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07003994 if (cli < MAX_U_STAT_COUNTER_ID) {
3995 context->ustorm_st_context.common.flags =
3996 USTORM_ETH_ST_CONTEXT_CONFIG_ENABLE_STATISTICS;
3997 context->ustorm_st_context.common.statistics_counter_id = cli;
3998 }
Michael Chan71034ba2009-10-10 13:46:59 +00003999 context->ustorm_st_context.common.mc_alignment_log_size = 0;
4000 context->ustorm_st_context.common.bd_buff_size =
4001 cp->l2_single_buf_size;
4002
4003 context->ustorm_ag_context.cdu_usage =
4004 CDU_RSRVD_VALUE_TYPE_A(BNX2X_HW_CID(BNX2X_ISCSI_L2_CID, func),
4005 CDU_REGION_NUMBER_UCM_AG,
4006 ETH_CONNECTION_TYPE);
4007
4008 rxcqe += BNX2X_MAX_RCQ_DESC_CNT;
4009 val = (u64) (cp->l2_ring_map + (2 * BCM_PAGE_SIZE)) >> 32;
4010 rxcqe->addr_hi = cpu_to_le32(val);
4011
4012 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4013 USTORM_CQE_PAGE_BASE_OFFSET(port, cli) + 4, val);
4014
4015 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4016 USTORM_CQE_PAGE_NEXT_OFFSET(port, cli) + 4, val);
4017
4018 val = (u64) (cp->l2_ring_map + (2 * BCM_PAGE_SIZE)) & 0xffffffff;
4019 rxcqe->addr_lo = cpu_to_le32(val);
4020
4021 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4022 USTORM_CQE_PAGE_BASE_OFFSET(port, cli), val);
4023
4024 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4025 USTORM_CQE_PAGE_NEXT_OFFSET(port, cli), val);
4026
4027 /* client tstorm info */
4028 tstorm_client.mtu = cp->l2_single_buf_size - 14;
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004029 tstorm_client.config_flags = TSTORM_ETH_CLIENT_CONFIG_E1HOV_REM_ENABLE;
4030
4031 if (cli < MAX_T_STAT_COUNTER_ID) {
4032 tstorm_client.config_flags |=
4033 TSTORM_ETH_CLIENT_CONFIG_STATSITICS_ENABLE;
4034 tstorm_client.statistics_counter_id = cli;
4035 }
Michael Chan71034ba2009-10-10 13:46:59 +00004036
4037 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
4038 TSTORM_CLIENT_CONFIG_OFFSET(port, cli),
4039 ((u32 *)&tstorm_client)[0]);
4040 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
4041 TSTORM_CLIENT_CONFIG_OFFSET(port, cli) + 4,
4042 ((u32 *)&tstorm_client)[1]);
4043
4044 /* reset tstorm per client statistics */
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004045 if (cli < MAX_T_STAT_COUNTER_ID) {
4046
4047 val = BAR_TSTRORM_INTMEM +
4048 TSTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
4049 for (i = 0; i < sizeof(struct tstorm_per_client_stats) / 4; i++)
4050 CNIC_WR(dev, val + i * 4, 0);
4051 }
Michael Chan71034ba2009-10-10 13:46:59 +00004052
4053 /* reset ustorm per client statistics */
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004054 if (cli < MAX_U_STAT_COUNTER_ID) {
4055 val = BAR_USTRORM_INTMEM +
4056 USTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
4057 for (i = 0; i < sizeof(struct ustorm_per_client_stats) / 4; i++)
4058 CNIC_WR(dev, val + i * 4, 0);
4059 }
Michael Chan71034ba2009-10-10 13:46:59 +00004060
4061 cp->rx_cons_ptr =
4062 &cp->bnx2x_def_status_blk->u_def_status_block.index_values[
4063 HC_INDEX_DEF_U_ETH_ISCSI_RX_CQ_CONS];
4064}
4065
4066static void cnic_get_bnx2x_iscsi_info(struct cnic_dev *dev)
4067{
4068 struct cnic_local *cp = dev->cnic_priv;
4069 u32 base, addr, val;
4070 int port = CNIC_PORT(cp);
4071
4072 dev->max_iscsi_conn = 0;
4073 base = CNIC_RD(dev, MISC_REG_SHARED_MEM_ADDR);
4074 if (base < 0xa0000 || base >= 0xc0000)
4075 return;
4076
Michael Chandd2e4db2009-12-02 15:15:37 +00004077 addr = BNX2X_SHMEM_ADDR(base,
Michael Chan71034ba2009-10-10 13:46:59 +00004078 dev_info.port_hw_config[port].iscsi_mac_upper);
4079
Michael Chandd2e4db2009-12-02 15:15:37 +00004080 val = CNIC_RD(dev, addr);
4081
Michael Chan71034ba2009-10-10 13:46:59 +00004082 dev->mac_addr[0] = (u8) (val >> 8);
4083 dev->mac_addr[1] = (u8) val;
4084
Michael Chandd2e4db2009-12-02 15:15:37 +00004085 addr = BNX2X_SHMEM_ADDR(base,
Michael Chan71034ba2009-10-10 13:46:59 +00004086 dev_info.port_hw_config[port].iscsi_mac_lower);
4087
Michael Chandd2e4db2009-12-02 15:15:37 +00004088 val = CNIC_RD(dev, addr);
4089
Michael Chan71034ba2009-10-10 13:46:59 +00004090 dev->mac_addr[2] = (u8) (val >> 24);
4091 dev->mac_addr[3] = (u8) (val >> 16);
4092 dev->mac_addr[4] = (u8) (val >> 8);
4093 dev->mac_addr[5] = (u8) val;
4094
4095 addr = BNX2X_SHMEM_ADDR(base, validity_map[port]);
4096 val = CNIC_RD(dev, addr);
4097
4098 if (!(val & SHR_MEM_VALIDITY_LIC_NO_KEY_IN_EFFECT)) {
4099 u16 val16;
4100
4101 addr = BNX2X_SHMEM_ADDR(base,
4102 drv_lic_key[port].max_iscsi_init_conn);
4103 val16 = CNIC_RD16(dev, addr);
4104
4105 if (val16)
4106 val16 ^= 0x1e1e;
4107 dev->max_iscsi_conn = val16;
4108 }
4109 if (BNX2X_CHIP_IS_E1H(cp->chip_id)) {
4110 int func = CNIC_FUNC(cp);
4111
4112 addr = BNX2X_SHMEM_ADDR(base,
4113 mf_cfg.func_mf_config[func].e1hov_tag);
4114 val = CNIC_RD(dev, addr);
4115 val &= FUNC_MF_CFG_E1HOV_TAG_MASK;
4116 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
4117 addr = BNX2X_SHMEM_ADDR(base,
4118 mf_cfg.func_mf_config[func].config);
4119 val = CNIC_RD(dev, addr);
4120 val &= FUNC_MF_CFG_PROTOCOL_MASK;
4121 if (val != FUNC_MF_CFG_PROTOCOL_ISCSI)
4122 dev->max_iscsi_conn = 0;
4123 }
4124 }
4125}
4126
4127static int cnic_start_bnx2x_hw(struct cnic_dev *dev)
4128{
4129 struct cnic_local *cp = dev->cnic_priv;
4130 int func = CNIC_FUNC(cp), ret, i;
4131 int port = CNIC_PORT(cp);
4132 u16 eq_idx;
4133 u8 sb_id = cp->status_blk_num;
4134
4135 ret = cnic_init_id_tbl(&cp->cid_tbl, MAX_ISCSI_TBL_SZ,
Michael Chan520efdf2010-06-24 14:58:37 +00004136 cp->iscsi_start_cid);
Michael Chan71034ba2009-10-10 13:46:59 +00004137
4138 if (ret)
4139 return -ENOMEM;
4140
Michael Chane6c28892010-06-24 14:58:39 +00004141 cp->kcq1.io_addr = BAR_CSTRORM_INTMEM +
Michael Chan71034ba2009-10-10 13:46:59 +00004142 CSTORM_ISCSI_EQ_PROD_OFFSET(func, 0);
Michael Chane6c28892010-06-24 14:58:39 +00004143 cp->kcq1.sw_prod_idx = 0;
4144
4145 cp->kcq1.hw_prod_idx_ptr =
4146 &cp->status_blk.bnx2x->c_status_block.index_values[
4147 HC_INDEX_C_ISCSI_EQ_CONS];
4148 cp->kcq1.status_idx_ptr =
4149 &cp->status_blk.bnx2x->c_status_block.status_block_index;
Michael Chan71034ba2009-10-10 13:46:59 +00004150
4151 cnic_get_bnx2x_iscsi_info(dev);
4152
4153 /* Only 1 EQ */
Michael Chane6c28892010-06-24 14:58:39 +00004154 CNIC_WR16(dev, cp->kcq1.io_addr, MAX_KCQ_IDX);
Michael Chan71034ba2009-10-10 13:46:59 +00004155 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4156 CSTORM_ISCSI_EQ_CONS_OFFSET(func, 0), 0);
4157 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4158 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(func, 0),
Michael Chane6c28892010-06-24 14:58:39 +00004159 cp->kcq1.dma.pg_map_arr[1] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00004160 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4161 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(func, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00004162 (u64) cp->kcq1.dma.pg_map_arr[1] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00004163 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4164 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(func, 0),
Michael Chane6c28892010-06-24 14:58:39 +00004165 cp->kcq1.dma.pg_map_arr[0] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00004166 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4167 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(func, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00004168 (u64) cp->kcq1.dma.pg_map_arr[0] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00004169 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
4170 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_VALID_OFFSET(func, 0), 1);
4171 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
4172 CSTORM_ISCSI_EQ_SB_NUM_OFFSET(func, 0), cp->status_blk_num);
4173 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
4174 CSTORM_ISCSI_EQ_SB_INDEX_OFFSET(func, 0),
4175 HC_INDEX_C_ISCSI_EQ_CONS);
4176
4177 for (i = 0; i < cp->conn_buf_info.num_pages; i++) {
4178 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
4179 TSTORM_ISCSI_CONN_BUF_PBL_OFFSET(func, i),
4180 cp->conn_buf_info.pgtbl[2 * i]);
4181 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
4182 TSTORM_ISCSI_CONN_BUF_PBL_OFFSET(func, i) + 4,
4183 cp->conn_buf_info.pgtbl[(2 * i) + 1]);
4184 }
4185
4186 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4187 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(func),
4188 cp->gbl_buf_info.pg_map_arr[0] & 0xffffffff);
4189 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4190 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(func) + 4,
4191 (u64) cp->gbl_buf_info.pg_map_arr[0] >> 32);
4192
4193 cnic_setup_bnx2x_context(dev);
4194
4195 eq_idx = CNIC_RD16(dev, BAR_CSTRORM_INTMEM +
4196 CSTORM_SB_HOST_STATUS_BLOCK_C_OFFSET(port, sb_id) +
4197 offsetof(struct cstorm_status_block_c,
4198 index_values[HC_INDEX_C_ISCSI_EQ_CONS]));
4199 if (eq_idx != 0) {
Joe Perchesddf79b22010-02-17 15:01:54 +00004200 netdev_err(dev->netdev, "EQ cons index %x != 0\n", eq_idx);
Michael Chan71034ba2009-10-10 13:46:59 +00004201 return -EBUSY;
4202 }
4203 ret = cnic_init_bnx2x_irq(dev);
4204 if (ret)
4205 return ret;
4206
4207 cnic_init_bnx2x_tx_ring(dev);
4208 cnic_init_bnx2x_rx_ring(dev);
4209
4210 return 0;
4211}
4212
Michael Chan86b53602009-10-10 13:46:57 +00004213static void cnic_init_rings(struct cnic_dev *dev)
4214{
4215 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
4216 cnic_init_bnx2_tx_ring(dev);
4217 cnic_init_bnx2_rx_ring(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00004218 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
4219 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00004220 u32 cli = BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp));
4221 union l5cm_specific_data l5_data;
4222 struct ustorm_eth_rx_producers rx_prods = {0};
Michael Chanc7596b72009-12-02 15:15:35 +00004223 u32 off, i;
Michael Chan71034ba2009-10-10 13:46:59 +00004224
4225 rx_prods.bd_prod = 0;
4226 rx_prods.cqe_prod = BNX2X_MAX_RCQ_DESC_CNT;
4227 barrier();
4228
Michael Chanc7596b72009-12-02 15:15:35 +00004229 off = BAR_USTRORM_INTMEM +
Michael Chan71034ba2009-10-10 13:46:59 +00004230 USTORM_RX_PRODS_OFFSET(CNIC_PORT(cp), cli);
4231
4232 for (i = 0; i < sizeof(struct ustorm_eth_rx_producers) / 4; i++)
Michael Chanc7596b72009-12-02 15:15:35 +00004233 CNIC_WR(dev, off + i * 4, ((u32 *) &rx_prods)[i]);
Michael Chan71034ba2009-10-10 13:46:59 +00004234
Michael Chan48f753d2010-05-18 11:32:53 +00004235 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
4236
Michael Chan71034ba2009-10-10 13:46:59 +00004237 cnic_init_bnx2x_tx_ring(dev);
4238 cnic_init_bnx2x_rx_ring(dev);
4239
4240 l5_data.phy_address.lo = cli;
4241 l5_data.phy_address.hi = 0;
4242 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CLIENT_SETUP,
4243 BNX2X_ISCSI_L2_CID, ETH_CONNECTION_TYPE, &l5_data);
Michael Chan48f753d2010-05-18 11:32:53 +00004244 i = 0;
4245 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
4246 ++i < 10)
4247 msleep(1);
4248
4249 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
4250 netdev_err(dev->netdev,
4251 "iSCSI CLIENT_SETUP did not complete\n");
4252 cnic_kwq_completion(dev, 1);
Michael Chan71034ba2009-10-10 13:46:59 +00004253 cnic_ring_ctl(dev, BNX2X_ISCSI_L2_CID, cli, 1);
Michael Chan86b53602009-10-10 13:46:57 +00004254 }
4255}
4256
4257static void cnic_shutdown_rings(struct cnic_dev *dev)
4258{
4259 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
4260 cnic_shutdown_bnx2_rx_ring(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00004261 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
4262 struct cnic_local *cp = dev->cnic_priv;
4263 u32 cli = BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp));
Michael Chan8b065b62009-12-02 15:15:36 +00004264 union l5cm_specific_data l5_data;
Michael Chan48f753d2010-05-18 11:32:53 +00004265 int i;
Michael Chan71034ba2009-10-10 13:46:59 +00004266
4267 cnic_ring_ctl(dev, BNX2X_ISCSI_L2_CID, cli, 0);
Michael Chan8b065b62009-12-02 15:15:36 +00004268
Michael Chan48f753d2010-05-18 11:32:53 +00004269 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
4270
Michael Chan8b065b62009-12-02 15:15:36 +00004271 l5_data.phy_address.lo = cli;
4272 l5_data.phy_address.hi = 0;
4273 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_HALT,
4274 BNX2X_ISCSI_L2_CID, ETH_CONNECTION_TYPE, &l5_data);
Michael Chan48f753d2010-05-18 11:32:53 +00004275 i = 0;
4276 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
4277 ++i < 10)
4278 msleep(1);
4279
4280 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
4281 netdev_err(dev->netdev,
4282 "iSCSI CLIENT_HALT did not complete\n");
4283 cnic_kwq_completion(dev, 1);
Michael Chan1bcdc322009-12-10 15:40:57 +00004284
4285 memset(&l5_data, 0, sizeof(l5_data));
4286 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CFC_DEL,
4287 BNX2X_ISCSI_L2_CID, ETH_CONNECTION_TYPE |
4288 (1 << SPE_HDR_COMMON_RAMROD_SHIFT), &l5_data);
4289 msleep(10);
Michael Chan86b53602009-10-10 13:46:57 +00004290 }
4291}
4292
Michael Chana3059b12009-08-14 15:49:44 +00004293static int cnic_register_netdev(struct cnic_dev *dev)
4294{
4295 struct cnic_local *cp = dev->cnic_priv;
4296 struct cnic_eth_dev *ethdev = cp->ethdev;
4297 int err;
4298
4299 if (!ethdev)
4300 return -ENODEV;
4301
4302 if (ethdev->drv_state & CNIC_DRV_STATE_REGD)
4303 return 0;
4304
4305 err = ethdev->drv_register_cnic(dev->netdev, cp->cnic_ops, dev);
4306 if (err)
Joe Perchesddf79b22010-02-17 15:01:54 +00004307 netdev_err(dev->netdev, "register_cnic failed\n");
Michael Chana3059b12009-08-14 15:49:44 +00004308
4309 return err;
4310}
4311
4312static void cnic_unregister_netdev(struct cnic_dev *dev)
4313{
4314 struct cnic_local *cp = dev->cnic_priv;
4315 struct cnic_eth_dev *ethdev = cp->ethdev;
4316
4317 if (!ethdev)
4318 return;
4319
4320 ethdev->drv_unregister_cnic(dev->netdev);
4321}
4322
Michael Chana4636962009-06-08 18:14:43 -07004323static int cnic_start_hw(struct cnic_dev *dev)
4324{
4325 struct cnic_local *cp = dev->cnic_priv;
4326 struct cnic_eth_dev *ethdev = cp->ethdev;
4327 int err;
4328
4329 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
4330 return -EALREADY;
4331
Michael Chana4636962009-06-08 18:14:43 -07004332 dev->regview = ethdev->io_base;
4333 cp->chip_id = ethdev->chip_id;
4334 pci_dev_get(dev->pcidev);
4335 cp->func = PCI_FUNC(dev->pcidev->devfn);
Michael Chana4dde3a2010-02-24 14:42:08 +00004336 cp->status_blk.gen = ethdev->irq_arr[0].status_blk;
Michael Chana4636962009-06-08 18:14:43 -07004337 cp->status_blk_num = ethdev->irq_arr[0].status_blk_num;
4338
4339 err = cp->alloc_resc(dev);
4340 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00004341 netdev_err(dev->netdev, "allocate resource failure\n");
Michael Chana4636962009-06-08 18:14:43 -07004342 goto err1;
4343 }
4344
4345 err = cp->start_hw(dev);
4346 if (err)
4347 goto err1;
4348
4349 err = cnic_cm_open(dev);
4350 if (err)
4351 goto err1;
4352
4353 set_bit(CNIC_F_CNIC_UP, &dev->flags);
4354
4355 cp->enable_int(dev);
4356
4357 return 0;
4358
4359err1:
Michael Chana4636962009-06-08 18:14:43 -07004360 cp->free_resc(dev);
4361 pci_dev_put(dev->pcidev);
Michael Chana4636962009-06-08 18:14:43 -07004362 return err;
4363}
4364
4365static void cnic_stop_bnx2_hw(struct cnic_dev *dev)
4366{
Michael Chana4636962009-06-08 18:14:43 -07004367 cnic_disable_bnx2_int_sync(dev);
4368
4369 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
4370 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
4371
4372 cnic_init_context(dev, KWQ_CID);
4373 cnic_init_context(dev, KCQ_CID);
4374
4375 cnic_setup_5709_context(dev, 0);
4376 cnic_free_irq(dev);
4377
Michael Chana4636962009-06-08 18:14:43 -07004378 cnic_free_resc(dev);
4379}
4380
Michael Chan71034ba2009-10-10 13:46:59 +00004381
4382static void cnic_stop_bnx2x_hw(struct cnic_dev *dev)
4383{
4384 struct cnic_local *cp = dev->cnic_priv;
4385 u8 sb_id = cp->status_blk_num;
4386 int port = CNIC_PORT(cp);
4387
4388 cnic_free_irq(dev);
4389 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
4390 CSTORM_SB_HOST_STATUS_BLOCK_C_OFFSET(port, sb_id) +
4391 offsetof(struct cstorm_status_block_c,
4392 index_values[HC_INDEX_C_ISCSI_EQ_CONS]),
4393 0);
Michael Chan4e9c4fd2009-12-10 15:40:58 +00004394 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4395 CSTORM_ISCSI_EQ_CONS_OFFSET(cp->func, 0), 0);
Michael Chane6c28892010-06-24 14:58:39 +00004396 CNIC_WR16(dev, cp->kcq1.io_addr, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004397 cnic_free_resc(dev);
4398}
4399
Michael Chana4636962009-06-08 18:14:43 -07004400static void cnic_stop_hw(struct cnic_dev *dev)
4401{
4402 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
4403 struct cnic_local *cp = dev->cnic_priv;
Michael Chan48f753d2010-05-18 11:32:53 +00004404 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -07004405
Michael Chan48f753d2010-05-18 11:32:53 +00004406 /* Need to wait for the ring shutdown event to complete
4407 * before clearing the CNIC_UP flag.
4408 */
4409 while (cp->uio_dev != -1 && i < 15) {
4410 msleep(100);
4411 i++;
4412 }
Michael Chana4636962009-06-08 18:14:43 -07004413 clear_bit(CNIC_F_CNIC_UP, &dev->flags);
4414 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], NULL);
4415 synchronize_rcu();
4416 cnic_cm_shutdown(dev);
4417 cp->stop_hw(dev);
4418 pci_dev_put(dev->pcidev);
4419 }
4420}
4421
4422static void cnic_free_dev(struct cnic_dev *dev)
4423{
4424 int i = 0;
4425
4426 while ((atomic_read(&dev->ref_count) != 0) && i < 10) {
4427 msleep(100);
4428 i++;
4429 }
4430 if (atomic_read(&dev->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +00004431 netdev_err(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -07004432
Joe Perchesddf79b22010-02-17 15:01:54 +00004433 netdev_info(dev->netdev, "Removed CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07004434 dev_put(dev->netdev);
4435 kfree(dev);
4436}
4437
4438static struct cnic_dev *cnic_alloc_dev(struct net_device *dev,
4439 struct pci_dev *pdev)
4440{
4441 struct cnic_dev *cdev;
4442 struct cnic_local *cp;
4443 int alloc_size;
4444
4445 alloc_size = sizeof(struct cnic_dev) + sizeof(struct cnic_local);
4446
4447 cdev = kzalloc(alloc_size , GFP_KERNEL);
4448 if (cdev == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +00004449 netdev_err(dev, "allocate dev struct failure\n");
Michael Chana4636962009-06-08 18:14:43 -07004450 return NULL;
4451 }
4452
4453 cdev->netdev = dev;
4454 cdev->cnic_priv = (char *)cdev + sizeof(struct cnic_dev);
4455 cdev->register_device = cnic_register_device;
4456 cdev->unregister_device = cnic_unregister_device;
4457 cdev->iscsi_nl_msg_recv = cnic_iscsi_nl_msg_recv;
4458
4459 cp = cdev->cnic_priv;
4460 cp->dev = cdev;
4461 cp->uio_dev = -1;
4462 cp->l2_single_buf_size = 0x400;
4463 cp->l2_rx_ring_size = 3;
4464
4465 spin_lock_init(&cp->cnic_ulp_lock);
4466
Joe Perchesddf79b22010-02-17 15:01:54 +00004467 netdev_info(dev, "Added CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07004468
4469 return cdev;
4470}
4471
4472static struct cnic_dev *init_bnx2_cnic(struct net_device *dev)
4473{
4474 struct pci_dev *pdev;
4475 struct cnic_dev *cdev;
4476 struct cnic_local *cp;
4477 struct cnic_eth_dev *ethdev = NULL;
Michael Chane2ee3612009-06-13 17:43:02 -07004478 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
Michael Chana4636962009-06-08 18:14:43 -07004479
Michael Chane2ee3612009-06-13 17:43:02 -07004480 probe = symbol_get(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07004481 if (probe) {
4482 ethdev = (*probe)(dev);
Michael Chan64c64602009-08-14 15:49:43 +00004483 symbol_put(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07004484 }
4485 if (!ethdev)
4486 return NULL;
4487
4488 pdev = ethdev->pdev;
4489 if (!pdev)
4490 return NULL;
4491
4492 dev_hold(dev);
4493 pci_dev_get(pdev);
4494 if (pdev->device == PCI_DEVICE_ID_NX2_5709 ||
4495 pdev->device == PCI_DEVICE_ID_NX2_5709S) {
4496 u8 rev;
4497
4498 pci_read_config_byte(pdev, PCI_REVISION_ID, &rev);
4499 if (rev < 0x10) {
4500 pci_dev_put(pdev);
4501 goto cnic_err;
4502 }
4503 }
4504 pci_dev_put(pdev);
4505
4506 cdev = cnic_alloc_dev(dev, pdev);
4507 if (cdev == NULL)
4508 goto cnic_err;
4509
4510 set_bit(CNIC_F_BNX2_CLASS, &cdev->flags);
4511 cdev->submit_kwqes = cnic_submit_bnx2_kwqes;
4512
4513 cp = cdev->cnic_priv;
4514 cp->ethdev = ethdev;
4515 cdev->pcidev = pdev;
4516
4517 cp->cnic_ops = &cnic_bnx2_ops;
4518 cp->start_hw = cnic_start_bnx2_hw;
4519 cp->stop_hw = cnic_stop_bnx2_hw;
4520 cp->setup_pgtbl = cnic_setup_page_tbl;
4521 cp->alloc_resc = cnic_alloc_bnx2_resc;
4522 cp->free_resc = cnic_free_resc;
4523 cp->start_cm = cnic_cm_init_bnx2_hw;
4524 cp->stop_cm = cnic_cm_stop_bnx2_hw;
4525 cp->enable_int = cnic_enable_bnx2_int;
4526 cp->disable_int_sync = cnic_disable_bnx2_int_sync;
4527 cp->close_conn = cnic_close_bnx2_conn;
4528 cp->next_idx = cnic_bnx2_next_idx;
4529 cp->hw_idx = cnic_bnx2_hw_idx;
4530 return cdev;
4531
4532cnic_err:
4533 dev_put(dev);
4534 return NULL;
4535}
4536
Michael Chan71034ba2009-10-10 13:46:59 +00004537static struct cnic_dev *init_bnx2x_cnic(struct net_device *dev)
4538{
4539 struct pci_dev *pdev;
4540 struct cnic_dev *cdev;
4541 struct cnic_local *cp;
4542 struct cnic_eth_dev *ethdev = NULL;
4543 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
4544
4545 probe = symbol_get(bnx2x_cnic_probe);
4546 if (probe) {
4547 ethdev = (*probe)(dev);
4548 symbol_put(bnx2x_cnic_probe);
4549 }
4550 if (!ethdev)
4551 return NULL;
4552
4553 pdev = ethdev->pdev;
4554 if (!pdev)
4555 return NULL;
4556
4557 dev_hold(dev);
4558 cdev = cnic_alloc_dev(dev, pdev);
4559 if (cdev == NULL) {
4560 dev_put(dev);
4561 return NULL;
4562 }
4563
4564 set_bit(CNIC_F_BNX2X_CLASS, &cdev->flags);
4565 cdev->submit_kwqes = cnic_submit_bnx2x_kwqes;
4566
4567 cp = cdev->cnic_priv;
4568 cp->ethdev = ethdev;
4569 cdev->pcidev = pdev;
4570
4571 cp->cnic_ops = &cnic_bnx2x_ops;
4572 cp->start_hw = cnic_start_bnx2x_hw;
4573 cp->stop_hw = cnic_stop_bnx2x_hw;
4574 cp->setup_pgtbl = cnic_setup_page_tbl_le;
4575 cp->alloc_resc = cnic_alloc_bnx2x_resc;
4576 cp->free_resc = cnic_free_resc;
4577 cp->start_cm = cnic_cm_init_bnx2x_hw;
4578 cp->stop_cm = cnic_cm_stop_bnx2x_hw;
4579 cp->enable_int = cnic_enable_bnx2x_int;
4580 cp->disable_int_sync = cnic_disable_bnx2x_int_sync;
4581 cp->ack_int = cnic_ack_bnx2x_msix;
4582 cp->close_conn = cnic_close_bnx2x_conn;
4583 cp->next_idx = cnic_bnx2x_next_idx;
4584 cp->hw_idx = cnic_bnx2x_hw_idx;
4585 return cdev;
4586}
4587
Michael Chana4636962009-06-08 18:14:43 -07004588static struct cnic_dev *is_cnic_dev(struct net_device *dev)
4589{
4590 struct ethtool_drvinfo drvinfo;
4591 struct cnic_dev *cdev = NULL;
4592
4593 if (dev->ethtool_ops && dev->ethtool_ops->get_drvinfo) {
4594 memset(&drvinfo, 0, sizeof(drvinfo));
4595 dev->ethtool_ops->get_drvinfo(dev, &drvinfo);
4596
4597 if (!strcmp(drvinfo.driver, "bnx2"))
4598 cdev = init_bnx2_cnic(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00004599 if (!strcmp(drvinfo.driver, "bnx2x"))
4600 cdev = init_bnx2x_cnic(dev);
Michael Chana4636962009-06-08 18:14:43 -07004601 if (cdev) {
4602 write_lock(&cnic_dev_lock);
4603 list_add(&cdev->list, &cnic_dev_list);
4604 write_unlock(&cnic_dev_lock);
4605 }
4606 }
4607 return cdev;
4608}
4609
4610/**
4611 * netdev event handler
4612 */
4613static int cnic_netdev_event(struct notifier_block *this, unsigned long event,
4614 void *ptr)
4615{
4616 struct net_device *netdev = ptr;
4617 struct cnic_dev *dev;
4618 int if_type;
4619 int new_dev = 0;
4620
4621 dev = cnic_from_netdev(netdev);
4622
4623 if (!dev && (event == NETDEV_REGISTER || event == NETDEV_UP)) {
4624 /* Check for the hot-plug device */
4625 dev = is_cnic_dev(netdev);
4626 if (dev) {
4627 new_dev = 1;
4628 cnic_hold(dev);
4629 }
4630 }
4631 if (dev) {
4632 struct cnic_local *cp = dev->cnic_priv;
4633
4634 if (new_dev)
4635 cnic_ulp_init(dev);
4636 else if (event == NETDEV_UNREGISTER)
4637 cnic_ulp_exit(dev);
Michael Chan6053bbf2009-10-02 11:03:28 -07004638
4639 if (event == NETDEV_UP) {
Michael Chana3059b12009-08-14 15:49:44 +00004640 if (cnic_register_netdev(dev) != 0) {
4641 cnic_put(dev);
4642 goto done;
4643 }
Michael Chana4636962009-06-08 18:14:43 -07004644 if (!cnic_start_hw(dev))
4645 cnic_ulp_start(dev);
Michael Chana4636962009-06-08 18:14:43 -07004646 }
4647
4648 rcu_read_lock();
4649 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
4650 struct cnic_ulp_ops *ulp_ops;
4651 void *ctx;
4652
4653 ulp_ops = rcu_dereference(cp->ulp_ops[if_type]);
4654 if (!ulp_ops || !ulp_ops->indicate_netevent)
4655 continue;
4656
4657 ctx = cp->ulp_handle[if_type];
4658
4659 ulp_ops->indicate_netevent(ctx, event);
4660 }
4661 rcu_read_unlock();
4662
4663 if (event == NETDEV_GOING_DOWN) {
Michael Chana4636962009-06-08 18:14:43 -07004664 cnic_ulp_stop(dev);
4665 cnic_stop_hw(dev);
Michael Chana3059b12009-08-14 15:49:44 +00004666 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07004667 } else if (event == NETDEV_UNREGISTER) {
4668 write_lock(&cnic_dev_lock);
4669 list_del_init(&dev->list);
4670 write_unlock(&cnic_dev_lock);
4671
4672 cnic_put(dev);
4673 cnic_free_dev(dev);
4674 goto done;
4675 }
4676 cnic_put(dev);
4677 }
4678done:
4679 return NOTIFY_DONE;
4680}
4681
4682static struct notifier_block cnic_netdev_notifier = {
4683 .notifier_call = cnic_netdev_event
4684};
4685
4686static void cnic_release(void)
4687{
4688 struct cnic_dev *dev;
4689
4690 while (!list_empty(&cnic_dev_list)) {
4691 dev = list_entry(cnic_dev_list.next, struct cnic_dev, list);
4692 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
4693 cnic_ulp_stop(dev);
4694 cnic_stop_hw(dev);
4695 }
4696
4697 cnic_ulp_exit(dev);
Michael Chana3059b12009-08-14 15:49:44 +00004698 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07004699 list_del_init(&dev->list);
4700 cnic_free_dev(dev);
4701 }
4702}
4703
4704static int __init cnic_init(void)
4705{
4706 int rc = 0;
4707
Joe Perchesddf79b22010-02-17 15:01:54 +00004708 pr_info("%s", version);
Michael Chana4636962009-06-08 18:14:43 -07004709
4710 rc = register_netdevice_notifier(&cnic_netdev_notifier);
4711 if (rc) {
4712 cnic_release();
4713 return rc;
4714 }
4715
4716 return 0;
4717}
4718
4719static void __exit cnic_exit(void)
4720{
4721 unregister_netdevice_notifier(&cnic_netdev_notifier);
4722 cnic_release();
Michael Chana4636962009-06-08 18:14:43 -07004723}
4724
4725module_init(cnic_init);
4726module_exit(cnic_exit);