cnic: Refactor and fix cnic_ready_to_close().
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / cnic.c
blob11eeded146d9be9c54ea427af2f9b8a6452f39ab
1 /* cnic.c: Broadcom CNIC core network driver.
3 * Copyright (c) 2006-2010 Broadcom Corporation
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.
9 * Original skeleton written by: John(Zongxi) Chen (zongxi@broadcom.com)
10 * Modified and maintained by: Michael Chan <mchan@broadcom.com>
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/module.h>
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>
38 #include <net/ip6_checksum.h>
39 #include <scsi/iscsi_if.h>
41 #include "cnic_if.h"
42 #include "bnx2.h"
43 #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"
48 #include "cnic.h"
49 #include "cnic_defs.h"
51 #define DRV_MODULE_NAME "cnic"
53 static char version[] __devinitdata =
54 "Broadcom NetXtreme II CNIC Driver " DRV_MODULE_NAME " v" CNIC_MODULE_VERSION " (" CNIC_MODULE_RELDATE ")\n";
56 MODULE_AUTHOR("Michael Chan <mchan@broadcom.com> and John(Zongxi) "
57 "Chen (zongxi@broadcom.com");
58 MODULE_DESCRIPTION("Broadcom NetXtreme II CNIC Driver");
59 MODULE_LICENSE("GPL");
60 MODULE_VERSION(CNIC_MODULE_VERSION);
62 static LIST_HEAD(cnic_dev_list);
63 static DEFINE_RWLOCK(cnic_dev_lock);
64 static DEFINE_MUTEX(cnic_lock);
66 static struct cnic_ulp_ops *cnic_ulp_tbl[MAX_CNIC_ULP_TYPE];
68 static int cnic_service_bnx2(void *, void *);
69 static int cnic_service_bnx2x(void *, void *);
70 static int cnic_ctl(void *, struct cnic_ctl_info *);
72 static struct cnic_ops cnic_bnx2_ops = {
73 .cnic_owner = THIS_MODULE,
74 .cnic_handler = cnic_service_bnx2,
75 .cnic_ctl = cnic_ctl,
78 static struct cnic_ops cnic_bnx2x_ops = {
79 .cnic_owner = THIS_MODULE,
80 .cnic_handler = cnic_service_bnx2x,
81 .cnic_ctl = cnic_ctl,
84 static void cnic_shutdown_rings(struct cnic_dev *);
85 static void cnic_init_rings(struct cnic_dev *);
86 static int cnic_cm_set_pg(struct cnic_sock *);
88 static int cnic_uio_open(struct uio_info *uinfo, struct inode *inode)
90 struct cnic_dev *dev = uinfo->priv;
91 struct cnic_local *cp = dev->cnic_priv;
93 if (!capable(CAP_NET_ADMIN))
94 return -EPERM;
96 if (cp->uio_dev != -1)
97 return -EBUSY;
99 rtnl_lock();
100 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
101 rtnl_unlock();
102 return -ENODEV;
105 cp->uio_dev = iminor(inode);
107 cnic_init_rings(dev);
108 rtnl_unlock();
110 return 0;
113 static int cnic_uio_close(struct uio_info *uinfo, struct inode *inode)
115 struct cnic_dev *dev = uinfo->priv;
116 struct cnic_local *cp = dev->cnic_priv;
118 cnic_shutdown_rings(dev);
120 cp->uio_dev = -1;
121 return 0;
124 static inline void cnic_hold(struct cnic_dev *dev)
126 atomic_inc(&dev->ref_count);
129 static inline void cnic_put(struct cnic_dev *dev)
131 atomic_dec(&dev->ref_count);
134 static inline void csk_hold(struct cnic_sock *csk)
136 atomic_inc(&csk->ref_count);
139 static inline void csk_put(struct cnic_sock *csk)
141 atomic_dec(&csk->ref_count);
144 static struct cnic_dev *cnic_from_netdev(struct net_device *netdev)
146 struct cnic_dev *cdev;
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;
156 read_unlock(&cnic_dev_lock);
157 return NULL;
160 static inline void ulp_get(struct cnic_ulp_ops *ulp_ops)
162 atomic_inc(&ulp_ops->ref_count);
165 static inline void ulp_put(struct cnic_ulp_ops *ulp_ops)
167 atomic_dec(&ulp_ops->ref_count);
170 static void cnic_ctx_wr(struct cnic_dev *dev, u32 cid_addr, u32 off, u32 val)
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;
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);
184 static void cnic_ctx_tbl_wr(struct cnic_dev *dev, u32 off, dma_addr_t addr)
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;
191 info.cmd = DRV_CTL_CTXTBL_WR_CMD;
192 io->offset = off;
193 io->dma_addr = addr;
194 ethdev->drv_ctl(dev->netdev, &info);
197 static void cnic_ring_ctl(struct cnic_dev *dev, u32 cid, u32 cl_id, int start)
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;
204 if (start)
205 info.cmd = DRV_CTL_START_L2_CMD;
206 else
207 info.cmd = DRV_CTL_STOP_L2_CMD;
209 ring->cid = cid;
210 ring->client_id = cl_id;
211 ethdev->drv_ctl(dev->netdev, &info);
214 static void cnic_reg_wr_ind(struct cnic_dev *dev, u32 off, u32 val)
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;
221 info.cmd = DRV_CTL_IO_WR_CMD;
222 io->offset = off;
223 io->data = val;
224 ethdev->drv_ctl(dev->netdev, &info);
227 static u32 cnic_reg_rd_ind(struct cnic_dev *dev, u32 off)
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;
234 info.cmd = DRV_CTL_IO_RD_CMD;
235 io->offset = off;
236 ethdev->drv_ctl(dev->netdev, &info);
237 return io->data;
240 static int cnic_in_use(struct cnic_sock *csk)
242 return test_bit(SK_F_INUSE, &csk->flags);
245 static void cnic_kwq_completion(struct cnic_dev *dev, u32 count)
247 struct cnic_local *cp = dev->cnic_priv;
248 struct cnic_eth_dev *ethdev = cp->ethdev;
249 struct drv_ctl_info info;
251 info.cmd = DRV_CTL_COMPLETION_CMD;
252 info.data.comp.comp_count = count;
253 ethdev->drv_ctl(dev->netdev, &info);
256 static int cnic_get_l5_cid(struct cnic_local *cp, u32 cid, u32 *l5_cid)
258 u32 i;
260 for (i = 0; i < MAX_ISCSI_TBL_SZ; i++) {
261 if (cp->ctx_tbl[i].cid == cid) {
262 *l5_cid = i;
263 return 0;
266 return -EINVAL;
269 static int cnic_send_nlmsg(struct cnic_local *cp, u32 type,
270 struct cnic_sock *csk)
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;
278 if (cp->uio_dev == -1)
279 return -ENODEV;
281 if (csk) {
282 len = sizeof(path_req);
283 buf = (char *) &path_req;
284 memset(&path_req, 0, len);
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;
297 path_req.vlan_id = csk->vlan_id;
298 path_req.pmtu = csk->mtu;
301 rcu_read_lock();
302 ulp_ops = rcu_dereference(cnic_ulp_tbl[CNIC_ULP_ISCSI]);
303 if (ulp_ops)
304 ulp_ops->iscsi_nl_send_msg(cp->dev, msg_type, buf, len);
305 rcu_read_unlock();
306 return 0;
309 static int cnic_iscsi_nl_msg_recv(struct cnic_dev *dev, u32 msg_type,
310 char *buf, u16 len)
312 int rc = -EINVAL;
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;
321 if (len < sizeof(*path_resp))
322 break;
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;
330 rcu_read_lock();
331 if (!rcu_dereference(cp->ulp_ops[CNIC_ULP_L4])) {
332 rc = -ENODEV;
333 rcu_read_unlock();
334 break;
336 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);
349 csk_put(csk);
350 rcu_read_unlock();
351 rc = 0;
355 return rc;
358 static int cnic_offld_prep(struct cnic_sock *csk)
360 if (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
361 return 0;
363 if (!test_bit(SK_F_CONNECT_START, &csk->flags)) {
364 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
365 return 0;
368 return 1;
371 static int cnic_close_prep(struct cnic_sock *csk)
373 clear_bit(SK_F_CONNECT_START, &csk->flags);
374 smp_mb__after_clear_bit();
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);
380 return 1;
382 return 0;
385 static int cnic_abort_prep(struct cnic_sock *csk)
387 clear_bit(SK_F_CONNECT_START, &csk->flags);
388 smp_mb__after_clear_bit();
390 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
391 msleep(1);
393 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
394 csk->state = L4_KCQE_OPCODE_VALUE_RESET_COMP;
395 return 1;
398 return 0;
401 static void cnic_uio_stop(void)
403 struct cnic_dev *dev;
405 read_lock(&cnic_dev_lock);
406 list_for_each_entry(dev, &cnic_dev_list, list) {
407 struct cnic_local *cp = dev->cnic_priv;
409 if (cp->cnic_uinfo)
410 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
412 read_unlock(&cnic_dev_lock);
415 int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops)
417 struct cnic_dev *dev;
419 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
420 pr_err("%s: Bad type %d\n", __func__, ulp_type);
421 return -EINVAL;
423 mutex_lock(&cnic_lock);
424 if (cnic_ulp_tbl[ulp_type]) {
425 pr_err("%s: Type %d has already been registered\n",
426 __func__, ulp_type);
427 mutex_unlock(&cnic_lock);
428 return -EBUSY;
431 read_lock(&cnic_dev_lock);
432 list_for_each_entry(dev, &cnic_dev_list, list) {
433 struct cnic_local *cp = dev->cnic_priv;
435 clear_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]);
437 read_unlock(&cnic_dev_lock);
439 atomic_set(&ulp_ops->ref_count, 0);
440 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], ulp_ops);
441 mutex_unlock(&cnic_lock);
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;
449 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]))
450 ulp_ops->cnic_init(dev);
452 read_unlock(&cnic_dev_lock);
453 rtnl_unlock();
455 return 0;
458 int cnic_unregister_driver(int ulp_type)
460 struct cnic_dev *dev;
461 struct cnic_ulp_ops *ulp_ops;
462 int i = 0;
464 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
465 pr_err("%s: Bad type %d\n", __func__, ulp_type);
466 return -EINVAL;
468 mutex_lock(&cnic_lock);
469 ulp_ops = cnic_ulp_tbl[ulp_type];
470 if (!ulp_ops) {
471 pr_err("%s: Type %d has not been registered\n",
472 __func__, ulp_type);
473 goto out_unlock;
475 read_lock(&cnic_dev_lock);
476 list_for_each_entry(dev, &cnic_dev_list, list) {
477 struct cnic_local *cp = dev->cnic_priv;
479 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
480 pr_err("%s: Type %d still has devices registered\n",
481 __func__, ulp_type);
482 read_unlock(&cnic_dev_lock);
483 goto out_unlock;
486 read_unlock(&cnic_dev_lock);
488 if (ulp_type == CNIC_ULP_ISCSI)
489 cnic_uio_stop();
491 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], NULL);
493 mutex_unlock(&cnic_lock);
494 synchronize_rcu();
495 while ((atomic_read(&ulp_ops->ref_count) != 0) && (i < 20)) {
496 msleep(100);
497 i++;
500 if (atomic_read(&ulp_ops->ref_count) != 0)
501 netdev_warn(dev->netdev, "Failed waiting for ref count to go to zero\n");
502 return 0;
504 out_unlock:
505 mutex_unlock(&cnic_lock);
506 return -EINVAL;
509 static int cnic_start_hw(struct cnic_dev *);
510 static void cnic_stop_hw(struct cnic_dev *);
512 static int cnic_register_device(struct cnic_dev *dev, int ulp_type,
513 void *ulp_ctx)
515 struct cnic_local *cp = dev->cnic_priv;
516 struct cnic_ulp_ops *ulp_ops;
518 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
519 pr_err("%s: Bad type %d\n", __func__, ulp_type);
520 return -EINVAL;
522 mutex_lock(&cnic_lock);
523 if (cnic_ulp_tbl[ulp_type] == NULL) {
524 pr_err("%s: Driver with type %d has not been registered\n",
525 __func__, ulp_type);
526 mutex_unlock(&cnic_lock);
527 return -EAGAIN;
529 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
530 pr_err("%s: Type %d has already been registered to this device\n",
531 __func__, ulp_type);
532 mutex_unlock(&cnic_lock);
533 return -EBUSY;
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);
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]);
546 mutex_unlock(&cnic_lock);
548 return 0;
551 EXPORT_SYMBOL(cnic_register_driver);
553 static int cnic_unregister_device(struct cnic_dev *dev, int ulp_type)
555 struct cnic_local *cp = dev->cnic_priv;
556 int i = 0;
558 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
559 pr_err("%s: Bad type %d\n", __func__, ulp_type);
560 return -EINVAL;
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 {
567 pr_err("%s: device not registered to this ulp type %d\n",
568 __func__, ulp_type);
569 mutex_unlock(&cnic_lock);
570 return -EINVAL;
572 mutex_unlock(&cnic_lock);
574 synchronize_rcu();
576 while (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]) &&
577 i < 20) {
578 msleep(100);
579 i++;
581 if (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]))
582 netdev_warn(dev->netdev, "Failed waiting for ULP up call to complete\n");
584 return 0;
586 EXPORT_SYMBOL(cnic_unregister_driver);
588 static int cnic_init_id_tbl(struct cnic_id_tbl *id_tbl, u32 size, u32 start_id)
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;
598 return 0;
601 static void cnic_free_id_tbl(struct cnic_id_tbl *id_tbl)
603 kfree(id_tbl->table);
604 id_tbl->table = NULL;
607 static int cnic_alloc_id(struct cnic_id_tbl *id_tbl, u32 id)
609 int ret = -1;
611 id -= id_tbl->start;
612 if (id >= id_tbl->max)
613 return ret;
615 spin_lock(&id_tbl->lock);
616 if (!test_bit(id, id_tbl->table)) {
617 set_bit(id, id_tbl->table);
618 ret = 0;
620 spin_unlock(&id_tbl->lock);
621 return ret;
624 /* Returns -1 if not successful */
625 static u32 cnic_alloc_new_id(struct cnic_id_tbl *id_tbl)
627 u32 id;
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;
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;
646 spin_unlock(&id_tbl->lock);
648 return id;
651 static void cnic_free_id(struct cnic_id_tbl *id_tbl, u32 id)
653 if (id == -1)
654 return;
656 id -= id_tbl->start;
657 if (id >= id_tbl->max)
658 return;
660 clear_bit(id, id_tbl->table);
663 static void cnic_free_dma(struct cnic_dev *dev, struct cnic_dma *dma)
665 int i;
667 if (!dma->pg_arr)
668 return;
670 for (i = 0; i < dma->num_pages; i++) {
671 if (dma->pg_arr[i]) {
672 dma_free_coherent(&dev->pcidev->dev, BCM_PAGE_SIZE,
673 dma->pg_arr[i], dma->pg_map_arr[i]);
674 dma->pg_arr[i] = NULL;
677 if (dma->pgtbl) {
678 dma_free_coherent(&dev->pcidev->dev, dma->pgtbl_size,
679 dma->pgtbl, dma->pgtbl_map);
680 dma->pgtbl = NULL;
682 kfree(dma->pg_arr);
683 dma->pg_arr = NULL;
684 dma->num_pages = 0;
687 static void cnic_setup_page_tbl(struct cnic_dev *dev, struct cnic_dma *dma)
689 int i;
690 u32 *page_table = dma->pgtbl;
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++;
701 static void cnic_setup_page_tbl_le(struct cnic_dev *dev, struct cnic_dma *dma)
703 int i;
704 u32 *page_table = dma->pgtbl;
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++;
715 static int cnic_alloc_dma(struct cnic_dev *dev, struct cnic_dma *dma,
716 int pages, int use_pg_tbl)
718 int i, size;
719 struct cnic_local *cp = dev->cnic_priv;
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;
726 dma->pg_map_arr = (dma_addr_t *) (dma->pg_arr + pages);
727 dma->num_pages = pages;
729 for (i = 0; i < pages; i++) {
730 dma->pg_arr[i] = dma_alloc_coherent(&dev->pcidev->dev,
731 BCM_PAGE_SIZE,
732 &dma->pg_map_arr[i],
733 GFP_ATOMIC);
734 if (dma->pg_arr[i] == NULL)
735 goto error;
737 if (!use_pg_tbl)
738 return 0;
740 dma->pgtbl_size = ((pages * 8) + BCM_PAGE_SIZE - 1) &
741 ~(BCM_PAGE_SIZE - 1);
742 dma->pgtbl = dma_alloc_coherent(&dev->pcidev->dev, dma->pgtbl_size,
743 &dma->pgtbl_map, GFP_ATOMIC);
744 if (dma->pgtbl == NULL)
745 goto error;
747 cp->setup_pgtbl(dev, dma);
749 return 0;
751 error:
752 cnic_free_dma(dev, dma);
753 return -ENOMEM;
756 static void cnic_free_context(struct cnic_dev *dev)
758 struct cnic_local *cp = dev->cnic_priv;
759 int i;
761 for (i = 0; i < cp->ctx_blks; i++) {
762 if (cp->ctx_arr[i].ctx) {
763 dma_free_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
764 cp->ctx_arr[i].ctx,
765 cp->ctx_arr[i].mapping);
766 cp->ctx_arr[i].ctx = NULL;
771 static void cnic_free_resc(struct cnic_dev *dev)
773 struct cnic_local *cp = dev->cnic_priv;
774 int i = 0;
776 if (cp->cnic_uinfo) {
777 while (cp->uio_dev != -1 && i < 15) {
778 msleep(100);
779 i++;
781 uio_unregister_device(cp->cnic_uinfo);
782 kfree(cp->cnic_uinfo);
783 cp->cnic_uinfo = NULL;
786 if (cp->l2_buf) {
787 dma_free_coherent(&dev->pcidev->dev, cp->l2_buf_size,
788 cp->l2_buf, cp->l2_buf_map);
789 cp->l2_buf = NULL;
792 if (cp->l2_ring) {
793 dma_free_coherent(&dev->pcidev->dev, cp->l2_ring_size,
794 cp->l2_ring, cp->l2_ring_map);
795 cp->l2_ring = NULL;
798 cnic_free_context(dev);
799 kfree(cp->ctx_arr);
800 cp->ctx_arr = NULL;
801 cp->ctx_blks = 0;
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);
806 cnic_free_dma(dev, &cp->kwq_16_data_info);
807 cnic_free_dma(dev, &cp->kcq_info);
808 kfree(cp->iscsi_tbl);
809 cp->iscsi_tbl = NULL;
810 kfree(cp->ctx_tbl);
811 cp->ctx_tbl = NULL;
813 cnic_free_id_tbl(&cp->cid_tbl);
816 static int cnic_alloc_context(struct cnic_dev *dev)
818 struct cnic_local *cp = dev->cnic_priv;
820 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
821 int i, k, arr_size;
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;
831 k = 0;
832 for (i = 0; i < 2; i++) {
833 u32 j, reg, off, lo, hi;
835 if (i == 0)
836 off = BNX2_PG_CTX_MAP;
837 else
838 off = BNX2_ISCSI_CTX_MAP;
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;
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;
853 for (i = 0; i < cp->ctx_blks; i++) {
854 cp->ctx_arr[i].ctx =
855 dma_alloc_coherent(&dev->pcidev->dev,
856 BCM_PAGE_SIZE,
857 &cp->ctx_arr[i].mapping,
858 GFP_KERNEL);
859 if (cp->ctx_arr[i].ctx == NULL)
860 return -ENOMEM;
863 return 0;
866 static int cnic_alloc_l2_rings(struct cnic_dev *dev, int pages)
868 struct cnic_local *cp = dev->cnic_priv;
870 cp->l2_ring_size = pages * BCM_PAGE_SIZE;
871 cp->l2_ring = dma_alloc_coherent(&dev->pcidev->dev, cp->l2_ring_size,
872 &cp->l2_ring_map,
873 GFP_KERNEL | __GFP_COMP);
874 if (!cp->l2_ring)
875 return -ENOMEM;
877 cp->l2_buf_size = (cp->l2_rx_ring_size + 1) * cp->l2_single_buf_size;
878 cp->l2_buf_size = PAGE_ALIGN(cp->l2_buf_size);
879 cp->l2_buf = dma_alloc_coherent(&dev->pcidev->dev, cp->l2_buf_size,
880 &cp->l2_buf_map,
881 GFP_KERNEL | __GFP_COMP);
882 if (!cp->l2_buf)
883 return -ENOMEM;
885 return 0;
888 static int cnic_alloc_uio(struct cnic_dev *dev) {
889 struct cnic_local *cp = dev->cnic_priv;
890 struct uio_info *uinfo;
891 int ret;
893 uinfo = kzalloc(sizeof(*uinfo), GFP_ATOMIC);
894 if (!uinfo)
895 return -ENOMEM;
897 uinfo->mem[0].addr = dev->netdev->base_addr;
898 uinfo->mem[0].internal_addr = dev->regview;
899 uinfo->mem[0].size = dev->netdev->mem_end - dev->netdev->mem_start;
900 uinfo->mem[0].memtype = UIO_MEM_PHYS;
902 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
903 uinfo->mem[1].addr = (unsigned long) cp->status_blk.gen &
904 PAGE_MASK;
905 if (cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
906 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE * 9;
907 else
908 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE;
910 uinfo->name = "bnx2_cnic";
911 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
912 uinfo->mem[1].addr = (unsigned long) cp->bnx2x_def_status_blk &
913 PAGE_MASK;
914 uinfo->mem[1].size = sizeof(struct host_def_status_block);
916 uinfo->name = "bnx2x_cnic";
919 uinfo->mem[1].memtype = UIO_MEM_LOGICAL;
921 uinfo->mem[2].addr = (unsigned long) cp->l2_ring;
922 uinfo->mem[2].size = cp->l2_ring_size;
923 uinfo->mem[2].memtype = UIO_MEM_LOGICAL;
925 uinfo->mem[3].addr = (unsigned long) cp->l2_buf;
926 uinfo->mem[3].size = cp->l2_buf_size;
927 uinfo->mem[3].memtype = UIO_MEM_LOGICAL;
929 uinfo->version = CNIC_MODULE_VERSION;
930 uinfo->irq = UIO_IRQ_CUSTOM;
932 uinfo->open = cnic_uio_open;
933 uinfo->release = cnic_uio_close;
935 uinfo->priv = dev;
937 ret = uio_register_device(&dev->pcidev->dev, uinfo);
938 if (ret) {
939 kfree(uinfo);
940 return ret;
943 cp->cnic_uinfo = uinfo;
944 return 0;
947 static int cnic_alloc_bnx2_resc(struct cnic_dev *dev)
949 struct cnic_local *cp = dev->cnic_priv;
950 int ret;
952 ret = cnic_alloc_dma(dev, &cp->kwq_info, KWQ_PAGE_CNT, 1);
953 if (ret)
954 goto error;
955 cp->kwq = (struct kwqe **) cp->kwq_info.pg_arr;
957 ret = cnic_alloc_dma(dev, &cp->kcq_info, KCQ_PAGE_CNT, 1);
958 if (ret)
959 goto error;
960 cp->kcq = (struct kcqe **) cp->kcq_info.pg_arr;
962 ret = cnic_alloc_context(dev);
963 if (ret)
964 goto error;
966 ret = cnic_alloc_l2_rings(dev, 2);
967 if (ret)
968 goto error;
970 ret = cnic_alloc_uio(dev);
971 if (ret)
972 goto error;
974 return 0;
976 error:
977 cnic_free_resc(dev);
978 return ret;
981 static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
983 struct cnic_local *cp = dev->cnic_priv;
984 struct cnic_eth_dev *ethdev = cp->ethdev;
985 int ctx_blk_size = cp->ethdev->ctx_blk_size;
986 int total_mem, blks, i, cid_space;
988 if (BNX2X_ISCSI_START_CID < ethdev->starting_cid)
989 return -EINVAL;
991 cid_space = MAX_ISCSI_TBL_SZ +
992 (BNX2X_ISCSI_START_CID - ethdev->starting_cid);
994 total_mem = BNX2X_CONTEXT_MEM_SIZE * cid_space;
995 blks = total_mem / ctx_blk_size;
996 if (total_mem % ctx_blk_size)
997 blks++;
999 if (blks > cp->ethdev->ctx_tbl_len)
1000 return -ENOMEM;
1002 cp->ctx_arr = kzalloc(blks * sizeof(struct cnic_ctx), GFP_KERNEL);
1003 if (cp->ctx_arr == NULL)
1004 return -ENOMEM;
1006 cp->ctx_blks = blks;
1007 cp->ctx_blk_size = ctx_blk_size;
1008 if (BNX2X_CHIP_IS_E1H(cp->chip_id))
1009 cp->ctx_align = 0;
1010 else
1011 cp->ctx_align = ctx_blk_size;
1013 cp->cids_per_blk = ctx_blk_size / BNX2X_CONTEXT_MEM_SIZE;
1015 for (i = 0; i < blks; i++) {
1016 cp->ctx_arr[i].ctx =
1017 dma_alloc_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
1018 &cp->ctx_arr[i].mapping,
1019 GFP_KERNEL);
1020 if (cp->ctx_arr[i].ctx == NULL)
1021 return -ENOMEM;
1023 if (cp->ctx_align && cp->ctx_blk_size == ctx_blk_size) {
1024 if (cp->ctx_arr[i].mapping & (cp->ctx_align - 1)) {
1025 cnic_free_context(dev);
1026 cp->ctx_blk_size += cp->ctx_align;
1027 i = -1;
1028 continue;
1032 return 0;
1035 static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
1037 struct cnic_local *cp = dev->cnic_priv;
1038 int i, j, n, ret, pages;
1039 struct cnic_dma *kwq_16_dma = &cp->kwq_16_data_info;
1041 cp->iscsi_tbl = kzalloc(sizeof(struct cnic_iscsi) * MAX_ISCSI_TBL_SZ,
1042 GFP_KERNEL);
1043 if (!cp->iscsi_tbl)
1044 goto error;
1046 cp->ctx_tbl = kzalloc(sizeof(struct cnic_context) *
1047 MAX_CNIC_L5_CONTEXT, GFP_KERNEL);
1048 if (!cp->ctx_tbl)
1049 goto error;
1051 for (i = 0; i < MAX_ISCSI_TBL_SZ; i++) {
1052 cp->ctx_tbl[i].proto.iscsi = &cp->iscsi_tbl[i];
1053 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_ISCSI;
1056 pages = PAGE_ALIGN(MAX_CNIC_L5_CONTEXT * CNIC_KWQ16_DATA_SIZE) /
1057 PAGE_SIZE;
1059 ret = cnic_alloc_dma(dev, kwq_16_dma, pages, 0);
1060 if (ret)
1061 return -ENOMEM;
1063 n = PAGE_SIZE / CNIC_KWQ16_DATA_SIZE;
1064 for (i = 0, j = 0; i < MAX_ISCSI_TBL_SZ; i++) {
1065 long off = CNIC_KWQ16_DATA_SIZE * (i % n);
1067 cp->ctx_tbl[i].kwqe_data = kwq_16_dma->pg_arr[j] + off;
1068 cp->ctx_tbl[i].kwqe_data_mapping = kwq_16_dma->pg_map_arr[j] +
1069 off;
1071 if ((i % n) == (n - 1))
1072 j++;
1075 ret = cnic_alloc_dma(dev, &cp->kcq_info, KCQ_PAGE_CNT, 0);
1076 if (ret)
1077 goto error;
1078 cp->kcq = (struct kcqe **) cp->kcq_info.pg_arr;
1080 for (i = 0; i < KCQ_PAGE_CNT; i++) {
1081 struct bnx2x_bd_chain_next *next =
1082 (struct bnx2x_bd_chain_next *)
1083 &cp->kcq[i][MAX_KCQE_CNT];
1084 int j = i + 1;
1086 if (j >= KCQ_PAGE_CNT)
1087 j = 0;
1088 next->addr_hi = (u64) cp->kcq_info.pg_map_arr[j] >> 32;
1089 next->addr_lo = cp->kcq_info.pg_map_arr[j] & 0xffffffff;
1092 pages = PAGE_ALIGN(BNX2X_ISCSI_NUM_CONNECTIONS *
1093 BNX2X_ISCSI_CONN_BUF_SIZE) / PAGE_SIZE;
1094 ret = cnic_alloc_dma(dev, &cp->conn_buf_info, pages, 1);
1095 if (ret)
1096 goto error;
1098 pages = PAGE_ALIGN(BNX2X_ISCSI_GLB_BUF_SIZE) / PAGE_SIZE;
1099 ret = cnic_alloc_dma(dev, &cp->gbl_buf_info, pages, 0);
1100 if (ret)
1101 goto error;
1103 ret = cnic_alloc_bnx2x_context(dev);
1104 if (ret)
1105 goto error;
1107 cp->bnx2x_def_status_blk = cp->ethdev->irq_arr[1].status_blk;
1109 memset(cp->status_blk.bnx2x, 0, sizeof(*cp->status_blk.bnx2x));
1111 cp->l2_rx_ring_size = 15;
1113 ret = cnic_alloc_l2_rings(dev, 4);
1114 if (ret)
1115 goto error;
1117 ret = cnic_alloc_uio(dev);
1118 if (ret)
1119 goto error;
1121 return 0;
1123 error:
1124 cnic_free_resc(dev);
1125 return -ENOMEM;
1128 static inline u32 cnic_kwq_avail(struct cnic_local *cp)
1130 return cp->max_kwq_idx -
1131 ((cp->kwq_prod_idx - cp->kwq_con_idx) & cp->max_kwq_idx);
1134 static int cnic_submit_bnx2_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
1135 u32 num_wqes)
1137 struct cnic_local *cp = dev->cnic_priv;
1138 struct kwqe *prod_qe;
1139 u16 prod, sw_prod, i;
1141 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
1142 return -EAGAIN; /* bnx2 is down */
1144 spin_lock_bh(&cp->cnic_ulp_lock);
1145 if (num_wqes > cnic_kwq_avail(cp) &&
1146 !test_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags)) {
1147 spin_unlock_bh(&cp->cnic_ulp_lock);
1148 return -EAGAIN;
1151 clear_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
1153 prod = cp->kwq_prod_idx;
1154 sw_prod = prod & MAX_KWQ_IDX;
1155 for (i = 0; i < num_wqes; i++) {
1156 prod_qe = &cp->kwq[KWQ_PG(sw_prod)][KWQ_IDX(sw_prod)];
1157 memcpy(prod_qe, wqes[i], sizeof(struct kwqe));
1158 prod++;
1159 sw_prod = prod & MAX_KWQ_IDX;
1161 cp->kwq_prod_idx = prod;
1163 CNIC_WR16(dev, cp->kwq_io_addr, cp->kwq_prod_idx);
1165 spin_unlock_bh(&cp->cnic_ulp_lock);
1166 return 0;
1169 static void *cnic_get_kwqe_16_data(struct cnic_local *cp, u32 l5_cid,
1170 union l5cm_specific_data *l5_data)
1172 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1173 dma_addr_t map;
1175 map = ctx->kwqe_data_mapping;
1176 l5_data->phy_address.lo = (u64) map & 0xffffffff;
1177 l5_data->phy_address.hi = (u64) map >> 32;
1178 return ctx->kwqe_data;
1181 static int cnic_submit_kwqe_16(struct cnic_dev *dev, u32 cmd, u32 cid,
1182 u32 type, union l5cm_specific_data *l5_data)
1184 struct cnic_local *cp = dev->cnic_priv;
1185 struct l5cm_spe kwqe;
1186 struct kwqe_16 *kwq[1];
1187 int ret;
1189 kwqe.hdr.conn_and_cmd_data =
1190 cpu_to_le32(((cmd << SPE_HDR_CMD_ID_SHIFT) |
1191 BNX2X_HW_CID(cid, cp->func)));
1192 kwqe.hdr.type = cpu_to_le16(type);
1193 kwqe.hdr.reserved = 0;
1194 kwqe.data.phy_address.lo = cpu_to_le32(l5_data->phy_address.lo);
1195 kwqe.data.phy_address.hi = cpu_to_le32(l5_data->phy_address.hi);
1197 kwq[0] = (struct kwqe_16 *) &kwqe;
1199 spin_lock_bh(&cp->cnic_ulp_lock);
1200 ret = cp->ethdev->drv_submit_kwqes_16(dev->netdev, kwq, 1);
1201 spin_unlock_bh(&cp->cnic_ulp_lock);
1203 if (ret == 1)
1204 return 0;
1206 return -EBUSY;
1209 static void cnic_reply_bnx2x_kcqes(struct cnic_dev *dev, int ulp_type,
1210 struct kcqe *cqes[], u32 num_cqes)
1212 struct cnic_local *cp = dev->cnic_priv;
1213 struct cnic_ulp_ops *ulp_ops;
1215 rcu_read_lock();
1216 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
1217 if (likely(ulp_ops)) {
1218 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
1219 cqes, num_cqes);
1221 rcu_read_unlock();
1224 static int cnic_bnx2x_iscsi_init1(struct cnic_dev *dev, struct kwqe *kwqe)
1226 struct cnic_local *cp = dev->cnic_priv;
1227 struct iscsi_kwqe_init1 *req1 = (struct iscsi_kwqe_init1 *) kwqe;
1228 int func = cp->func, pages;
1229 int hq_bds;
1231 cp->num_iscsi_tasks = req1->num_tasks_per_conn;
1232 cp->num_ccells = req1->num_ccells_per_conn;
1233 cp->task_array_size = BNX2X_ISCSI_TASK_CONTEXT_SIZE *
1234 cp->num_iscsi_tasks;
1235 cp->r2tq_size = cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS *
1236 BNX2X_ISCSI_R2TQE_SIZE;
1237 cp->hq_size = cp->num_ccells * BNX2X_ISCSI_HQ_BD_SIZE;
1238 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1239 hq_bds = pages * (PAGE_SIZE / BNX2X_ISCSI_HQ_BD_SIZE);
1240 cp->num_cqs = req1->num_cqs;
1242 if (!dev->max_iscsi_conn)
1243 return 0;
1245 /* init Tstorm RAM */
1246 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_RQ_SIZE_OFFSET(func),
1247 req1->rq_num_wqes);
1248 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_PAGE_SIZE_OFFSET(func),
1249 PAGE_SIZE);
1250 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1251 TSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func), PAGE_SHIFT);
1252 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
1253 TSTORM_ISCSI_NUM_OF_TASKS_OFFSET(func),
1254 req1->num_tasks_per_conn);
1256 /* init Ustorm RAM */
1257 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
1258 USTORM_ISCSI_RQ_BUFFER_SIZE_OFFSET(func),
1259 req1->rq_buffer_size);
1260 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_PAGE_SIZE_OFFSET(func),
1261 PAGE_SIZE);
1262 CNIC_WR8(dev, BAR_USTRORM_INTMEM +
1263 USTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func), PAGE_SHIFT);
1264 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
1265 USTORM_ISCSI_NUM_OF_TASKS_OFFSET(func),
1266 req1->num_tasks_per_conn);
1267 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_RQ_SIZE_OFFSET(func),
1268 req1->rq_num_wqes);
1269 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_CQ_SIZE_OFFSET(func),
1270 req1->cq_num_wqes);
1271 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_R2TQ_SIZE_OFFSET(func),
1272 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1274 /* init Xstorm RAM */
1275 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_PAGE_SIZE_OFFSET(func),
1276 PAGE_SIZE);
1277 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1278 XSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func), PAGE_SHIFT);
1279 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
1280 XSTORM_ISCSI_NUM_OF_TASKS_OFFSET(func),
1281 req1->num_tasks_per_conn);
1282 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_HQ_SIZE_OFFSET(func),
1283 hq_bds);
1284 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_SQ_SIZE_OFFSET(func),
1285 req1->num_tasks_per_conn);
1286 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_R2TQ_SIZE_OFFSET(func),
1287 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1289 /* init Cstorm RAM */
1290 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_PAGE_SIZE_OFFSET(func),
1291 PAGE_SIZE);
1292 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
1293 CSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func), PAGE_SHIFT);
1294 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
1295 CSTORM_ISCSI_NUM_OF_TASKS_OFFSET(func),
1296 req1->num_tasks_per_conn);
1297 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_CQ_SIZE_OFFSET(func),
1298 req1->cq_num_wqes);
1299 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_HQ_SIZE_OFFSET(func),
1300 hq_bds);
1302 return 0;
1305 static int cnic_bnx2x_iscsi_init2(struct cnic_dev *dev, struct kwqe *kwqe)
1307 struct iscsi_kwqe_init2 *req2 = (struct iscsi_kwqe_init2 *) kwqe;
1308 struct cnic_local *cp = dev->cnic_priv;
1309 int func = cp->func;
1310 struct iscsi_kcqe kcqe;
1311 struct kcqe *cqes[1];
1313 memset(&kcqe, 0, sizeof(kcqe));
1314 if (!dev->max_iscsi_conn) {
1315 kcqe.completion_status =
1316 ISCSI_KCQE_COMPLETION_STATUS_ISCSI_NOT_SUPPORTED;
1317 goto done;
1320 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
1321 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(func), req2->error_bit_map[0]);
1322 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
1323 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(func) + 4,
1324 req2->error_bit_map[1]);
1326 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
1327 USTORM_ISCSI_CQ_SQN_SIZE_OFFSET(func), req2->max_cq_sqn);
1328 CNIC_WR(dev, BAR_USTRORM_INTMEM +
1329 USTORM_ISCSI_ERROR_BITMAP_OFFSET(func), req2->error_bit_map[0]);
1330 CNIC_WR(dev, BAR_USTRORM_INTMEM +
1331 USTORM_ISCSI_ERROR_BITMAP_OFFSET(func) + 4,
1332 req2->error_bit_map[1]);
1334 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
1335 CSTORM_ISCSI_CQ_SQN_SIZE_OFFSET(func), req2->max_cq_sqn);
1337 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1339 done:
1340 kcqe.op_code = ISCSI_KCQE_OPCODE_INIT;
1341 cqes[0] = (struct kcqe *) &kcqe;
1342 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1344 return 0;
1347 static void cnic_free_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1349 struct cnic_local *cp = dev->cnic_priv;
1350 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1352 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI) {
1353 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1355 cnic_free_dma(dev, &iscsi->hq_info);
1356 cnic_free_dma(dev, &iscsi->r2tq_info);
1357 cnic_free_dma(dev, &iscsi->task_array_info);
1359 cnic_free_id(&cp->cid_tbl, ctx->cid);
1360 ctx->cid = 0;
1363 static int cnic_alloc_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1365 u32 cid;
1366 int ret, pages;
1367 struct cnic_local *cp = dev->cnic_priv;
1368 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1369 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1371 cid = cnic_alloc_new_id(&cp->cid_tbl);
1372 if (cid == -1) {
1373 ret = -ENOMEM;
1374 goto error;
1377 ctx->cid = cid;
1378 pages = PAGE_ALIGN(cp->task_array_size) / PAGE_SIZE;
1380 ret = cnic_alloc_dma(dev, &iscsi->task_array_info, pages, 1);
1381 if (ret)
1382 goto error;
1384 pages = PAGE_ALIGN(cp->r2tq_size) / PAGE_SIZE;
1385 ret = cnic_alloc_dma(dev, &iscsi->r2tq_info, pages, 1);
1386 if (ret)
1387 goto error;
1389 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1390 ret = cnic_alloc_dma(dev, &iscsi->hq_info, pages, 1);
1391 if (ret)
1392 goto error;
1394 return 0;
1396 error:
1397 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1398 return ret;
1401 static void *cnic_get_bnx2x_ctx(struct cnic_dev *dev, u32 cid, int init,
1402 struct regpair *ctx_addr)
1404 struct cnic_local *cp = dev->cnic_priv;
1405 struct cnic_eth_dev *ethdev = cp->ethdev;
1406 int blk = (cid - ethdev->starting_cid) / cp->cids_per_blk;
1407 int off = (cid - ethdev->starting_cid) % cp->cids_per_blk;
1408 unsigned long align_off = 0;
1409 dma_addr_t ctx_map;
1410 void *ctx;
1412 if (cp->ctx_align) {
1413 unsigned long mask = cp->ctx_align - 1;
1415 if (cp->ctx_arr[blk].mapping & mask)
1416 align_off = cp->ctx_align -
1417 (cp->ctx_arr[blk].mapping & mask);
1419 ctx_map = cp->ctx_arr[blk].mapping + align_off +
1420 (off * BNX2X_CONTEXT_MEM_SIZE);
1421 ctx = cp->ctx_arr[blk].ctx + align_off +
1422 (off * BNX2X_CONTEXT_MEM_SIZE);
1423 if (init)
1424 memset(ctx, 0, BNX2X_CONTEXT_MEM_SIZE);
1426 ctx_addr->lo = ctx_map & 0xffffffff;
1427 ctx_addr->hi = (u64) ctx_map >> 32;
1428 return ctx;
1431 static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
1432 u32 num)
1434 struct cnic_local *cp = dev->cnic_priv;
1435 struct iscsi_kwqe_conn_offload1 *req1 =
1436 (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1437 struct iscsi_kwqe_conn_offload2 *req2 =
1438 (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1439 struct iscsi_kwqe_conn_offload3 *req3;
1440 struct cnic_context *ctx = &cp->ctx_tbl[req1->iscsi_conn_id];
1441 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1442 u32 cid = ctx->cid;
1443 u32 hw_cid = BNX2X_HW_CID(cid, cp->func);
1444 struct iscsi_context *ictx;
1445 struct regpair context_addr;
1446 int i, j, n = 2, n_max;
1448 ctx->ctx_flags = 0;
1449 if (!req2->num_additional_wqes)
1450 return -EINVAL;
1452 n_max = req2->num_additional_wqes + 2;
1454 ictx = cnic_get_bnx2x_ctx(dev, cid, 1, &context_addr);
1455 if (ictx == NULL)
1456 return -ENOMEM;
1458 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1460 ictx->xstorm_ag_context.hq_prod = 1;
1462 ictx->xstorm_st_context.iscsi.first_burst_length =
1463 ISCSI_DEF_FIRST_BURST_LEN;
1464 ictx->xstorm_st_context.iscsi.max_send_pdu_length =
1465 ISCSI_DEF_MAX_RECV_SEG_LEN;
1466 ictx->xstorm_st_context.iscsi.sq_pbl_base.lo =
1467 req1->sq_page_table_addr_lo;
1468 ictx->xstorm_st_context.iscsi.sq_pbl_base.hi =
1469 req1->sq_page_table_addr_hi;
1470 ictx->xstorm_st_context.iscsi.sq_curr_pbe.lo = req2->sq_first_pte.hi;
1471 ictx->xstorm_st_context.iscsi.sq_curr_pbe.hi = req2->sq_first_pte.lo;
1472 ictx->xstorm_st_context.iscsi.hq_pbl_base.lo =
1473 iscsi->hq_info.pgtbl_map & 0xffffffff;
1474 ictx->xstorm_st_context.iscsi.hq_pbl_base.hi =
1475 (u64) iscsi->hq_info.pgtbl_map >> 32;
1476 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.lo =
1477 iscsi->hq_info.pgtbl[0];
1478 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.hi =
1479 iscsi->hq_info.pgtbl[1];
1480 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.lo =
1481 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1482 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.hi =
1483 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1484 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.lo =
1485 iscsi->r2tq_info.pgtbl[0];
1486 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.hi =
1487 iscsi->r2tq_info.pgtbl[1];
1488 ictx->xstorm_st_context.iscsi.task_pbl_base.lo =
1489 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1490 ictx->xstorm_st_context.iscsi.task_pbl_base.hi =
1491 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1492 ictx->xstorm_st_context.iscsi.task_pbl_cache_idx =
1493 BNX2X_ISCSI_PBL_NOT_CACHED;
1494 ictx->xstorm_st_context.iscsi.flags.flags |=
1495 XSTORM_ISCSI_CONTEXT_FLAGS_B_IMMEDIATE_DATA;
1496 ictx->xstorm_st_context.iscsi.flags.flags |=
1497 XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T;
1499 ictx->tstorm_st_context.iscsi.hdr_bytes_2_fetch = ISCSI_HEADER_SIZE;
1500 /* TSTORM requires the base address of RQ DB & not PTE */
1501 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.lo =
1502 req2->rq_page_table_addr_lo & PAGE_MASK;
1503 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.hi =
1504 req2->rq_page_table_addr_hi;
1505 ictx->tstorm_st_context.iscsi.iscsi_conn_id = req1->iscsi_conn_id;
1506 ictx->tstorm_st_context.tcp.cwnd = 0x5A8;
1507 ictx->tstorm_st_context.tcp.flags2 |=
1508 TSTORM_TCP_ST_CONTEXT_SECTION_DA_EN;
1510 ictx->timers_context.flags |= ISCSI_TIMERS_BLOCK_CONTEXT_CONN_VALID_FLG;
1512 ictx->ustorm_st_context.ring.rq.pbl_base.lo =
1513 req2->rq_page_table_addr_lo;
1514 ictx->ustorm_st_context.ring.rq.pbl_base.hi =
1515 req2->rq_page_table_addr_hi;
1516 ictx->ustorm_st_context.ring.rq.curr_pbe.lo = req3->qp_first_pte[0].hi;
1517 ictx->ustorm_st_context.ring.rq.curr_pbe.hi = req3->qp_first_pte[0].lo;
1518 ictx->ustorm_st_context.ring.r2tq.pbl_base.lo =
1519 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1520 ictx->ustorm_st_context.ring.r2tq.pbl_base.hi =
1521 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1522 ictx->ustorm_st_context.ring.r2tq.curr_pbe.lo =
1523 iscsi->r2tq_info.pgtbl[0];
1524 ictx->ustorm_st_context.ring.r2tq.curr_pbe.hi =
1525 iscsi->r2tq_info.pgtbl[1];
1526 ictx->ustorm_st_context.ring.cq_pbl_base.lo =
1527 req1->cq_page_table_addr_lo;
1528 ictx->ustorm_st_context.ring.cq_pbl_base.hi =
1529 req1->cq_page_table_addr_hi;
1530 ictx->ustorm_st_context.ring.cq[0].cq_sn = ISCSI_INITIAL_SN;
1531 ictx->ustorm_st_context.ring.cq[0].curr_pbe.lo = req2->cq_first_pte.hi;
1532 ictx->ustorm_st_context.ring.cq[0].curr_pbe.hi = req2->cq_first_pte.lo;
1533 ictx->ustorm_st_context.task_pbe_cache_index =
1534 BNX2X_ISCSI_PBL_NOT_CACHED;
1535 ictx->ustorm_st_context.task_pdu_cache_index =
1536 BNX2X_ISCSI_PDU_HEADER_NOT_CACHED;
1538 for (i = 1, j = 1; i < cp->num_cqs; i++, j++) {
1539 if (j == 3) {
1540 if (n >= n_max)
1541 break;
1542 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1543 j = 0;
1545 ictx->ustorm_st_context.ring.cq[i].cq_sn = ISCSI_INITIAL_SN;
1546 ictx->ustorm_st_context.ring.cq[i].curr_pbe.lo =
1547 req3->qp_first_pte[j].hi;
1548 ictx->ustorm_st_context.ring.cq[i].curr_pbe.hi =
1549 req3->qp_first_pte[j].lo;
1552 ictx->ustorm_st_context.task_pbl_base.lo =
1553 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1554 ictx->ustorm_st_context.task_pbl_base.hi =
1555 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1556 ictx->ustorm_st_context.tce_phy_addr.lo =
1557 iscsi->task_array_info.pgtbl[0];
1558 ictx->ustorm_st_context.tce_phy_addr.hi =
1559 iscsi->task_array_info.pgtbl[1];
1560 ictx->ustorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1561 ictx->ustorm_st_context.num_cqs = cp->num_cqs;
1562 ictx->ustorm_st_context.negotiated_rx |= ISCSI_DEF_MAX_RECV_SEG_LEN;
1563 ictx->ustorm_st_context.negotiated_rx_and_flags |=
1564 ISCSI_DEF_MAX_BURST_LEN;
1565 ictx->ustorm_st_context.negotiated_rx |=
1566 ISCSI_DEFAULT_MAX_OUTSTANDING_R2T <<
1567 USTORM_ISCSI_ST_CONTEXT_MAX_OUTSTANDING_R2TS_SHIFT;
1569 ictx->cstorm_st_context.hq_pbl_base.lo =
1570 iscsi->hq_info.pgtbl_map & 0xffffffff;
1571 ictx->cstorm_st_context.hq_pbl_base.hi =
1572 (u64) iscsi->hq_info.pgtbl_map >> 32;
1573 ictx->cstorm_st_context.hq_curr_pbe.lo = iscsi->hq_info.pgtbl[0];
1574 ictx->cstorm_st_context.hq_curr_pbe.hi = iscsi->hq_info.pgtbl[1];
1575 ictx->cstorm_st_context.task_pbl_base.lo =
1576 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1577 ictx->cstorm_st_context.task_pbl_base.hi =
1578 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1579 /* CSTORM and USTORM initialization is different, CSTORM requires
1580 * CQ DB base & not PTE addr */
1581 ictx->cstorm_st_context.cq_db_base.lo =
1582 req1->cq_page_table_addr_lo & PAGE_MASK;
1583 ictx->cstorm_st_context.cq_db_base.hi = req1->cq_page_table_addr_hi;
1584 ictx->cstorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1585 ictx->cstorm_st_context.cq_proc_en_bit_map = (1 << cp->num_cqs) - 1;
1586 for (i = 0; i < cp->num_cqs; i++) {
1587 ictx->cstorm_st_context.cq_c_prod_sqn_arr.sqn[i] =
1588 ISCSI_INITIAL_SN;
1589 ictx->cstorm_st_context.cq_c_sqn_2_notify_arr.sqn[i] =
1590 ISCSI_INITIAL_SN;
1593 ictx->xstorm_ag_context.cdu_reserved =
1594 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
1595 ISCSI_CONNECTION_TYPE);
1596 ictx->ustorm_ag_context.cdu_usage =
1597 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
1598 ISCSI_CONNECTION_TYPE);
1599 return 0;
1603 static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
1604 u32 num, int *work)
1606 struct iscsi_kwqe_conn_offload1 *req1;
1607 struct iscsi_kwqe_conn_offload2 *req2;
1608 struct cnic_local *cp = dev->cnic_priv;
1609 struct iscsi_kcqe kcqe;
1610 struct kcqe *cqes[1];
1611 u32 l5_cid;
1612 int ret;
1614 if (num < 2) {
1615 *work = num;
1616 return -EINVAL;
1619 req1 = (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1620 req2 = (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1621 if ((num - 2) < req2->num_additional_wqes) {
1622 *work = num;
1623 return -EINVAL;
1625 *work = 2 + req2->num_additional_wqes;;
1627 l5_cid = req1->iscsi_conn_id;
1628 if (l5_cid >= MAX_ISCSI_TBL_SZ)
1629 return -EINVAL;
1631 memset(&kcqe, 0, sizeof(kcqe));
1632 kcqe.op_code = ISCSI_KCQE_OPCODE_OFFLOAD_CONN;
1633 kcqe.iscsi_conn_id = l5_cid;
1634 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
1636 if (atomic_inc_return(&cp->iscsi_conn) > dev->max_iscsi_conn) {
1637 atomic_dec(&cp->iscsi_conn);
1638 ret = 0;
1639 goto done;
1641 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
1642 if (ret) {
1643 atomic_dec(&cp->iscsi_conn);
1644 ret = 0;
1645 goto done;
1647 ret = cnic_setup_bnx2x_ctx(dev, wqes, num);
1648 if (ret < 0) {
1649 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1650 atomic_dec(&cp->iscsi_conn);
1651 goto done;
1654 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1655 kcqe.iscsi_conn_context_id = BNX2X_HW_CID(cp->ctx_tbl[l5_cid].cid,
1656 cp->func);
1658 done:
1659 cqes[0] = (struct kcqe *) &kcqe;
1660 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1661 return ret;
1665 static int cnic_bnx2x_iscsi_update(struct cnic_dev *dev, struct kwqe *kwqe)
1667 struct cnic_local *cp = dev->cnic_priv;
1668 struct iscsi_kwqe_conn_update *req =
1669 (struct iscsi_kwqe_conn_update *) kwqe;
1670 void *data;
1671 union l5cm_specific_data l5_data;
1672 u32 l5_cid, cid = BNX2X_SW_CID(req->context_id);
1673 int ret;
1675 if (cnic_get_l5_cid(cp, cid, &l5_cid) != 0)
1676 return -EINVAL;
1678 data = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
1679 if (!data)
1680 return -ENOMEM;
1682 memcpy(data, kwqe, sizeof(struct kwqe));
1684 ret = cnic_submit_kwqe_16(dev, ISCSI_RAMROD_CMD_ID_UPDATE_CONN,
1685 req->context_id, ISCSI_CONNECTION_TYPE, &l5_data);
1686 return ret;
1689 static int cnic_bnx2x_iscsi_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
1691 struct cnic_local *cp = dev->cnic_priv;
1692 struct iscsi_kwqe_conn_destroy *req =
1693 (struct iscsi_kwqe_conn_destroy *) kwqe;
1694 union l5cm_specific_data l5_data;
1695 u32 l5_cid = req->reserved0;
1696 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1697 int ret = 0;
1698 struct iscsi_kcqe kcqe;
1699 struct kcqe *cqes[1];
1701 if (!(ctx->ctx_flags & CTX_FL_OFFLD_START))
1702 goto skip_cfc_delete;
1704 while (!time_after(jiffies, ctx->timestamp + (2 * HZ)))
1705 msleep(250);
1707 init_waitqueue_head(&ctx->waitq);
1708 ctx->wait_cond = 0;
1709 memset(&l5_data, 0, sizeof(l5_data));
1710 ret = cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CFC_DEL,
1711 req->context_id,
1712 ETH_CONNECTION_TYPE |
1713 (1 << SPE_HDR_COMMON_RAMROD_SHIFT),
1714 &l5_data);
1715 if (ret == 0)
1716 wait_event(ctx->waitq, ctx->wait_cond);
1718 skip_cfc_delete:
1719 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1721 atomic_dec(&cp->iscsi_conn);
1723 memset(&kcqe, 0, sizeof(kcqe));
1724 kcqe.op_code = ISCSI_KCQE_OPCODE_DESTROY_CONN;
1725 kcqe.iscsi_conn_id = l5_cid;
1726 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1727 kcqe.iscsi_conn_context_id = req->context_id;
1729 cqes[0] = (struct kcqe *) &kcqe;
1730 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1732 return ret;
1735 static void cnic_init_storm_conn_bufs(struct cnic_dev *dev,
1736 struct l4_kwq_connect_req1 *kwqe1,
1737 struct l4_kwq_connect_req3 *kwqe3,
1738 struct l5cm_active_conn_buffer *conn_buf)
1740 struct l5cm_conn_addr_params *conn_addr = &conn_buf->conn_addr_buf;
1741 struct l5cm_xstorm_conn_buffer *xstorm_buf =
1742 &conn_buf->xstorm_conn_buffer;
1743 struct l5cm_tstorm_conn_buffer *tstorm_buf =
1744 &conn_buf->tstorm_conn_buffer;
1745 struct regpair context_addr;
1746 u32 cid = BNX2X_SW_CID(kwqe1->cid);
1747 struct in6_addr src_ip, dst_ip;
1748 int i;
1749 u32 *addrp;
1751 addrp = (u32 *) &conn_addr->local_ip_addr;
1752 for (i = 0; i < 4; i++, addrp++)
1753 src_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
1755 addrp = (u32 *) &conn_addr->remote_ip_addr;
1756 for (i = 0; i < 4; i++, addrp++)
1757 dst_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
1759 cnic_get_bnx2x_ctx(dev, cid, 0, &context_addr);
1761 xstorm_buf->context_addr.hi = context_addr.hi;
1762 xstorm_buf->context_addr.lo = context_addr.lo;
1763 xstorm_buf->mss = 0xffff;
1764 xstorm_buf->rcv_buf = kwqe3->rcv_buf;
1765 if (kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE)
1766 xstorm_buf->params |= L5CM_XSTORM_CONN_BUFFER_NAGLE_ENABLE;
1767 xstorm_buf->pseudo_header_checksum =
1768 swab16(~csum_ipv6_magic(&src_ip, &dst_ip, 0, IPPROTO_TCP, 0));
1770 if (!(kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK))
1771 tstorm_buf->params |=
1772 L5CM_TSTORM_CONN_BUFFER_DELAYED_ACK_ENABLE;
1773 if (kwqe3->ka_timeout) {
1774 tstorm_buf->ka_enable = 1;
1775 tstorm_buf->ka_timeout = kwqe3->ka_timeout;
1776 tstorm_buf->ka_interval = kwqe3->ka_interval;
1777 tstorm_buf->ka_max_probe_count = kwqe3->ka_max_probe_count;
1779 tstorm_buf->rcv_buf = kwqe3->rcv_buf;
1780 tstorm_buf->snd_buf = kwqe3->snd_buf;
1781 tstorm_buf->max_rt_time = 0xffffffff;
1784 static void cnic_init_bnx2x_mac(struct cnic_dev *dev)
1786 struct cnic_local *cp = dev->cnic_priv;
1787 int func = CNIC_FUNC(cp);
1788 u8 *mac = dev->mac_addr;
1790 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1791 XSTORM_ISCSI_LOCAL_MAC_ADDR0_OFFSET(func), mac[0]);
1792 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1793 XSTORM_ISCSI_LOCAL_MAC_ADDR1_OFFSET(func), mac[1]);
1794 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1795 XSTORM_ISCSI_LOCAL_MAC_ADDR2_OFFSET(func), mac[2]);
1796 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1797 XSTORM_ISCSI_LOCAL_MAC_ADDR3_OFFSET(func), mac[3]);
1798 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1799 XSTORM_ISCSI_LOCAL_MAC_ADDR4_OFFSET(func), mac[4]);
1800 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1801 XSTORM_ISCSI_LOCAL_MAC_ADDR5_OFFSET(func), mac[5]);
1803 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1804 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(func), mac[5]);
1805 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1806 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(func) + 1,
1807 mac[4]);
1808 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1809 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func), mac[3]);
1810 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1811 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func) + 1,
1812 mac[2]);
1813 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1814 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func) + 2,
1815 mac[1]);
1816 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
1817 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func) + 3,
1818 mac[0]);
1821 static void cnic_bnx2x_set_tcp_timestamp(struct cnic_dev *dev, int tcp_ts)
1823 struct cnic_local *cp = dev->cnic_priv;
1824 u8 xstorm_flags = XSTORM_L5CM_TCP_FLAGS_WND_SCL_EN;
1825 u16 tstorm_flags = 0;
1827 if (tcp_ts) {
1828 xstorm_flags |= XSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
1829 tstorm_flags |= TSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
1832 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1833 XSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->func), xstorm_flags);
1835 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
1836 TSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->func), tstorm_flags);
1839 static int cnic_bnx2x_connect(struct cnic_dev *dev, struct kwqe *wqes[],
1840 u32 num, int *work)
1842 struct cnic_local *cp = dev->cnic_priv;
1843 struct l4_kwq_connect_req1 *kwqe1 =
1844 (struct l4_kwq_connect_req1 *) wqes[0];
1845 struct l4_kwq_connect_req3 *kwqe3;
1846 struct l5cm_active_conn_buffer *conn_buf;
1847 struct l5cm_conn_addr_params *conn_addr;
1848 union l5cm_specific_data l5_data;
1849 u32 l5_cid = kwqe1->pg_cid;
1850 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
1851 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1852 int ret;
1854 if (num < 2) {
1855 *work = num;
1856 return -EINVAL;
1859 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6)
1860 *work = 3;
1861 else
1862 *work = 2;
1864 if (num < *work) {
1865 *work = num;
1866 return -EINVAL;
1869 if (sizeof(*conn_buf) > CNIC_KWQ16_DATA_SIZE) {
1870 netdev_err(dev->netdev, "conn_buf size too big\n");
1871 return -ENOMEM;
1873 conn_buf = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
1874 if (!conn_buf)
1875 return -ENOMEM;
1877 memset(conn_buf, 0, sizeof(*conn_buf));
1879 conn_addr = &conn_buf->conn_addr_buf;
1880 conn_addr->remote_addr_0 = csk->ha[0];
1881 conn_addr->remote_addr_1 = csk->ha[1];
1882 conn_addr->remote_addr_2 = csk->ha[2];
1883 conn_addr->remote_addr_3 = csk->ha[3];
1884 conn_addr->remote_addr_4 = csk->ha[4];
1885 conn_addr->remote_addr_5 = csk->ha[5];
1887 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6) {
1888 struct l4_kwq_connect_req2 *kwqe2 =
1889 (struct l4_kwq_connect_req2 *) wqes[1];
1891 conn_addr->local_ip_addr.ip_addr_hi_hi = kwqe2->src_ip_v6_4;
1892 conn_addr->local_ip_addr.ip_addr_hi_lo = kwqe2->src_ip_v6_3;
1893 conn_addr->local_ip_addr.ip_addr_lo_hi = kwqe2->src_ip_v6_2;
1895 conn_addr->remote_ip_addr.ip_addr_hi_hi = kwqe2->dst_ip_v6_4;
1896 conn_addr->remote_ip_addr.ip_addr_hi_lo = kwqe2->dst_ip_v6_3;
1897 conn_addr->remote_ip_addr.ip_addr_lo_hi = kwqe2->dst_ip_v6_2;
1898 conn_addr->params |= L5CM_CONN_ADDR_PARAMS_IP_VERSION;
1900 kwqe3 = (struct l4_kwq_connect_req3 *) wqes[*work - 1];
1902 conn_addr->local_ip_addr.ip_addr_lo_lo = kwqe1->src_ip;
1903 conn_addr->remote_ip_addr.ip_addr_lo_lo = kwqe1->dst_ip;
1904 conn_addr->local_tcp_port = kwqe1->src_port;
1905 conn_addr->remote_tcp_port = kwqe1->dst_port;
1907 conn_addr->pmtu = kwqe3->pmtu;
1908 cnic_init_storm_conn_bufs(dev, kwqe1, kwqe3, conn_buf);
1910 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
1911 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(cp->func), csk->vlan_id);
1913 cnic_bnx2x_set_tcp_timestamp(dev,
1914 kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_TIME_STAMP);
1916 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_TCP_CONNECT,
1917 kwqe1->cid, ISCSI_CONNECTION_TYPE, &l5_data);
1918 if (!ret)
1919 ctx->ctx_flags |= CTX_FL_OFFLD_START;
1921 return ret;
1924 static int cnic_bnx2x_close(struct cnic_dev *dev, struct kwqe *kwqe)
1926 struct l4_kwq_close_req *req = (struct l4_kwq_close_req *) kwqe;
1927 union l5cm_specific_data l5_data;
1928 int ret;
1930 memset(&l5_data, 0, sizeof(l5_data));
1931 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_CLOSE,
1932 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
1933 return ret;
1936 static int cnic_bnx2x_reset(struct cnic_dev *dev, struct kwqe *kwqe)
1938 struct l4_kwq_reset_req *req = (struct l4_kwq_reset_req *) kwqe;
1939 union l5cm_specific_data l5_data;
1940 int ret;
1942 memset(&l5_data, 0, sizeof(l5_data));
1943 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_ABORT,
1944 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
1945 return ret;
1947 static int cnic_bnx2x_offload_pg(struct cnic_dev *dev, struct kwqe *kwqe)
1949 struct l4_kwq_offload_pg *req = (struct l4_kwq_offload_pg *) kwqe;
1950 struct l4_kcq kcqe;
1951 struct kcqe *cqes[1];
1953 memset(&kcqe, 0, sizeof(kcqe));
1954 kcqe.pg_host_opaque = req->host_opaque;
1955 kcqe.pg_cid = req->host_opaque;
1956 kcqe.op_code = L4_KCQE_OPCODE_VALUE_OFFLOAD_PG;
1957 cqes[0] = (struct kcqe *) &kcqe;
1958 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
1959 return 0;
1962 static int cnic_bnx2x_update_pg(struct cnic_dev *dev, struct kwqe *kwqe)
1964 struct l4_kwq_update_pg *req = (struct l4_kwq_update_pg *) kwqe;
1965 struct l4_kcq kcqe;
1966 struct kcqe *cqes[1];
1968 memset(&kcqe, 0, sizeof(kcqe));
1969 kcqe.pg_host_opaque = req->pg_host_opaque;
1970 kcqe.pg_cid = req->pg_cid;
1971 kcqe.op_code = L4_KCQE_OPCODE_VALUE_UPDATE_PG;
1972 cqes[0] = (struct kcqe *) &kcqe;
1973 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
1974 return 0;
1977 static int cnic_submit_bnx2x_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
1978 u32 num_wqes)
1980 int i, work, ret;
1981 u32 opcode;
1982 struct kwqe *kwqe;
1984 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
1985 return -EAGAIN; /* bnx2 is down */
1987 for (i = 0; i < num_wqes; ) {
1988 kwqe = wqes[i];
1989 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
1990 work = 1;
1992 switch (opcode) {
1993 case ISCSI_KWQE_OPCODE_INIT1:
1994 ret = cnic_bnx2x_iscsi_init1(dev, kwqe);
1995 break;
1996 case ISCSI_KWQE_OPCODE_INIT2:
1997 ret = cnic_bnx2x_iscsi_init2(dev, kwqe);
1998 break;
1999 case ISCSI_KWQE_OPCODE_OFFLOAD_CONN1:
2000 ret = cnic_bnx2x_iscsi_ofld1(dev, &wqes[i],
2001 num_wqes - i, &work);
2002 break;
2003 case ISCSI_KWQE_OPCODE_UPDATE_CONN:
2004 ret = cnic_bnx2x_iscsi_update(dev, kwqe);
2005 break;
2006 case ISCSI_KWQE_OPCODE_DESTROY_CONN:
2007 ret = cnic_bnx2x_iscsi_destroy(dev, kwqe);
2008 break;
2009 case L4_KWQE_OPCODE_VALUE_CONNECT1:
2010 ret = cnic_bnx2x_connect(dev, &wqes[i], num_wqes - i,
2011 &work);
2012 break;
2013 case L4_KWQE_OPCODE_VALUE_CLOSE:
2014 ret = cnic_bnx2x_close(dev, kwqe);
2015 break;
2016 case L4_KWQE_OPCODE_VALUE_RESET:
2017 ret = cnic_bnx2x_reset(dev, kwqe);
2018 break;
2019 case L4_KWQE_OPCODE_VALUE_OFFLOAD_PG:
2020 ret = cnic_bnx2x_offload_pg(dev, kwqe);
2021 break;
2022 case L4_KWQE_OPCODE_VALUE_UPDATE_PG:
2023 ret = cnic_bnx2x_update_pg(dev, kwqe);
2024 break;
2025 case L4_KWQE_OPCODE_VALUE_UPLOAD_PG:
2026 ret = 0;
2027 break;
2028 default:
2029 ret = 0;
2030 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2031 opcode);
2032 break;
2034 if (ret < 0)
2035 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2036 opcode);
2037 i += work;
2039 return 0;
2042 static void service_kcqes(struct cnic_dev *dev, int num_cqes)
2044 struct cnic_local *cp = dev->cnic_priv;
2045 int i, j;
2047 i = 0;
2048 j = 1;
2049 while (num_cqes) {
2050 struct cnic_ulp_ops *ulp_ops;
2051 int ulp_type;
2052 u32 kcqe_op_flag = cp->completed_kcq[i]->kcqe_op_flag;
2053 u32 kcqe_layer = kcqe_op_flag & KCQE_FLAGS_LAYER_MASK;
2055 if (unlikely(kcqe_op_flag & KCQE_RAMROD_COMPLETION))
2056 cnic_kwq_completion(dev, 1);
2058 while (j < num_cqes) {
2059 u32 next_op = cp->completed_kcq[i + j]->kcqe_op_flag;
2061 if ((next_op & KCQE_FLAGS_LAYER_MASK) != kcqe_layer)
2062 break;
2064 if (unlikely(next_op & KCQE_RAMROD_COMPLETION))
2065 cnic_kwq_completion(dev, 1);
2066 j++;
2069 if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_RDMA)
2070 ulp_type = CNIC_ULP_RDMA;
2071 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_ISCSI)
2072 ulp_type = CNIC_ULP_ISCSI;
2073 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L4)
2074 ulp_type = CNIC_ULP_L4;
2075 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L2)
2076 goto end;
2077 else {
2078 netdev_err(dev->netdev, "Unknown type of KCQE(0x%x)\n",
2079 kcqe_op_flag);
2080 goto end;
2083 rcu_read_lock();
2084 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
2085 if (likely(ulp_ops)) {
2086 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
2087 cp->completed_kcq + i, j);
2089 rcu_read_unlock();
2090 end:
2091 num_cqes -= j;
2092 i += j;
2093 j = 1;
2097 static u16 cnic_bnx2_next_idx(u16 idx)
2099 return idx + 1;
2102 static u16 cnic_bnx2_hw_idx(u16 idx)
2104 return idx;
2107 static u16 cnic_bnx2x_next_idx(u16 idx)
2109 idx++;
2110 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
2111 idx++;
2113 return idx;
2116 static u16 cnic_bnx2x_hw_idx(u16 idx)
2118 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
2119 idx++;
2120 return idx;
2123 static int cnic_get_kcqes(struct cnic_dev *dev, u16 hw_prod, u16 *sw_prod)
2125 struct cnic_local *cp = dev->cnic_priv;
2126 u16 i, ri, last;
2127 struct kcqe *kcqe;
2128 int kcqe_cnt = 0, last_cnt = 0;
2130 i = ri = last = *sw_prod;
2131 ri &= MAX_KCQ_IDX;
2133 while ((i != hw_prod) && (kcqe_cnt < MAX_COMPLETED_KCQE)) {
2134 kcqe = &cp->kcq[KCQ_PG(ri)][KCQ_IDX(ri)];
2135 cp->completed_kcq[kcqe_cnt++] = kcqe;
2136 i = cp->next_idx(i);
2137 ri = i & MAX_KCQ_IDX;
2138 if (likely(!(kcqe->kcqe_op_flag & KCQE_FLAGS_NEXT))) {
2139 last_cnt = kcqe_cnt;
2140 last = i;
2144 *sw_prod = last;
2145 return last_cnt;
2148 static int cnic_l2_completion(struct cnic_local *cp)
2150 u16 hw_cons, sw_cons;
2151 union eth_rx_cqe *cqe, *cqe_ring = (union eth_rx_cqe *)
2152 (cp->l2_ring + (2 * BCM_PAGE_SIZE));
2153 u32 cmd;
2154 int comp = 0;
2156 if (!test_bit(CNIC_F_BNX2X_CLASS, &cp->dev->flags))
2157 return 0;
2159 hw_cons = *cp->rx_cons_ptr;
2160 if ((hw_cons & BNX2X_MAX_RCQ_DESC_CNT) == BNX2X_MAX_RCQ_DESC_CNT)
2161 hw_cons++;
2163 sw_cons = cp->rx_cons;
2164 while (sw_cons != hw_cons) {
2165 u8 cqe_fp_flags;
2167 cqe = &cqe_ring[sw_cons & BNX2X_MAX_RCQ_DESC_CNT];
2168 cqe_fp_flags = cqe->fast_path_cqe.type_error_flags;
2169 if (cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE) {
2170 cmd = le32_to_cpu(cqe->ramrod_cqe.conn_and_cmd_data);
2171 cmd >>= COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT;
2172 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP ||
2173 cmd == RAMROD_CMD_ID_ETH_HALT)
2174 comp++;
2176 sw_cons = BNX2X_NEXT_RCQE(sw_cons);
2178 return comp;
2181 static void cnic_chk_pkt_rings(struct cnic_local *cp)
2183 u16 rx_cons = *cp->rx_cons_ptr;
2184 u16 tx_cons = *cp->tx_cons_ptr;
2185 int comp = 0;
2187 if (cp->tx_cons != tx_cons || cp->rx_cons != rx_cons) {
2188 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
2189 comp = cnic_l2_completion(cp);
2191 cp->tx_cons = tx_cons;
2192 cp->rx_cons = rx_cons;
2194 uio_event_notify(cp->cnic_uinfo);
2196 if (comp)
2197 clear_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
2200 static int cnic_service_bnx2(void *data, void *status_blk)
2202 struct cnic_dev *dev = data;
2203 struct status_block *sblk = status_blk;
2204 struct cnic_local *cp = dev->cnic_priv;
2205 u32 status_idx = sblk->status_idx;
2206 u16 hw_prod, sw_prod;
2207 int kcqe_cnt;
2209 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags)))
2210 return status_idx;
2212 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
2214 hw_prod = sblk->status_completion_producer_index;
2215 sw_prod = cp->kcq_prod_idx;
2216 while (sw_prod != hw_prod) {
2217 kcqe_cnt = cnic_get_kcqes(dev, hw_prod, &sw_prod);
2218 if (kcqe_cnt == 0)
2219 goto done;
2221 service_kcqes(dev, kcqe_cnt);
2223 /* Tell compiler that status_blk fields can change. */
2224 barrier();
2225 if (status_idx != sblk->status_idx) {
2226 status_idx = sblk->status_idx;
2227 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
2228 hw_prod = sblk->status_completion_producer_index;
2229 } else
2230 break;
2233 done:
2234 CNIC_WR16(dev, cp->kcq_io_addr, sw_prod);
2236 cp->kcq_prod_idx = sw_prod;
2238 cnic_chk_pkt_rings(cp);
2239 return status_idx;
2242 static void cnic_service_bnx2_msix(unsigned long data)
2244 struct cnic_dev *dev = (struct cnic_dev *) data;
2245 struct cnic_local *cp = dev->cnic_priv;
2246 struct status_block_msix *status_blk = cp->status_blk.bnx2;
2247 u32 status_idx = status_blk->status_idx;
2248 u16 hw_prod, sw_prod;
2249 int kcqe_cnt;
2251 cp->kwq_con_idx = status_blk->status_cmd_consumer_index;
2253 hw_prod = status_blk->status_completion_producer_index;
2254 sw_prod = cp->kcq_prod_idx;
2255 while (sw_prod != hw_prod) {
2256 kcqe_cnt = cnic_get_kcqes(dev, hw_prod, &sw_prod);
2257 if (kcqe_cnt == 0)
2258 goto done;
2260 service_kcqes(dev, kcqe_cnt);
2262 /* Tell compiler that status_blk fields can change. */
2263 barrier();
2264 if (status_idx != status_blk->status_idx) {
2265 status_idx = status_blk->status_idx;
2266 cp->kwq_con_idx = status_blk->status_cmd_consumer_index;
2267 hw_prod = status_blk->status_completion_producer_index;
2268 } else
2269 break;
2272 done:
2273 CNIC_WR16(dev, cp->kcq_io_addr, sw_prod);
2274 cp->kcq_prod_idx = sw_prod;
2276 cnic_chk_pkt_rings(cp);
2278 cp->last_status_idx = status_idx;
2279 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
2280 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
2283 static irqreturn_t cnic_irq(int irq, void *dev_instance)
2285 struct cnic_dev *dev = dev_instance;
2286 struct cnic_local *cp = dev->cnic_priv;
2287 u16 prod = cp->kcq_prod_idx & MAX_KCQ_IDX;
2289 if (cp->ack_int)
2290 cp->ack_int(dev);
2292 prefetch(cp->status_blk.gen);
2293 prefetch(&cp->kcq[KCQ_PG(prod)][KCQ_IDX(prod)]);
2295 if (likely(test_bit(CNIC_F_CNIC_UP, &dev->flags)))
2296 tasklet_schedule(&cp->cnic_irq_task);
2298 return IRQ_HANDLED;
2301 static inline void cnic_ack_bnx2x_int(struct cnic_dev *dev, u8 id, u8 storm,
2302 u16 index, u8 op, u8 update)
2304 struct cnic_local *cp = dev->cnic_priv;
2305 u32 hc_addr = (HC_REG_COMMAND_REG + CNIC_PORT(cp) * 32 +
2306 COMMAND_REG_INT_ACK);
2307 struct igu_ack_register igu_ack;
2309 igu_ack.status_block_index = index;
2310 igu_ack.sb_id_and_flags =
2311 ((id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
2312 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
2313 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
2314 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
2316 CNIC_WR(dev, hc_addr, (*(u32 *)&igu_ack));
2319 static void cnic_ack_bnx2x_msix(struct cnic_dev *dev)
2321 struct cnic_local *cp = dev->cnic_priv;
2323 cnic_ack_bnx2x_int(dev, cp->status_blk_num, CSTORM_ID, 0,
2324 IGU_INT_DISABLE, 0);
2327 static void cnic_service_bnx2x_bh(unsigned long data)
2329 struct cnic_dev *dev = (struct cnic_dev *) data;
2330 struct cnic_local *cp = dev->cnic_priv;
2331 u16 hw_prod, sw_prod;
2332 struct cstorm_status_block_c *sblk =
2333 &cp->status_blk.bnx2x->c_status_block;
2334 u32 status_idx = sblk->status_block_index;
2335 int kcqe_cnt;
2337 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags)))
2338 return;
2340 hw_prod = sblk->index_values[HC_INDEX_C_ISCSI_EQ_CONS];
2341 hw_prod = cp->hw_idx(hw_prod);
2342 sw_prod = cp->kcq_prod_idx;
2343 while (sw_prod != hw_prod) {
2344 kcqe_cnt = cnic_get_kcqes(dev, hw_prod, &sw_prod);
2345 if (kcqe_cnt == 0)
2346 goto done;
2348 service_kcqes(dev, kcqe_cnt);
2350 /* Tell compiler that sblk fields can change. */
2351 barrier();
2352 if (status_idx == sblk->status_block_index)
2353 break;
2355 status_idx = sblk->status_block_index;
2356 hw_prod = sblk->index_values[HC_INDEX_C_ISCSI_EQ_CONS];
2357 hw_prod = cp->hw_idx(hw_prod);
2360 done:
2361 CNIC_WR16(dev, cp->kcq_io_addr, sw_prod + MAX_KCQ_IDX);
2362 cnic_ack_bnx2x_int(dev, cp->status_blk_num, CSTORM_ID,
2363 status_idx, IGU_INT_ENABLE, 1);
2365 cp->kcq_prod_idx = sw_prod;
2368 static int cnic_service_bnx2x(void *data, void *status_blk)
2370 struct cnic_dev *dev = data;
2371 struct cnic_local *cp = dev->cnic_priv;
2372 u16 prod = cp->kcq_prod_idx & MAX_KCQ_IDX;
2374 if (likely(test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
2375 prefetch(cp->status_blk.bnx2x);
2376 prefetch(&cp->kcq[KCQ_PG(prod)][KCQ_IDX(prod)]);
2378 tasklet_schedule(&cp->cnic_irq_task);
2379 cnic_chk_pkt_rings(cp);
2382 return 0;
2385 static void cnic_ulp_stop(struct cnic_dev *dev)
2387 struct cnic_local *cp = dev->cnic_priv;
2388 int if_type;
2390 if (cp->cnic_uinfo)
2391 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
2393 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
2394 struct cnic_ulp_ops *ulp_ops;
2396 mutex_lock(&cnic_lock);
2397 ulp_ops = cp->ulp_ops[if_type];
2398 if (!ulp_ops) {
2399 mutex_unlock(&cnic_lock);
2400 continue;
2402 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
2403 mutex_unlock(&cnic_lock);
2405 if (test_and_clear_bit(ULP_F_START, &cp->ulp_flags[if_type]))
2406 ulp_ops->cnic_stop(cp->ulp_handle[if_type]);
2408 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
2412 static void cnic_ulp_start(struct cnic_dev *dev)
2414 struct cnic_local *cp = dev->cnic_priv;
2415 int if_type;
2417 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
2418 struct cnic_ulp_ops *ulp_ops;
2420 mutex_lock(&cnic_lock);
2421 ulp_ops = cp->ulp_ops[if_type];
2422 if (!ulp_ops || !ulp_ops->cnic_start) {
2423 mutex_unlock(&cnic_lock);
2424 continue;
2426 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
2427 mutex_unlock(&cnic_lock);
2429 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[if_type]))
2430 ulp_ops->cnic_start(cp->ulp_handle[if_type]);
2432 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
2436 static int cnic_ctl(void *data, struct cnic_ctl_info *info)
2438 struct cnic_dev *dev = data;
2440 switch (info->cmd) {
2441 case CNIC_CTL_STOP_CMD:
2442 cnic_hold(dev);
2444 cnic_ulp_stop(dev);
2445 cnic_stop_hw(dev);
2447 cnic_put(dev);
2448 break;
2449 case CNIC_CTL_START_CMD:
2450 cnic_hold(dev);
2452 if (!cnic_start_hw(dev))
2453 cnic_ulp_start(dev);
2455 cnic_put(dev);
2456 break;
2457 case CNIC_CTL_COMPLETION_CMD: {
2458 u32 cid = BNX2X_SW_CID(info->data.comp.cid);
2459 u32 l5_cid;
2460 struct cnic_local *cp = dev->cnic_priv;
2462 if (cnic_get_l5_cid(cp, cid, &l5_cid) == 0) {
2463 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
2465 ctx->wait_cond = 1;
2466 wake_up(&ctx->waitq);
2468 break;
2470 default:
2471 return -EINVAL;
2473 return 0;
2476 static void cnic_ulp_init(struct cnic_dev *dev)
2478 int i;
2479 struct cnic_local *cp = dev->cnic_priv;
2481 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
2482 struct cnic_ulp_ops *ulp_ops;
2484 mutex_lock(&cnic_lock);
2485 ulp_ops = cnic_ulp_tbl[i];
2486 if (!ulp_ops || !ulp_ops->cnic_init) {
2487 mutex_unlock(&cnic_lock);
2488 continue;
2490 ulp_get(ulp_ops);
2491 mutex_unlock(&cnic_lock);
2493 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[i]))
2494 ulp_ops->cnic_init(dev);
2496 ulp_put(ulp_ops);
2500 static void cnic_ulp_exit(struct cnic_dev *dev)
2502 int i;
2503 struct cnic_local *cp = dev->cnic_priv;
2505 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
2506 struct cnic_ulp_ops *ulp_ops;
2508 mutex_lock(&cnic_lock);
2509 ulp_ops = cnic_ulp_tbl[i];
2510 if (!ulp_ops || !ulp_ops->cnic_exit) {
2511 mutex_unlock(&cnic_lock);
2512 continue;
2514 ulp_get(ulp_ops);
2515 mutex_unlock(&cnic_lock);
2517 if (test_and_clear_bit(ULP_F_INIT, &cp->ulp_flags[i]))
2518 ulp_ops->cnic_exit(dev);
2520 ulp_put(ulp_ops);
2524 static int cnic_cm_offload_pg(struct cnic_sock *csk)
2526 struct cnic_dev *dev = csk->dev;
2527 struct l4_kwq_offload_pg *l4kwqe;
2528 struct kwqe *wqes[1];
2530 l4kwqe = (struct l4_kwq_offload_pg *) &csk->kwqe1;
2531 memset(l4kwqe, 0, sizeof(*l4kwqe));
2532 wqes[0] = (struct kwqe *) l4kwqe;
2534 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_OFFLOAD_PG;
2535 l4kwqe->flags =
2536 L4_LAYER_CODE << L4_KWQ_OFFLOAD_PG_LAYER_CODE_SHIFT;
2537 l4kwqe->l2hdr_nbytes = ETH_HLEN;
2539 l4kwqe->da0 = csk->ha[0];
2540 l4kwqe->da1 = csk->ha[1];
2541 l4kwqe->da2 = csk->ha[2];
2542 l4kwqe->da3 = csk->ha[3];
2543 l4kwqe->da4 = csk->ha[4];
2544 l4kwqe->da5 = csk->ha[5];
2546 l4kwqe->sa0 = dev->mac_addr[0];
2547 l4kwqe->sa1 = dev->mac_addr[1];
2548 l4kwqe->sa2 = dev->mac_addr[2];
2549 l4kwqe->sa3 = dev->mac_addr[3];
2550 l4kwqe->sa4 = dev->mac_addr[4];
2551 l4kwqe->sa5 = dev->mac_addr[5];
2553 l4kwqe->etype = ETH_P_IP;
2554 l4kwqe->ipid_start = DEF_IPID_START;
2555 l4kwqe->host_opaque = csk->l5_cid;
2557 if (csk->vlan_id) {
2558 l4kwqe->pg_flags |= L4_KWQ_OFFLOAD_PG_VLAN_TAGGING;
2559 l4kwqe->vlan_tag = csk->vlan_id;
2560 l4kwqe->l2hdr_nbytes += 4;
2563 return dev->submit_kwqes(dev, wqes, 1);
2566 static int cnic_cm_update_pg(struct cnic_sock *csk)
2568 struct cnic_dev *dev = csk->dev;
2569 struct l4_kwq_update_pg *l4kwqe;
2570 struct kwqe *wqes[1];
2572 l4kwqe = (struct l4_kwq_update_pg *) &csk->kwqe1;
2573 memset(l4kwqe, 0, sizeof(*l4kwqe));
2574 wqes[0] = (struct kwqe *) l4kwqe;
2576 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPDATE_PG;
2577 l4kwqe->flags =
2578 L4_LAYER_CODE << L4_KWQ_UPDATE_PG_LAYER_CODE_SHIFT;
2579 l4kwqe->pg_cid = csk->pg_cid;
2581 l4kwqe->da0 = csk->ha[0];
2582 l4kwqe->da1 = csk->ha[1];
2583 l4kwqe->da2 = csk->ha[2];
2584 l4kwqe->da3 = csk->ha[3];
2585 l4kwqe->da4 = csk->ha[4];
2586 l4kwqe->da5 = csk->ha[5];
2588 l4kwqe->pg_host_opaque = csk->l5_cid;
2589 l4kwqe->pg_valids = L4_KWQ_UPDATE_PG_VALIDS_DA;
2591 return dev->submit_kwqes(dev, wqes, 1);
2594 static int cnic_cm_upload_pg(struct cnic_sock *csk)
2596 struct cnic_dev *dev = csk->dev;
2597 struct l4_kwq_upload *l4kwqe;
2598 struct kwqe *wqes[1];
2600 l4kwqe = (struct l4_kwq_upload *) &csk->kwqe1;
2601 memset(l4kwqe, 0, sizeof(*l4kwqe));
2602 wqes[0] = (struct kwqe *) l4kwqe;
2604 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPLOAD_PG;
2605 l4kwqe->flags =
2606 L4_LAYER_CODE << L4_KWQ_UPLOAD_LAYER_CODE_SHIFT;
2607 l4kwqe->cid = csk->pg_cid;
2609 return dev->submit_kwqes(dev, wqes, 1);
2612 static int cnic_cm_conn_req(struct cnic_sock *csk)
2614 struct cnic_dev *dev = csk->dev;
2615 struct l4_kwq_connect_req1 *l4kwqe1;
2616 struct l4_kwq_connect_req2 *l4kwqe2;
2617 struct l4_kwq_connect_req3 *l4kwqe3;
2618 struct kwqe *wqes[3];
2619 u8 tcp_flags = 0;
2620 int num_wqes = 2;
2622 l4kwqe1 = (struct l4_kwq_connect_req1 *) &csk->kwqe1;
2623 l4kwqe2 = (struct l4_kwq_connect_req2 *) &csk->kwqe2;
2624 l4kwqe3 = (struct l4_kwq_connect_req3 *) &csk->kwqe3;
2625 memset(l4kwqe1, 0, sizeof(*l4kwqe1));
2626 memset(l4kwqe2, 0, sizeof(*l4kwqe2));
2627 memset(l4kwqe3, 0, sizeof(*l4kwqe3));
2629 l4kwqe3->op_code = L4_KWQE_OPCODE_VALUE_CONNECT3;
2630 l4kwqe3->flags =
2631 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ3_LAYER_CODE_SHIFT;
2632 l4kwqe3->ka_timeout = csk->ka_timeout;
2633 l4kwqe3->ka_interval = csk->ka_interval;
2634 l4kwqe3->ka_max_probe_count = csk->ka_max_probe_count;
2635 l4kwqe3->tos = csk->tos;
2636 l4kwqe3->ttl = csk->ttl;
2637 l4kwqe3->snd_seq_scale = csk->snd_seq_scale;
2638 l4kwqe3->pmtu = csk->mtu;
2639 l4kwqe3->rcv_buf = csk->rcv_buf;
2640 l4kwqe3->snd_buf = csk->snd_buf;
2641 l4kwqe3->seed = csk->seed;
2643 wqes[0] = (struct kwqe *) l4kwqe1;
2644 if (test_bit(SK_F_IPV6, &csk->flags)) {
2645 wqes[1] = (struct kwqe *) l4kwqe2;
2646 wqes[2] = (struct kwqe *) l4kwqe3;
2647 num_wqes = 3;
2649 l4kwqe1->conn_flags = L4_KWQ_CONNECT_REQ1_IP_V6;
2650 l4kwqe2->op_code = L4_KWQE_OPCODE_VALUE_CONNECT2;
2651 l4kwqe2->flags =
2652 L4_KWQ_CONNECT_REQ2_LINKED_WITH_NEXT |
2653 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ2_LAYER_CODE_SHIFT;
2654 l4kwqe2->src_ip_v6_2 = be32_to_cpu(csk->src_ip[1]);
2655 l4kwqe2->src_ip_v6_3 = be32_to_cpu(csk->src_ip[2]);
2656 l4kwqe2->src_ip_v6_4 = be32_to_cpu(csk->src_ip[3]);
2657 l4kwqe2->dst_ip_v6_2 = be32_to_cpu(csk->dst_ip[1]);
2658 l4kwqe2->dst_ip_v6_3 = be32_to_cpu(csk->dst_ip[2]);
2659 l4kwqe2->dst_ip_v6_4 = be32_to_cpu(csk->dst_ip[3]);
2660 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct ipv6hdr) -
2661 sizeof(struct tcphdr);
2662 } else {
2663 wqes[1] = (struct kwqe *) l4kwqe3;
2664 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct iphdr) -
2665 sizeof(struct tcphdr);
2668 l4kwqe1->op_code = L4_KWQE_OPCODE_VALUE_CONNECT1;
2669 l4kwqe1->flags =
2670 (L4_LAYER_CODE << L4_KWQ_CONNECT_REQ1_LAYER_CODE_SHIFT) |
2671 L4_KWQ_CONNECT_REQ3_LINKED_WITH_NEXT;
2672 l4kwqe1->cid = csk->cid;
2673 l4kwqe1->pg_cid = csk->pg_cid;
2674 l4kwqe1->src_ip = be32_to_cpu(csk->src_ip[0]);
2675 l4kwqe1->dst_ip = be32_to_cpu(csk->dst_ip[0]);
2676 l4kwqe1->src_port = be16_to_cpu(csk->src_port);
2677 l4kwqe1->dst_port = be16_to_cpu(csk->dst_port);
2678 if (csk->tcp_flags & SK_TCP_NO_DELAY_ACK)
2679 tcp_flags |= L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK;
2680 if (csk->tcp_flags & SK_TCP_KEEP_ALIVE)
2681 tcp_flags |= L4_KWQ_CONNECT_REQ1_KEEP_ALIVE;
2682 if (csk->tcp_flags & SK_TCP_NAGLE)
2683 tcp_flags |= L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE;
2684 if (csk->tcp_flags & SK_TCP_TIMESTAMP)
2685 tcp_flags |= L4_KWQ_CONNECT_REQ1_TIME_STAMP;
2686 if (csk->tcp_flags & SK_TCP_SACK)
2687 tcp_flags |= L4_KWQ_CONNECT_REQ1_SACK;
2688 if (csk->tcp_flags & SK_TCP_SEG_SCALING)
2689 tcp_flags |= L4_KWQ_CONNECT_REQ1_SEG_SCALING;
2691 l4kwqe1->tcp_flags = tcp_flags;
2693 return dev->submit_kwqes(dev, wqes, num_wqes);
2696 static int cnic_cm_close_req(struct cnic_sock *csk)
2698 struct cnic_dev *dev = csk->dev;
2699 struct l4_kwq_close_req *l4kwqe;
2700 struct kwqe *wqes[1];
2702 l4kwqe = (struct l4_kwq_close_req *) &csk->kwqe2;
2703 memset(l4kwqe, 0, sizeof(*l4kwqe));
2704 wqes[0] = (struct kwqe *) l4kwqe;
2706 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_CLOSE;
2707 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_CLOSE_REQ_LAYER_CODE_SHIFT;
2708 l4kwqe->cid = csk->cid;
2710 return dev->submit_kwqes(dev, wqes, 1);
2713 static int cnic_cm_abort_req(struct cnic_sock *csk)
2715 struct cnic_dev *dev = csk->dev;
2716 struct l4_kwq_reset_req *l4kwqe;
2717 struct kwqe *wqes[1];
2719 l4kwqe = (struct l4_kwq_reset_req *) &csk->kwqe2;
2720 memset(l4kwqe, 0, sizeof(*l4kwqe));
2721 wqes[0] = (struct kwqe *) l4kwqe;
2723 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_RESET;
2724 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_RESET_REQ_LAYER_CODE_SHIFT;
2725 l4kwqe->cid = csk->cid;
2727 return dev->submit_kwqes(dev, wqes, 1);
2730 static int cnic_cm_create(struct cnic_dev *dev, int ulp_type, u32 cid,
2731 u32 l5_cid, struct cnic_sock **csk, void *context)
2733 struct cnic_local *cp = dev->cnic_priv;
2734 struct cnic_sock *csk1;
2736 if (l5_cid >= MAX_CM_SK_TBL_SZ)
2737 return -EINVAL;
2739 csk1 = &cp->csk_tbl[l5_cid];
2740 if (atomic_read(&csk1->ref_count))
2741 return -EAGAIN;
2743 if (test_and_set_bit(SK_F_INUSE, &csk1->flags))
2744 return -EBUSY;
2746 csk1->dev = dev;
2747 csk1->cid = cid;
2748 csk1->l5_cid = l5_cid;
2749 csk1->ulp_type = ulp_type;
2750 csk1->context = context;
2752 csk1->ka_timeout = DEF_KA_TIMEOUT;
2753 csk1->ka_interval = DEF_KA_INTERVAL;
2754 csk1->ka_max_probe_count = DEF_KA_MAX_PROBE_COUNT;
2755 csk1->tos = DEF_TOS;
2756 csk1->ttl = DEF_TTL;
2757 csk1->snd_seq_scale = DEF_SND_SEQ_SCALE;
2758 csk1->rcv_buf = DEF_RCV_BUF;
2759 csk1->snd_buf = DEF_SND_BUF;
2760 csk1->seed = DEF_SEED;
2762 *csk = csk1;
2763 return 0;
2766 static void cnic_cm_cleanup(struct cnic_sock *csk)
2768 if (csk->src_port) {
2769 struct cnic_dev *dev = csk->dev;
2770 struct cnic_local *cp = dev->cnic_priv;
2772 cnic_free_id(&cp->csk_port_tbl, csk->src_port);
2773 csk->src_port = 0;
2777 static void cnic_close_conn(struct cnic_sock *csk)
2779 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags)) {
2780 cnic_cm_upload_pg(csk);
2781 clear_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
2783 cnic_cm_cleanup(csk);
2786 static int cnic_cm_destroy(struct cnic_sock *csk)
2788 if (!cnic_in_use(csk))
2789 return -EINVAL;
2791 csk_hold(csk);
2792 clear_bit(SK_F_INUSE, &csk->flags);
2793 smp_mb__after_clear_bit();
2794 while (atomic_read(&csk->ref_count) != 1)
2795 msleep(1);
2796 cnic_cm_cleanup(csk);
2798 csk->flags = 0;
2799 csk_put(csk);
2800 return 0;
2803 static inline u16 cnic_get_vlan(struct net_device *dev,
2804 struct net_device **vlan_dev)
2806 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2807 *vlan_dev = vlan_dev_real_dev(dev);
2808 return vlan_dev_vlan_id(dev);
2810 *vlan_dev = dev;
2811 return 0;
2814 static int cnic_get_v4_route(struct sockaddr_in *dst_addr,
2815 struct dst_entry **dst)
2817 #if defined(CONFIG_INET)
2818 struct flowi fl;
2819 int err;
2820 struct rtable *rt;
2822 memset(&fl, 0, sizeof(fl));
2823 fl.nl_u.ip4_u.daddr = dst_addr->sin_addr.s_addr;
2825 err = ip_route_output_key(&init_net, &rt, &fl);
2826 if (!err)
2827 *dst = &rt->dst;
2828 return err;
2829 #else
2830 return -ENETUNREACH;
2831 #endif
2834 static int cnic_get_v6_route(struct sockaddr_in6 *dst_addr,
2835 struct dst_entry **dst)
2837 #if defined(CONFIG_IPV6) || (defined(CONFIG_IPV6_MODULE) && defined(MODULE))
2838 struct flowi fl;
2840 memset(&fl, 0, sizeof(fl));
2841 ipv6_addr_copy(&fl.fl6_dst, &dst_addr->sin6_addr);
2842 if (ipv6_addr_type(&fl.fl6_dst) & IPV6_ADDR_LINKLOCAL)
2843 fl.oif = dst_addr->sin6_scope_id;
2845 *dst = ip6_route_output(&init_net, NULL, &fl);
2846 if (*dst)
2847 return 0;
2848 #endif
2850 return -ENETUNREACH;
2853 static struct cnic_dev *cnic_cm_select_dev(struct sockaddr_in *dst_addr,
2854 int ulp_type)
2856 struct cnic_dev *dev = NULL;
2857 struct dst_entry *dst;
2858 struct net_device *netdev = NULL;
2859 int err = -ENETUNREACH;
2861 if (dst_addr->sin_family == AF_INET)
2862 err = cnic_get_v4_route(dst_addr, &dst);
2863 else if (dst_addr->sin_family == AF_INET6) {
2864 struct sockaddr_in6 *dst_addr6 =
2865 (struct sockaddr_in6 *) dst_addr;
2867 err = cnic_get_v6_route(dst_addr6, &dst);
2868 } else
2869 return NULL;
2871 if (err)
2872 return NULL;
2874 if (!dst->dev)
2875 goto done;
2877 cnic_get_vlan(dst->dev, &netdev);
2879 dev = cnic_from_netdev(netdev);
2881 done:
2882 dst_release(dst);
2883 if (dev)
2884 cnic_put(dev);
2885 return dev;
2888 static int cnic_resolve_addr(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
2890 struct cnic_dev *dev = csk->dev;
2891 struct cnic_local *cp = dev->cnic_priv;
2893 return cnic_send_nlmsg(cp, ISCSI_KEVENT_PATH_REQ, csk);
2896 static int cnic_get_route(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
2898 struct cnic_dev *dev = csk->dev;
2899 struct cnic_local *cp = dev->cnic_priv;
2900 int is_v6, rc = 0;
2901 struct dst_entry *dst = NULL;
2902 struct net_device *realdev;
2903 u32 local_port;
2905 if (saddr->local.v6.sin6_family == AF_INET6 &&
2906 saddr->remote.v6.sin6_family == AF_INET6)
2907 is_v6 = 1;
2908 else if (saddr->local.v4.sin_family == AF_INET &&
2909 saddr->remote.v4.sin_family == AF_INET)
2910 is_v6 = 0;
2911 else
2912 return -EINVAL;
2914 clear_bit(SK_F_IPV6, &csk->flags);
2916 if (is_v6) {
2917 set_bit(SK_F_IPV6, &csk->flags);
2918 cnic_get_v6_route(&saddr->remote.v6, &dst);
2920 memcpy(&csk->dst_ip[0], &saddr->remote.v6.sin6_addr,
2921 sizeof(struct in6_addr));
2922 csk->dst_port = saddr->remote.v6.sin6_port;
2923 local_port = saddr->local.v6.sin6_port;
2925 } else {
2926 cnic_get_v4_route(&saddr->remote.v4, &dst);
2928 csk->dst_ip[0] = saddr->remote.v4.sin_addr.s_addr;
2929 csk->dst_port = saddr->remote.v4.sin_port;
2930 local_port = saddr->local.v4.sin_port;
2933 csk->vlan_id = 0;
2934 csk->mtu = dev->netdev->mtu;
2935 if (dst && dst->dev) {
2936 u16 vlan = cnic_get_vlan(dst->dev, &realdev);
2937 if (realdev == dev->netdev) {
2938 csk->vlan_id = vlan;
2939 csk->mtu = dst_mtu(dst);
2943 if (local_port >= CNIC_LOCAL_PORT_MIN &&
2944 local_port < CNIC_LOCAL_PORT_MAX) {
2945 if (cnic_alloc_id(&cp->csk_port_tbl, local_port))
2946 local_port = 0;
2947 } else
2948 local_port = 0;
2950 if (!local_port) {
2951 local_port = cnic_alloc_new_id(&cp->csk_port_tbl);
2952 if (local_port == -1) {
2953 rc = -ENOMEM;
2954 goto err_out;
2957 csk->src_port = local_port;
2959 err_out:
2960 dst_release(dst);
2961 return rc;
2964 static void cnic_init_csk_state(struct cnic_sock *csk)
2966 csk->state = 0;
2967 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
2968 clear_bit(SK_F_CLOSING, &csk->flags);
2971 static int cnic_cm_connect(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
2973 int err = 0;
2975 if (!cnic_in_use(csk))
2976 return -EINVAL;
2978 if (test_and_set_bit(SK_F_CONNECT_START, &csk->flags))
2979 return -EINVAL;
2981 cnic_init_csk_state(csk);
2983 err = cnic_get_route(csk, saddr);
2984 if (err)
2985 goto err_out;
2987 err = cnic_resolve_addr(csk, saddr);
2988 if (!err)
2989 return 0;
2991 err_out:
2992 clear_bit(SK_F_CONNECT_START, &csk->flags);
2993 return err;
2996 static int cnic_cm_abort(struct cnic_sock *csk)
2998 struct cnic_local *cp = csk->dev->cnic_priv;
2999 u32 opcode;
3001 if (!cnic_in_use(csk))
3002 return -EINVAL;
3004 if (cnic_abort_prep(csk))
3005 return cnic_cm_abort_req(csk);
3007 /* Getting here means that we haven't started connect, or
3008 * connect was not successful.
3011 csk->state = L4_KCQE_OPCODE_VALUE_RESET_COMP;
3012 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3013 opcode = csk->state;
3014 else
3015 opcode = L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD;
3016 cp->close_conn(csk, opcode);
3018 return 0;
3021 static int cnic_cm_close(struct cnic_sock *csk)
3023 if (!cnic_in_use(csk))
3024 return -EINVAL;
3026 if (cnic_close_prep(csk)) {
3027 csk->state = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
3028 return cnic_cm_close_req(csk);
3029 } else {
3030 return -EALREADY;
3032 return 0;
3035 static void cnic_cm_upcall(struct cnic_local *cp, struct cnic_sock *csk,
3036 u8 opcode)
3038 struct cnic_ulp_ops *ulp_ops;
3039 int ulp_type = csk->ulp_type;
3041 rcu_read_lock();
3042 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
3043 if (ulp_ops) {
3044 if (opcode == L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE)
3045 ulp_ops->cm_connect_complete(csk);
3046 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
3047 ulp_ops->cm_close_complete(csk);
3048 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED)
3049 ulp_ops->cm_remote_abort(csk);
3050 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_COMP)
3051 ulp_ops->cm_abort_complete(csk);
3052 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED)
3053 ulp_ops->cm_remote_close(csk);
3055 rcu_read_unlock();
3058 static int cnic_cm_set_pg(struct cnic_sock *csk)
3060 if (cnic_offld_prep(csk)) {
3061 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3062 cnic_cm_update_pg(csk);
3063 else
3064 cnic_cm_offload_pg(csk);
3066 return 0;
3069 static void cnic_cm_process_offld_pg(struct cnic_dev *dev, struct l4_kcq *kcqe)
3071 struct cnic_local *cp = dev->cnic_priv;
3072 u32 l5_cid = kcqe->pg_host_opaque;
3073 u8 opcode = kcqe->op_code;
3074 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
3076 csk_hold(csk);
3077 if (!cnic_in_use(csk))
3078 goto done;
3080 if (opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3081 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3082 goto done;
3084 /* Possible PG kcqe status: SUCCESS, OFFLOADED_PG, or CTX_ALLOC_FAIL */
3085 if (kcqe->status == L4_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAIL) {
3086 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3087 cnic_cm_upcall(cp, csk,
3088 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3089 goto done;
3092 csk->pg_cid = kcqe->pg_cid;
3093 set_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3094 cnic_cm_conn_req(csk);
3096 done:
3097 csk_put(csk);
3100 static void cnic_cm_process_kcqe(struct cnic_dev *dev, struct kcqe *kcqe)
3102 struct cnic_local *cp = dev->cnic_priv;
3103 struct l4_kcq *l4kcqe = (struct l4_kcq *) kcqe;
3104 u8 opcode = l4kcqe->op_code;
3105 u32 l5_cid;
3106 struct cnic_sock *csk;
3108 if (opcode == L4_KCQE_OPCODE_VALUE_OFFLOAD_PG ||
3109 opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3110 cnic_cm_process_offld_pg(dev, l4kcqe);
3111 return;
3114 l5_cid = l4kcqe->conn_id;
3115 if (opcode & 0x80)
3116 l5_cid = l4kcqe->cid;
3117 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3118 return;
3120 csk = &cp->csk_tbl[l5_cid];
3121 csk_hold(csk);
3123 if (!cnic_in_use(csk)) {
3124 csk_put(csk);
3125 return;
3128 switch (opcode) {
3129 case L5CM_RAMROD_CMD_ID_TCP_CONNECT:
3130 if (l4kcqe->status != 0) {
3131 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3132 cnic_cm_upcall(cp, csk,
3133 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3135 break;
3136 case L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE:
3137 if (l4kcqe->status == 0)
3138 set_bit(SK_F_OFFLD_COMPLETE, &csk->flags);
3140 smp_mb__before_clear_bit();
3141 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3142 cnic_cm_upcall(cp, csk, opcode);
3143 break;
3145 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
3146 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
3147 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
3148 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
3149 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
3150 cp->close_conn(csk, opcode);
3151 break;
3153 case L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED:
3154 cnic_cm_upcall(cp, csk, opcode);
3155 break;
3157 csk_put(csk);
3160 static void cnic_cm_indicate_kcqe(void *data, struct kcqe *kcqe[], u32 num)
3162 struct cnic_dev *dev = data;
3163 int i;
3165 for (i = 0; i < num; i++)
3166 cnic_cm_process_kcqe(dev, kcqe[i]);
3169 static struct cnic_ulp_ops cm_ulp_ops = {
3170 .indicate_kcqes = cnic_cm_indicate_kcqe,
3173 static void cnic_cm_free_mem(struct cnic_dev *dev)
3175 struct cnic_local *cp = dev->cnic_priv;
3177 kfree(cp->csk_tbl);
3178 cp->csk_tbl = NULL;
3179 cnic_free_id_tbl(&cp->csk_port_tbl);
3182 static int cnic_cm_alloc_mem(struct cnic_dev *dev)
3184 struct cnic_local *cp = dev->cnic_priv;
3186 cp->csk_tbl = kzalloc(sizeof(struct cnic_sock) * MAX_CM_SK_TBL_SZ,
3187 GFP_KERNEL);
3188 if (!cp->csk_tbl)
3189 return -ENOMEM;
3191 if (cnic_init_id_tbl(&cp->csk_port_tbl, CNIC_LOCAL_PORT_RANGE,
3192 CNIC_LOCAL_PORT_MIN)) {
3193 cnic_cm_free_mem(dev);
3194 return -ENOMEM;
3196 return 0;
3199 static int cnic_ready_to_close(struct cnic_sock *csk, u32 opcode)
3201 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
3202 /* Unsolicited RESET_COMP or RESET_RECEIVED */
3203 opcode = L4_KCQE_OPCODE_VALUE_RESET_RECEIVED;
3204 csk->state = opcode;
3207 /* 1. If event opcode matches the expected event in csk->state
3208 * 2. If the expected event is CLOSE_COMP, we accept any event
3210 if (opcode == csk->state ||
3211 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP) {
3212 if (!test_and_set_bit(SK_F_CLOSING, &csk->flags))
3213 return 1;
3215 return 0;
3218 static void cnic_close_bnx2_conn(struct cnic_sock *csk, u32 opcode)
3220 struct cnic_dev *dev = csk->dev;
3221 struct cnic_local *cp = dev->cnic_priv;
3223 if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED) {
3224 cnic_cm_upcall(cp, csk, opcode);
3225 return;
3228 clear_bit(SK_F_CONNECT_START, &csk->flags);
3229 cnic_close_conn(csk);
3230 cnic_cm_upcall(cp, csk, opcode);
3233 static void cnic_cm_stop_bnx2_hw(struct cnic_dev *dev)
3237 static int cnic_cm_init_bnx2_hw(struct cnic_dev *dev)
3239 u32 seed;
3241 get_random_bytes(&seed, 4);
3242 cnic_ctx_wr(dev, 45, 0, seed);
3243 return 0;
3246 static void cnic_close_bnx2x_conn(struct cnic_sock *csk, u32 opcode)
3248 struct cnic_dev *dev = csk->dev;
3249 struct cnic_local *cp = dev->cnic_priv;
3250 struct cnic_context *ctx = &cp->ctx_tbl[csk->l5_cid];
3251 union l5cm_specific_data l5_data;
3252 u32 cmd = 0;
3253 int close_complete = 0;
3255 switch (opcode) {
3256 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
3257 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
3258 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
3259 if (cnic_ready_to_close(csk, opcode))
3260 cmd = L5CM_RAMROD_CMD_ID_SEARCHER_DELETE;
3261 break;
3262 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
3263 cmd = L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD;
3264 break;
3265 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
3266 close_complete = 1;
3267 break;
3269 if (cmd) {
3270 memset(&l5_data, 0, sizeof(l5_data));
3272 cnic_submit_kwqe_16(dev, cmd, csk->cid, ISCSI_CONNECTION_TYPE,
3273 &l5_data);
3274 } else if (close_complete) {
3275 ctx->timestamp = jiffies;
3276 cnic_close_conn(csk);
3277 cnic_cm_upcall(cp, csk, csk->state);
3281 static void cnic_cm_stop_bnx2x_hw(struct cnic_dev *dev)
3285 static int cnic_cm_init_bnx2x_hw(struct cnic_dev *dev)
3287 struct cnic_local *cp = dev->cnic_priv;
3288 int func = CNIC_FUNC(cp);
3290 cnic_init_bnx2x_mac(dev);
3291 cnic_bnx2x_set_tcp_timestamp(dev, 1);
3293 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
3294 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(func), 0);
3296 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
3297 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_ENABLED_OFFSET(func), 1);
3298 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
3299 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_MAX_COUNT_OFFSET(func),
3300 DEF_MAX_DA_COUNT);
3302 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
3303 XSTORM_ISCSI_TCP_VARS_TTL_OFFSET(func), DEF_TTL);
3304 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
3305 XSTORM_ISCSI_TCP_VARS_TOS_OFFSET(func), DEF_TOS);
3306 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
3307 XSTORM_ISCSI_TCP_VARS_ADV_WND_SCL_OFFSET(func), 2);
3308 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
3309 XSTORM_TCP_TX_SWS_TIMER_VAL_OFFSET(func), DEF_SWS_TIMER);
3311 CNIC_WR(dev, BAR_TSTRORM_INTMEM + TSTORM_TCP_MAX_CWND_OFFSET(func),
3312 DEF_MAX_CWND);
3313 return 0;
3316 static int cnic_cm_open(struct cnic_dev *dev)
3318 struct cnic_local *cp = dev->cnic_priv;
3319 int err;
3321 err = cnic_cm_alloc_mem(dev);
3322 if (err)
3323 return err;
3325 err = cp->start_cm(dev);
3327 if (err)
3328 goto err_out;
3330 dev->cm_create = cnic_cm_create;
3331 dev->cm_destroy = cnic_cm_destroy;
3332 dev->cm_connect = cnic_cm_connect;
3333 dev->cm_abort = cnic_cm_abort;
3334 dev->cm_close = cnic_cm_close;
3335 dev->cm_select_dev = cnic_cm_select_dev;
3337 cp->ulp_handle[CNIC_ULP_L4] = dev;
3338 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], &cm_ulp_ops);
3339 return 0;
3341 err_out:
3342 cnic_cm_free_mem(dev);
3343 return err;
3346 static int cnic_cm_shutdown(struct cnic_dev *dev)
3348 struct cnic_local *cp = dev->cnic_priv;
3349 int i;
3351 cp->stop_cm(dev);
3353 if (!cp->csk_tbl)
3354 return 0;
3356 for (i = 0; i < MAX_CM_SK_TBL_SZ; i++) {
3357 struct cnic_sock *csk = &cp->csk_tbl[i];
3359 clear_bit(SK_F_INUSE, &csk->flags);
3360 cnic_cm_cleanup(csk);
3362 cnic_cm_free_mem(dev);
3364 return 0;
3367 static void cnic_init_context(struct cnic_dev *dev, u32 cid)
3369 u32 cid_addr;
3370 int i;
3372 cid_addr = GET_CID_ADDR(cid);
3374 for (i = 0; i < CTX_SIZE; i += 4)
3375 cnic_ctx_wr(dev, cid_addr, i, 0);
3378 static int cnic_setup_5709_context(struct cnic_dev *dev, int valid)
3380 struct cnic_local *cp = dev->cnic_priv;
3381 int ret = 0, i;
3382 u32 valid_bit = valid ? BNX2_CTX_HOST_PAGE_TBL_DATA0_VALID : 0;
3384 if (CHIP_NUM(cp) != CHIP_NUM_5709)
3385 return 0;
3387 for (i = 0; i < cp->ctx_blks; i++) {
3388 int j;
3389 u32 idx = cp->ctx_arr[i].cid / cp->cids_per_blk;
3390 u32 val;
3392 memset(cp->ctx_arr[i].ctx, 0, BCM_PAGE_SIZE);
3394 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA0,
3395 (cp->ctx_arr[i].mapping & 0xffffffff) | valid_bit);
3396 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA1,
3397 (u64) cp->ctx_arr[i].mapping >> 32);
3398 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL, idx |
3399 BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ);
3400 for (j = 0; j < 10; j++) {
3402 val = CNIC_RD(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL);
3403 if (!(val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ))
3404 break;
3405 udelay(5);
3407 if (val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ) {
3408 ret = -EBUSY;
3409 break;
3412 return ret;
3415 static void cnic_free_irq(struct cnic_dev *dev)
3417 struct cnic_local *cp = dev->cnic_priv;
3418 struct cnic_eth_dev *ethdev = cp->ethdev;
3420 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
3421 cp->disable_int_sync(dev);
3422 tasklet_disable(&cp->cnic_irq_task);
3423 free_irq(ethdev->irq_arr[0].vector, dev);
3427 static int cnic_init_bnx2_irq(struct cnic_dev *dev)
3429 struct cnic_local *cp = dev->cnic_priv;
3430 struct cnic_eth_dev *ethdev = cp->ethdev;
3432 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
3433 int err, i = 0;
3434 int sblk_num = cp->status_blk_num;
3435 u32 base = ((sblk_num - 1) * BNX2_HC_SB_CONFIG_SIZE) +
3436 BNX2_HC_SB_CONFIG_1;
3438 CNIC_WR(dev, base, BNX2_HC_SB_CONFIG_1_ONE_SHOT);
3440 CNIC_WR(dev, base + BNX2_HC_COMP_PROD_TRIP_OFF, (2 << 16) | 8);
3441 CNIC_WR(dev, base + BNX2_HC_COM_TICKS_OFF, (64 << 16) | 220);
3442 CNIC_WR(dev, base + BNX2_HC_CMD_TICKS_OFF, (64 << 16) | 220);
3444 cp->last_status_idx = cp->status_blk.bnx2->status_idx;
3445 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2_msix,
3446 (unsigned long) dev);
3447 err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0,
3448 "cnic", dev);
3449 if (err) {
3450 tasklet_disable(&cp->cnic_irq_task);
3451 return err;
3453 while (cp->status_blk.bnx2->status_completion_producer_index &&
3454 i < 10) {
3455 CNIC_WR(dev, BNX2_HC_COALESCE_NOW,
3456 1 << (11 + sblk_num));
3457 udelay(10);
3458 i++;
3459 barrier();
3461 if (cp->status_blk.bnx2->status_completion_producer_index) {
3462 cnic_free_irq(dev);
3463 goto failed;
3466 } else {
3467 struct status_block *sblk = cp->status_blk.gen;
3468 u32 hc_cmd = CNIC_RD(dev, BNX2_HC_COMMAND);
3469 int i = 0;
3471 while (sblk->status_completion_producer_index && i < 10) {
3472 CNIC_WR(dev, BNX2_HC_COMMAND,
3473 hc_cmd | BNX2_HC_COMMAND_COAL_NOW_WO_INT);
3474 udelay(10);
3475 i++;
3476 barrier();
3478 if (sblk->status_completion_producer_index)
3479 goto failed;
3482 return 0;
3484 failed:
3485 netdev_err(dev->netdev, "KCQ index not resetting to 0\n");
3486 return -EBUSY;
3489 static void cnic_enable_bnx2_int(struct cnic_dev *dev)
3491 struct cnic_local *cp = dev->cnic_priv;
3492 struct cnic_eth_dev *ethdev = cp->ethdev;
3494 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
3495 return;
3497 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
3498 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
3501 static void cnic_disable_bnx2_int_sync(struct cnic_dev *dev)
3503 struct cnic_local *cp = dev->cnic_priv;
3504 struct cnic_eth_dev *ethdev = cp->ethdev;
3506 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
3507 return;
3509 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
3510 BNX2_PCICFG_INT_ACK_CMD_MASK_INT);
3511 CNIC_RD(dev, BNX2_PCICFG_INT_ACK_CMD);
3512 synchronize_irq(ethdev->irq_arr[0].vector);
3515 static void cnic_init_bnx2_tx_ring(struct cnic_dev *dev)
3517 struct cnic_local *cp = dev->cnic_priv;
3518 struct cnic_eth_dev *ethdev = cp->ethdev;
3519 u32 cid_addr, tx_cid, sb_id;
3520 u32 val, offset0, offset1, offset2, offset3;
3521 int i;
3522 struct tx_bd *txbd;
3523 dma_addr_t buf_map;
3524 struct status_block *s_blk = cp->status_blk.gen;
3526 sb_id = cp->status_blk_num;
3527 tx_cid = 20;
3528 cp->tx_cons_ptr = &s_blk->status_tx_quick_consumer_index2;
3529 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
3530 struct status_block_msix *sblk = cp->status_blk.bnx2;
3532 tx_cid = TX_TSS_CID + sb_id - 1;
3533 CNIC_WR(dev, BNX2_TSCH_TSS_CFG, (sb_id << 24) |
3534 (TX_TSS_CID << 7));
3535 cp->tx_cons_ptr = &sblk->status_tx_quick_consumer_index;
3537 cp->tx_cons = *cp->tx_cons_ptr;
3539 cid_addr = GET_CID_ADDR(tx_cid);
3540 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
3541 u32 cid_addr2 = GET_CID_ADDR(tx_cid + 4) + 0x40;
3543 for (i = 0; i < PHY_CTX_SIZE; i += 4)
3544 cnic_ctx_wr(dev, cid_addr2, i, 0);
3546 offset0 = BNX2_L2CTX_TYPE_XI;
3547 offset1 = BNX2_L2CTX_CMD_TYPE_XI;
3548 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI_XI;
3549 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO_XI;
3550 } else {
3551 cnic_init_context(dev, tx_cid);
3552 cnic_init_context(dev, tx_cid + 1);
3554 offset0 = BNX2_L2CTX_TYPE;
3555 offset1 = BNX2_L2CTX_CMD_TYPE;
3556 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI;
3557 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO;
3559 val = BNX2_L2CTX_TYPE_TYPE_L2 | BNX2_L2CTX_TYPE_SIZE_L2;
3560 cnic_ctx_wr(dev, cid_addr, offset0, val);
3562 val = BNX2_L2CTX_CMD_TYPE_TYPE_L2 | (8 << 16);
3563 cnic_ctx_wr(dev, cid_addr, offset1, val);
3565 txbd = (struct tx_bd *) cp->l2_ring;
3567 buf_map = cp->l2_buf_map;
3568 for (i = 0; i < MAX_TX_DESC_CNT; i++, txbd++) {
3569 txbd->tx_bd_haddr_hi = (u64) buf_map >> 32;
3570 txbd->tx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
3572 val = (u64) cp->l2_ring_map >> 32;
3573 cnic_ctx_wr(dev, cid_addr, offset2, val);
3574 txbd->tx_bd_haddr_hi = val;
3576 val = (u64) cp->l2_ring_map & 0xffffffff;
3577 cnic_ctx_wr(dev, cid_addr, offset3, val);
3578 txbd->tx_bd_haddr_lo = val;
3581 static void cnic_init_bnx2_rx_ring(struct cnic_dev *dev)
3583 struct cnic_local *cp = dev->cnic_priv;
3584 struct cnic_eth_dev *ethdev = cp->ethdev;
3585 u32 cid_addr, sb_id, val, coal_reg, coal_val;
3586 int i;
3587 struct rx_bd *rxbd;
3588 struct status_block *s_blk = cp->status_blk.gen;
3590 sb_id = cp->status_blk_num;
3591 cnic_init_context(dev, 2);
3592 cp->rx_cons_ptr = &s_blk->status_rx_quick_consumer_index2;
3593 coal_reg = BNX2_HC_COMMAND;
3594 coal_val = CNIC_RD(dev, coal_reg);
3595 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
3596 struct status_block_msix *sblk = cp->status_blk.bnx2;
3598 cp->rx_cons_ptr = &sblk->status_rx_quick_consumer_index;
3599 coal_reg = BNX2_HC_COALESCE_NOW;
3600 coal_val = 1 << (11 + sb_id);
3602 i = 0;
3603 while (!(*cp->rx_cons_ptr != 0) && i < 10) {
3604 CNIC_WR(dev, coal_reg, coal_val);
3605 udelay(10);
3606 i++;
3607 barrier();
3609 cp->rx_cons = *cp->rx_cons_ptr;
3611 cid_addr = GET_CID_ADDR(2);
3612 val = BNX2_L2CTX_CTX_TYPE_CTX_BD_CHN_TYPE_VALUE |
3613 BNX2_L2CTX_CTX_TYPE_SIZE_L2 | (0x02 << 8);
3614 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_CTX_TYPE, val);
3616 if (sb_id == 0)
3617 val = 2 << BNX2_L2CTX_L2_STATUSB_NUM_SHIFT;
3618 else
3619 val = BNX2_L2CTX_L2_STATUSB_NUM(sb_id);
3620 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_HOST_BDIDX, val);
3622 rxbd = (struct rx_bd *) (cp->l2_ring + BCM_PAGE_SIZE);
3623 for (i = 0; i < MAX_RX_DESC_CNT; i++, rxbd++) {
3624 dma_addr_t buf_map;
3625 int n = (i % cp->l2_rx_ring_size) + 1;
3627 buf_map = cp->l2_buf_map + (n * cp->l2_single_buf_size);
3628 rxbd->rx_bd_len = cp->l2_single_buf_size;
3629 rxbd->rx_bd_flags = RX_BD_FLAGS_START | RX_BD_FLAGS_END;
3630 rxbd->rx_bd_haddr_hi = (u64) buf_map >> 32;
3631 rxbd->rx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
3633 val = (u64) (cp->l2_ring_map + BCM_PAGE_SIZE) >> 32;
3634 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_HI, val);
3635 rxbd->rx_bd_haddr_hi = val;
3637 val = (u64) (cp->l2_ring_map + BCM_PAGE_SIZE) & 0xffffffff;
3638 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_LO, val);
3639 rxbd->rx_bd_haddr_lo = val;
3641 val = cnic_reg_rd_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD);
3642 cnic_reg_wr_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD, val | (1 << 2));
3645 static void cnic_shutdown_bnx2_rx_ring(struct cnic_dev *dev)
3647 struct kwqe *wqes[1], l2kwqe;
3649 memset(&l2kwqe, 0, sizeof(l2kwqe));
3650 wqes[0] = &l2kwqe;
3651 l2kwqe.kwqe_op_flag = (L2_LAYER_CODE << KWQE_FLAGS_LAYER_SHIFT) |
3652 (L2_KWQE_OPCODE_VALUE_FLUSH <<
3653 KWQE_OPCODE_SHIFT) | 2;
3654 dev->submit_kwqes(dev, wqes, 1);
3657 static void cnic_set_bnx2_mac(struct cnic_dev *dev)
3659 struct cnic_local *cp = dev->cnic_priv;
3660 u32 val;
3662 val = cp->func << 2;
3664 cp->shmem_base = cnic_reg_rd_ind(dev, BNX2_SHM_HDR_ADDR_0 + val);
3666 val = cnic_reg_rd_ind(dev, cp->shmem_base +
3667 BNX2_PORT_HW_CFG_ISCSI_MAC_UPPER);
3668 dev->mac_addr[0] = (u8) (val >> 8);
3669 dev->mac_addr[1] = (u8) val;
3671 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH4, val);
3673 val = cnic_reg_rd_ind(dev, cp->shmem_base +
3674 BNX2_PORT_HW_CFG_ISCSI_MAC_LOWER);
3675 dev->mac_addr[2] = (u8) (val >> 24);
3676 dev->mac_addr[3] = (u8) (val >> 16);
3677 dev->mac_addr[4] = (u8) (val >> 8);
3678 dev->mac_addr[5] = (u8) val;
3680 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH5, val);
3682 val = 4 | BNX2_RPM_SORT_USER2_BC_EN;
3683 if (CHIP_NUM(cp) != CHIP_NUM_5709)
3684 val |= BNX2_RPM_SORT_USER2_PROM_VLAN;
3686 CNIC_WR(dev, BNX2_RPM_SORT_USER2, 0x0);
3687 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val);
3688 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val | BNX2_RPM_SORT_USER2_ENA);
3691 static int cnic_start_bnx2_hw(struct cnic_dev *dev)
3693 struct cnic_local *cp = dev->cnic_priv;
3694 struct cnic_eth_dev *ethdev = cp->ethdev;
3695 struct status_block *sblk = cp->status_blk.gen;
3696 u32 val;
3697 int err;
3699 cnic_set_bnx2_mac(dev);
3701 val = CNIC_RD(dev, BNX2_MQ_CONFIG);
3702 val &= ~BNX2_MQ_CONFIG_KNL_BYP_BLK_SIZE;
3703 if (BCM_PAGE_BITS > 12)
3704 val |= (12 - 8) << 4;
3705 else
3706 val |= (BCM_PAGE_BITS - 8) << 4;
3708 CNIC_WR(dev, BNX2_MQ_CONFIG, val);
3710 CNIC_WR(dev, BNX2_HC_COMP_PROD_TRIP, (2 << 16) | 8);
3711 CNIC_WR(dev, BNX2_HC_COM_TICKS, (64 << 16) | 220);
3712 CNIC_WR(dev, BNX2_HC_CMD_TICKS, (64 << 16) | 220);
3714 err = cnic_setup_5709_context(dev, 1);
3715 if (err)
3716 return err;
3718 cnic_init_context(dev, KWQ_CID);
3719 cnic_init_context(dev, KCQ_CID);
3721 cp->kwq_cid_addr = GET_CID_ADDR(KWQ_CID);
3722 cp->kwq_io_addr = MB_GET_CID_ADDR(KWQ_CID) + L5_KRNLQ_HOST_QIDX;
3724 cp->max_kwq_idx = MAX_KWQ_IDX;
3725 cp->kwq_prod_idx = 0;
3726 cp->kwq_con_idx = 0;
3727 set_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
3729 if (CHIP_NUM(cp) == CHIP_NUM_5706 || CHIP_NUM(cp) == CHIP_NUM_5708)
3730 cp->kwq_con_idx_ptr = &sblk->status_rx_quick_consumer_index15;
3731 else
3732 cp->kwq_con_idx_ptr = &sblk->status_cmd_consumer_index;
3734 /* Initialize the kernel work queue context. */
3735 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
3736 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
3737 cnic_ctx_wr(dev, cp->kwq_cid_addr, L5_KRNLQ_TYPE, val);
3739 val = (BCM_PAGE_SIZE / sizeof(struct kwqe) - 1) << 16;
3740 cnic_ctx_wr(dev, cp->kwq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
3742 val = ((BCM_PAGE_SIZE / sizeof(struct kwqe)) << 16) | KWQ_PAGE_CNT;
3743 cnic_ctx_wr(dev, cp->kwq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
3745 val = (u32) ((u64) cp->kwq_info.pgtbl_map >> 32);
3746 cnic_ctx_wr(dev, cp->kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
3748 val = (u32) cp->kwq_info.pgtbl_map;
3749 cnic_ctx_wr(dev, cp->kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
3751 cp->kcq_cid_addr = GET_CID_ADDR(KCQ_CID);
3752 cp->kcq_io_addr = MB_GET_CID_ADDR(KCQ_CID) + L5_KRNLQ_HOST_QIDX;
3754 cp->kcq_prod_idx = 0;
3756 /* Initialize the kernel complete queue context. */
3757 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
3758 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
3759 cnic_ctx_wr(dev, cp->kcq_cid_addr, L5_KRNLQ_TYPE, val);
3761 val = (BCM_PAGE_SIZE / sizeof(struct kcqe) - 1) << 16;
3762 cnic_ctx_wr(dev, cp->kcq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
3764 val = ((BCM_PAGE_SIZE / sizeof(struct kcqe)) << 16) | KCQ_PAGE_CNT;
3765 cnic_ctx_wr(dev, cp->kcq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
3767 val = (u32) ((u64) cp->kcq_info.pgtbl_map >> 32);
3768 cnic_ctx_wr(dev, cp->kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
3770 val = (u32) cp->kcq_info.pgtbl_map;
3771 cnic_ctx_wr(dev, cp->kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
3773 cp->int_num = 0;
3774 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
3775 u32 sb_id = cp->status_blk_num;
3776 u32 sb = BNX2_L2CTX_L5_STATUSB_NUM(sb_id);
3778 cp->int_num = sb_id << BNX2_PCICFG_INT_ACK_CMD_INT_NUM_SHIFT;
3779 cnic_ctx_wr(dev, cp->kwq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
3780 cnic_ctx_wr(dev, cp->kcq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
3783 /* Enable Commnad Scheduler notification when we write to the
3784 * host producer index of the kernel contexts. */
3785 CNIC_WR(dev, BNX2_MQ_KNL_CMD_MASK1, 2);
3787 /* Enable Command Scheduler notification when we write to either
3788 * the Send Queue or Receive Queue producer indexes of the kernel
3789 * bypass contexts. */
3790 CNIC_WR(dev, BNX2_MQ_KNL_BYP_CMD_MASK1, 7);
3791 CNIC_WR(dev, BNX2_MQ_KNL_BYP_WRITE_MASK1, 7);
3793 /* Notify COM when the driver post an application buffer. */
3794 CNIC_WR(dev, BNX2_MQ_KNL_RX_V2P_MASK2, 0x2000);
3796 /* Set the CP and COM doorbells. These two processors polls the
3797 * doorbell for a non zero value before running. This must be done
3798 * after setting up the kernel queue contexts. */
3799 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 1);
3800 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 1);
3802 cnic_init_bnx2_tx_ring(dev);
3803 cnic_init_bnx2_rx_ring(dev);
3805 err = cnic_init_bnx2_irq(dev);
3806 if (err) {
3807 netdev_err(dev->netdev, "cnic_init_irq failed\n");
3808 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
3809 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
3810 return err;
3813 return 0;
3816 static void cnic_setup_bnx2x_context(struct cnic_dev *dev)
3818 struct cnic_local *cp = dev->cnic_priv;
3819 struct cnic_eth_dev *ethdev = cp->ethdev;
3820 u32 start_offset = ethdev->ctx_tbl_offset;
3821 int i;
3823 for (i = 0; i < cp->ctx_blks; i++) {
3824 struct cnic_ctx *ctx = &cp->ctx_arr[i];
3825 dma_addr_t map = ctx->mapping;
3827 if (cp->ctx_align) {
3828 unsigned long mask = cp->ctx_align - 1;
3830 map = (map + mask) & ~mask;
3833 cnic_ctx_tbl_wr(dev, start_offset + i, map);
3837 static int cnic_init_bnx2x_irq(struct cnic_dev *dev)
3839 struct cnic_local *cp = dev->cnic_priv;
3840 struct cnic_eth_dev *ethdev = cp->ethdev;
3841 int err = 0;
3843 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2x_bh,
3844 (unsigned long) dev);
3845 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
3846 err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0,
3847 "cnic", dev);
3848 if (err)
3849 tasklet_disable(&cp->cnic_irq_task);
3851 return err;
3854 static void cnic_enable_bnx2x_int(struct cnic_dev *dev)
3856 struct cnic_local *cp = dev->cnic_priv;
3857 u8 sb_id = cp->status_blk_num;
3858 int port = CNIC_PORT(cp);
3860 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
3861 CSTORM_SB_HC_TIMEOUT_C_OFFSET(port, sb_id,
3862 HC_INDEX_C_ISCSI_EQ_CONS),
3863 64 / 12);
3864 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
3865 CSTORM_SB_HC_DISABLE_C_OFFSET(port, sb_id,
3866 HC_INDEX_C_ISCSI_EQ_CONS), 0);
3869 static void cnic_disable_bnx2x_int_sync(struct cnic_dev *dev)
3873 static void cnic_init_bnx2x_tx_ring(struct cnic_dev *dev)
3875 struct cnic_local *cp = dev->cnic_priv;
3876 union eth_tx_bd_types *txbd = (union eth_tx_bd_types *) cp->l2_ring;
3877 struct eth_context *context;
3878 struct regpair context_addr;
3879 dma_addr_t buf_map;
3880 int func = CNIC_FUNC(cp);
3881 int port = CNIC_PORT(cp);
3882 int i;
3883 int cli = BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp));
3884 u32 val;
3886 memset(txbd, 0, BCM_PAGE_SIZE);
3888 buf_map = cp->l2_buf_map;
3889 for (i = 0; i < MAX_TX_DESC_CNT; i += 3, txbd += 3) {
3890 struct eth_tx_start_bd *start_bd = &txbd->start_bd;
3891 struct eth_tx_bd *reg_bd = &((txbd + 2)->reg_bd);
3893 start_bd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
3894 start_bd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
3895 reg_bd->addr_hi = start_bd->addr_hi;
3896 reg_bd->addr_lo = start_bd->addr_lo + 0x10;
3897 start_bd->nbytes = cpu_to_le16(0x10);
3898 start_bd->nbd = cpu_to_le16(3);
3899 start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
3900 start_bd->general_data = (UNICAST_ADDRESS <<
3901 ETH_TX_START_BD_ETH_ADDR_TYPE_SHIFT);
3902 start_bd->general_data |= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT);
3905 context = cnic_get_bnx2x_ctx(dev, BNX2X_ISCSI_L2_CID, 1, &context_addr);
3907 val = (u64) cp->l2_ring_map >> 32;
3908 txbd->next_bd.addr_hi = cpu_to_le32(val);
3910 context->xstorm_st_context.tx_bd_page_base_hi = val;
3912 val = (u64) cp->l2_ring_map & 0xffffffff;
3913 txbd->next_bd.addr_lo = cpu_to_le32(val);
3915 context->xstorm_st_context.tx_bd_page_base_lo = val;
3917 context->cstorm_st_context.sb_index_number =
3918 HC_INDEX_DEF_C_ETH_ISCSI_CQ_CONS;
3919 context->cstorm_st_context.status_block_id = BNX2X_DEF_SB_ID;
3921 context->xstorm_st_context.statistics_data = (cli |
3922 XSTORM_ETH_ST_CONTEXT_STATISTICS_ENABLE);
3924 context->xstorm_ag_context.cdu_reserved =
3925 CDU_RSRVD_VALUE_TYPE_A(BNX2X_HW_CID(BNX2X_ISCSI_L2_CID, func),
3926 CDU_REGION_NUMBER_XCM_AG,
3927 ETH_CONNECTION_TYPE);
3929 /* reset xstorm per client statistics */
3930 val = BAR_XSTRORM_INTMEM +
3931 XSTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
3932 for (i = 0; i < sizeof(struct xstorm_per_client_stats) / 4; i++)
3933 CNIC_WR(dev, val + i * 4, 0);
3935 cp->tx_cons_ptr =
3936 &cp->bnx2x_def_status_blk->c_def_status_block.index_values[
3937 HC_INDEX_DEF_C_ETH_ISCSI_CQ_CONS];
3940 static void cnic_init_bnx2x_rx_ring(struct cnic_dev *dev)
3942 struct cnic_local *cp = dev->cnic_priv;
3943 struct eth_rx_bd *rxbd = (struct eth_rx_bd *) (cp->l2_ring +
3944 BCM_PAGE_SIZE);
3945 struct eth_rx_cqe_next_page *rxcqe = (struct eth_rx_cqe_next_page *)
3946 (cp->l2_ring + (2 * BCM_PAGE_SIZE));
3947 struct eth_context *context;
3948 struct regpair context_addr;
3949 int i;
3950 int port = CNIC_PORT(cp);
3951 int func = CNIC_FUNC(cp);
3952 int cli = BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp));
3953 u32 val;
3954 struct tstorm_eth_client_config tstorm_client = {0};
3956 for (i = 0; i < BNX2X_MAX_RX_DESC_CNT; i++, rxbd++) {
3957 dma_addr_t buf_map;
3958 int n = (i % cp->l2_rx_ring_size) + 1;
3960 buf_map = cp->l2_buf_map + (n * cp->l2_single_buf_size);
3961 rxbd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
3962 rxbd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
3964 context = cnic_get_bnx2x_ctx(dev, BNX2X_ISCSI_L2_CID, 0, &context_addr);
3966 val = (u64) (cp->l2_ring_map + BCM_PAGE_SIZE) >> 32;
3967 rxbd->addr_hi = cpu_to_le32(val);
3969 context->ustorm_st_context.common.bd_page_base_hi = val;
3971 val = (u64) (cp->l2_ring_map + BCM_PAGE_SIZE) & 0xffffffff;
3972 rxbd->addr_lo = cpu_to_le32(val);
3974 context->ustorm_st_context.common.bd_page_base_lo = val;
3976 context->ustorm_st_context.common.sb_index_numbers =
3977 BNX2X_ISCSI_RX_SB_INDEX_NUM;
3978 context->ustorm_st_context.common.clientId = cli;
3979 context->ustorm_st_context.common.status_block_id = BNX2X_DEF_SB_ID;
3980 context->ustorm_st_context.common.flags =
3981 USTORM_ETH_ST_CONTEXT_CONFIG_ENABLE_STATISTICS;
3982 context->ustorm_st_context.common.statistics_counter_id = cli;
3983 context->ustorm_st_context.common.mc_alignment_log_size = 0;
3984 context->ustorm_st_context.common.bd_buff_size =
3985 cp->l2_single_buf_size;
3987 context->ustorm_ag_context.cdu_usage =
3988 CDU_RSRVD_VALUE_TYPE_A(BNX2X_HW_CID(BNX2X_ISCSI_L2_CID, func),
3989 CDU_REGION_NUMBER_UCM_AG,
3990 ETH_CONNECTION_TYPE);
3992 rxcqe += BNX2X_MAX_RCQ_DESC_CNT;
3993 val = (u64) (cp->l2_ring_map + (2 * BCM_PAGE_SIZE)) >> 32;
3994 rxcqe->addr_hi = cpu_to_le32(val);
3996 CNIC_WR(dev, BAR_USTRORM_INTMEM +
3997 USTORM_CQE_PAGE_BASE_OFFSET(port, cli) + 4, val);
3999 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4000 USTORM_CQE_PAGE_NEXT_OFFSET(port, cli) + 4, val);
4002 val = (u64) (cp->l2_ring_map + (2 * BCM_PAGE_SIZE)) & 0xffffffff;
4003 rxcqe->addr_lo = cpu_to_le32(val);
4005 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4006 USTORM_CQE_PAGE_BASE_OFFSET(port, cli), val);
4008 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4009 USTORM_CQE_PAGE_NEXT_OFFSET(port, cli), val);
4011 /* client tstorm info */
4012 tstorm_client.mtu = cp->l2_single_buf_size - 14;
4013 tstorm_client.config_flags =
4014 (TSTORM_ETH_CLIENT_CONFIG_E1HOV_REM_ENABLE |
4015 TSTORM_ETH_CLIENT_CONFIG_STATSITICS_ENABLE);
4016 tstorm_client.statistics_counter_id = cli;
4018 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
4019 TSTORM_CLIENT_CONFIG_OFFSET(port, cli),
4020 ((u32 *)&tstorm_client)[0]);
4021 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
4022 TSTORM_CLIENT_CONFIG_OFFSET(port, cli) + 4,
4023 ((u32 *)&tstorm_client)[1]);
4025 /* reset tstorm per client statistics */
4026 val = BAR_TSTRORM_INTMEM +
4027 TSTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
4028 for (i = 0; i < sizeof(struct tstorm_per_client_stats) / 4; i++)
4029 CNIC_WR(dev, val + i * 4, 0);
4031 /* reset ustorm per client statistics */
4032 val = BAR_USTRORM_INTMEM +
4033 USTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
4034 for (i = 0; i < sizeof(struct ustorm_per_client_stats) / 4; i++)
4035 CNIC_WR(dev, val + i * 4, 0);
4037 cp->rx_cons_ptr =
4038 &cp->bnx2x_def_status_blk->u_def_status_block.index_values[
4039 HC_INDEX_DEF_U_ETH_ISCSI_RX_CQ_CONS];
4042 static void cnic_get_bnx2x_iscsi_info(struct cnic_dev *dev)
4044 struct cnic_local *cp = dev->cnic_priv;
4045 u32 base, addr, val;
4046 int port = CNIC_PORT(cp);
4048 dev->max_iscsi_conn = 0;
4049 base = CNIC_RD(dev, MISC_REG_SHARED_MEM_ADDR);
4050 if (base < 0xa0000 || base >= 0xc0000)
4051 return;
4053 addr = BNX2X_SHMEM_ADDR(base,
4054 dev_info.port_hw_config[port].iscsi_mac_upper);
4056 val = CNIC_RD(dev, addr);
4058 dev->mac_addr[0] = (u8) (val >> 8);
4059 dev->mac_addr[1] = (u8) val;
4061 addr = BNX2X_SHMEM_ADDR(base,
4062 dev_info.port_hw_config[port].iscsi_mac_lower);
4064 val = CNIC_RD(dev, addr);
4066 dev->mac_addr[2] = (u8) (val >> 24);
4067 dev->mac_addr[3] = (u8) (val >> 16);
4068 dev->mac_addr[4] = (u8) (val >> 8);
4069 dev->mac_addr[5] = (u8) val;
4071 addr = BNX2X_SHMEM_ADDR(base, validity_map[port]);
4072 val = CNIC_RD(dev, addr);
4074 if (!(val & SHR_MEM_VALIDITY_LIC_NO_KEY_IN_EFFECT)) {
4075 u16 val16;
4077 addr = BNX2X_SHMEM_ADDR(base,
4078 drv_lic_key[port].max_iscsi_init_conn);
4079 val16 = CNIC_RD16(dev, addr);
4081 if (val16)
4082 val16 ^= 0x1e1e;
4083 dev->max_iscsi_conn = val16;
4085 if (BNX2X_CHIP_IS_E1H(cp->chip_id)) {
4086 int func = CNIC_FUNC(cp);
4088 addr = BNX2X_SHMEM_ADDR(base,
4089 mf_cfg.func_mf_config[func].e1hov_tag);
4090 val = CNIC_RD(dev, addr);
4091 val &= FUNC_MF_CFG_E1HOV_TAG_MASK;
4092 if (val != FUNC_MF_CFG_E1HOV_TAG_DEFAULT) {
4093 addr = BNX2X_SHMEM_ADDR(base,
4094 mf_cfg.func_mf_config[func].config);
4095 val = CNIC_RD(dev, addr);
4096 val &= FUNC_MF_CFG_PROTOCOL_MASK;
4097 if (val != FUNC_MF_CFG_PROTOCOL_ISCSI)
4098 dev->max_iscsi_conn = 0;
4103 static int cnic_start_bnx2x_hw(struct cnic_dev *dev)
4105 struct cnic_local *cp = dev->cnic_priv;
4106 int func = CNIC_FUNC(cp), ret, i;
4107 int port = CNIC_PORT(cp);
4108 u16 eq_idx;
4109 u8 sb_id = cp->status_blk_num;
4111 ret = cnic_init_id_tbl(&cp->cid_tbl, MAX_ISCSI_TBL_SZ,
4112 BNX2X_ISCSI_START_CID);
4114 if (ret)
4115 return -ENOMEM;
4117 cp->kcq_io_addr = BAR_CSTRORM_INTMEM +
4118 CSTORM_ISCSI_EQ_PROD_OFFSET(func, 0);
4119 cp->kcq_prod_idx = 0;
4121 cnic_get_bnx2x_iscsi_info(dev);
4123 /* Only 1 EQ */
4124 CNIC_WR16(dev, cp->kcq_io_addr, MAX_KCQ_IDX);
4125 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4126 CSTORM_ISCSI_EQ_CONS_OFFSET(func, 0), 0);
4127 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4128 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(func, 0),
4129 cp->kcq_info.pg_map_arr[1] & 0xffffffff);
4130 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4131 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(func, 0) + 4,
4132 (u64) cp->kcq_info.pg_map_arr[1] >> 32);
4133 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4134 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(func, 0),
4135 cp->kcq_info.pg_map_arr[0] & 0xffffffff);
4136 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4137 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(func, 0) + 4,
4138 (u64) cp->kcq_info.pg_map_arr[0] >> 32);
4139 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
4140 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_VALID_OFFSET(func, 0), 1);
4141 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
4142 CSTORM_ISCSI_EQ_SB_NUM_OFFSET(func, 0), cp->status_blk_num);
4143 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
4144 CSTORM_ISCSI_EQ_SB_INDEX_OFFSET(func, 0),
4145 HC_INDEX_C_ISCSI_EQ_CONS);
4147 for (i = 0; i < cp->conn_buf_info.num_pages; i++) {
4148 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
4149 TSTORM_ISCSI_CONN_BUF_PBL_OFFSET(func, i),
4150 cp->conn_buf_info.pgtbl[2 * i]);
4151 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
4152 TSTORM_ISCSI_CONN_BUF_PBL_OFFSET(func, i) + 4,
4153 cp->conn_buf_info.pgtbl[(2 * i) + 1]);
4156 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4157 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(func),
4158 cp->gbl_buf_info.pg_map_arr[0] & 0xffffffff);
4159 CNIC_WR(dev, BAR_USTRORM_INTMEM +
4160 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(func) + 4,
4161 (u64) cp->gbl_buf_info.pg_map_arr[0] >> 32);
4163 cnic_setup_bnx2x_context(dev);
4165 eq_idx = CNIC_RD16(dev, BAR_CSTRORM_INTMEM +
4166 CSTORM_SB_HOST_STATUS_BLOCK_C_OFFSET(port, sb_id) +
4167 offsetof(struct cstorm_status_block_c,
4168 index_values[HC_INDEX_C_ISCSI_EQ_CONS]));
4169 if (eq_idx != 0) {
4170 netdev_err(dev->netdev, "EQ cons index %x != 0\n", eq_idx);
4171 return -EBUSY;
4173 ret = cnic_init_bnx2x_irq(dev);
4174 if (ret)
4175 return ret;
4177 cnic_init_bnx2x_tx_ring(dev);
4178 cnic_init_bnx2x_rx_ring(dev);
4180 return 0;
4183 static void cnic_init_rings(struct cnic_dev *dev)
4185 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
4186 cnic_init_bnx2_tx_ring(dev);
4187 cnic_init_bnx2_rx_ring(dev);
4188 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
4189 struct cnic_local *cp = dev->cnic_priv;
4190 u32 cli = BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp));
4191 union l5cm_specific_data l5_data;
4192 struct ustorm_eth_rx_producers rx_prods = {0};
4193 u32 off, i;
4195 rx_prods.bd_prod = 0;
4196 rx_prods.cqe_prod = BNX2X_MAX_RCQ_DESC_CNT;
4197 barrier();
4199 off = BAR_USTRORM_INTMEM +
4200 USTORM_RX_PRODS_OFFSET(CNIC_PORT(cp), cli);
4202 for (i = 0; i < sizeof(struct ustorm_eth_rx_producers) / 4; i++)
4203 CNIC_WR(dev, off + i * 4, ((u32 *) &rx_prods)[i]);
4205 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
4207 cnic_init_bnx2x_tx_ring(dev);
4208 cnic_init_bnx2x_rx_ring(dev);
4210 l5_data.phy_address.lo = cli;
4211 l5_data.phy_address.hi = 0;
4212 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CLIENT_SETUP,
4213 BNX2X_ISCSI_L2_CID, ETH_CONNECTION_TYPE, &l5_data);
4214 i = 0;
4215 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
4216 ++i < 10)
4217 msleep(1);
4219 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
4220 netdev_err(dev->netdev,
4221 "iSCSI CLIENT_SETUP did not complete\n");
4222 cnic_kwq_completion(dev, 1);
4223 cnic_ring_ctl(dev, BNX2X_ISCSI_L2_CID, cli, 1);
4227 static void cnic_shutdown_rings(struct cnic_dev *dev)
4229 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
4230 cnic_shutdown_bnx2_rx_ring(dev);
4231 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
4232 struct cnic_local *cp = dev->cnic_priv;
4233 u32 cli = BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp));
4234 union l5cm_specific_data l5_data;
4235 int i;
4237 cnic_ring_ctl(dev, BNX2X_ISCSI_L2_CID, cli, 0);
4239 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
4241 l5_data.phy_address.lo = cli;
4242 l5_data.phy_address.hi = 0;
4243 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_HALT,
4244 BNX2X_ISCSI_L2_CID, ETH_CONNECTION_TYPE, &l5_data);
4245 i = 0;
4246 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
4247 ++i < 10)
4248 msleep(1);
4250 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
4251 netdev_err(dev->netdev,
4252 "iSCSI CLIENT_HALT did not complete\n");
4253 cnic_kwq_completion(dev, 1);
4255 memset(&l5_data, 0, sizeof(l5_data));
4256 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CFC_DEL,
4257 BNX2X_ISCSI_L2_CID, ETH_CONNECTION_TYPE |
4258 (1 << SPE_HDR_COMMON_RAMROD_SHIFT), &l5_data);
4259 msleep(10);
4263 static int cnic_register_netdev(struct cnic_dev *dev)
4265 struct cnic_local *cp = dev->cnic_priv;
4266 struct cnic_eth_dev *ethdev = cp->ethdev;
4267 int err;
4269 if (!ethdev)
4270 return -ENODEV;
4272 if (ethdev->drv_state & CNIC_DRV_STATE_REGD)
4273 return 0;
4275 err = ethdev->drv_register_cnic(dev->netdev, cp->cnic_ops, dev);
4276 if (err)
4277 netdev_err(dev->netdev, "register_cnic failed\n");
4279 return err;
4282 static void cnic_unregister_netdev(struct cnic_dev *dev)
4284 struct cnic_local *cp = dev->cnic_priv;
4285 struct cnic_eth_dev *ethdev = cp->ethdev;
4287 if (!ethdev)
4288 return;
4290 ethdev->drv_unregister_cnic(dev->netdev);
4293 static int cnic_start_hw(struct cnic_dev *dev)
4295 struct cnic_local *cp = dev->cnic_priv;
4296 struct cnic_eth_dev *ethdev = cp->ethdev;
4297 int err;
4299 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
4300 return -EALREADY;
4302 dev->regview = ethdev->io_base;
4303 cp->chip_id = ethdev->chip_id;
4304 pci_dev_get(dev->pcidev);
4305 cp->func = PCI_FUNC(dev->pcidev->devfn);
4306 cp->status_blk.gen = ethdev->irq_arr[0].status_blk;
4307 cp->status_blk_num = ethdev->irq_arr[0].status_blk_num;
4309 err = cp->alloc_resc(dev);
4310 if (err) {
4311 netdev_err(dev->netdev, "allocate resource failure\n");
4312 goto err1;
4315 err = cp->start_hw(dev);
4316 if (err)
4317 goto err1;
4319 err = cnic_cm_open(dev);
4320 if (err)
4321 goto err1;
4323 set_bit(CNIC_F_CNIC_UP, &dev->flags);
4325 cp->enable_int(dev);
4327 return 0;
4329 err1:
4330 cp->free_resc(dev);
4331 pci_dev_put(dev->pcidev);
4332 return err;
4335 static void cnic_stop_bnx2_hw(struct cnic_dev *dev)
4337 cnic_disable_bnx2_int_sync(dev);
4339 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
4340 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
4342 cnic_init_context(dev, KWQ_CID);
4343 cnic_init_context(dev, KCQ_CID);
4345 cnic_setup_5709_context(dev, 0);
4346 cnic_free_irq(dev);
4348 cnic_free_resc(dev);
4352 static void cnic_stop_bnx2x_hw(struct cnic_dev *dev)
4354 struct cnic_local *cp = dev->cnic_priv;
4355 u8 sb_id = cp->status_blk_num;
4356 int port = CNIC_PORT(cp);
4358 cnic_free_irq(dev);
4359 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
4360 CSTORM_SB_HOST_STATUS_BLOCK_C_OFFSET(port, sb_id) +
4361 offsetof(struct cstorm_status_block_c,
4362 index_values[HC_INDEX_C_ISCSI_EQ_CONS]),
4364 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
4365 CSTORM_ISCSI_EQ_CONS_OFFSET(cp->func, 0), 0);
4366 CNIC_WR16(dev, cp->kcq_io_addr, 0);
4367 cnic_free_resc(dev);
4370 static void cnic_stop_hw(struct cnic_dev *dev)
4372 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
4373 struct cnic_local *cp = dev->cnic_priv;
4374 int i = 0;
4376 /* Need to wait for the ring shutdown event to complete
4377 * before clearing the CNIC_UP flag.
4379 while (cp->uio_dev != -1 && i < 15) {
4380 msleep(100);
4381 i++;
4383 clear_bit(CNIC_F_CNIC_UP, &dev->flags);
4384 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], NULL);
4385 synchronize_rcu();
4386 cnic_cm_shutdown(dev);
4387 cp->stop_hw(dev);
4388 pci_dev_put(dev->pcidev);
4392 static void cnic_free_dev(struct cnic_dev *dev)
4394 int i = 0;
4396 while ((atomic_read(&dev->ref_count) != 0) && i < 10) {
4397 msleep(100);
4398 i++;
4400 if (atomic_read(&dev->ref_count) != 0)
4401 netdev_err(dev->netdev, "Failed waiting for ref count to go to zero\n");
4403 netdev_info(dev->netdev, "Removed CNIC device\n");
4404 dev_put(dev->netdev);
4405 kfree(dev);
4408 static struct cnic_dev *cnic_alloc_dev(struct net_device *dev,
4409 struct pci_dev *pdev)
4411 struct cnic_dev *cdev;
4412 struct cnic_local *cp;
4413 int alloc_size;
4415 alloc_size = sizeof(struct cnic_dev) + sizeof(struct cnic_local);
4417 cdev = kzalloc(alloc_size , GFP_KERNEL);
4418 if (cdev == NULL) {
4419 netdev_err(dev, "allocate dev struct failure\n");
4420 return NULL;
4423 cdev->netdev = dev;
4424 cdev->cnic_priv = (char *)cdev + sizeof(struct cnic_dev);
4425 cdev->register_device = cnic_register_device;
4426 cdev->unregister_device = cnic_unregister_device;
4427 cdev->iscsi_nl_msg_recv = cnic_iscsi_nl_msg_recv;
4429 cp = cdev->cnic_priv;
4430 cp->dev = cdev;
4431 cp->uio_dev = -1;
4432 cp->l2_single_buf_size = 0x400;
4433 cp->l2_rx_ring_size = 3;
4435 spin_lock_init(&cp->cnic_ulp_lock);
4437 netdev_info(dev, "Added CNIC device\n");
4439 return cdev;
4442 static struct cnic_dev *init_bnx2_cnic(struct net_device *dev)
4444 struct pci_dev *pdev;
4445 struct cnic_dev *cdev;
4446 struct cnic_local *cp;
4447 struct cnic_eth_dev *ethdev = NULL;
4448 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
4450 probe = symbol_get(bnx2_cnic_probe);
4451 if (probe) {
4452 ethdev = (*probe)(dev);
4453 symbol_put(bnx2_cnic_probe);
4455 if (!ethdev)
4456 return NULL;
4458 pdev = ethdev->pdev;
4459 if (!pdev)
4460 return NULL;
4462 dev_hold(dev);
4463 pci_dev_get(pdev);
4464 if (pdev->device == PCI_DEVICE_ID_NX2_5709 ||
4465 pdev->device == PCI_DEVICE_ID_NX2_5709S) {
4466 u8 rev;
4468 pci_read_config_byte(pdev, PCI_REVISION_ID, &rev);
4469 if (rev < 0x10) {
4470 pci_dev_put(pdev);
4471 goto cnic_err;
4474 pci_dev_put(pdev);
4476 cdev = cnic_alloc_dev(dev, pdev);
4477 if (cdev == NULL)
4478 goto cnic_err;
4480 set_bit(CNIC_F_BNX2_CLASS, &cdev->flags);
4481 cdev->submit_kwqes = cnic_submit_bnx2_kwqes;
4483 cp = cdev->cnic_priv;
4484 cp->ethdev = ethdev;
4485 cdev->pcidev = pdev;
4487 cp->cnic_ops = &cnic_bnx2_ops;
4488 cp->start_hw = cnic_start_bnx2_hw;
4489 cp->stop_hw = cnic_stop_bnx2_hw;
4490 cp->setup_pgtbl = cnic_setup_page_tbl;
4491 cp->alloc_resc = cnic_alloc_bnx2_resc;
4492 cp->free_resc = cnic_free_resc;
4493 cp->start_cm = cnic_cm_init_bnx2_hw;
4494 cp->stop_cm = cnic_cm_stop_bnx2_hw;
4495 cp->enable_int = cnic_enable_bnx2_int;
4496 cp->disable_int_sync = cnic_disable_bnx2_int_sync;
4497 cp->close_conn = cnic_close_bnx2_conn;
4498 cp->next_idx = cnic_bnx2_next_idx;
4499 cp->hw_idx = cnic_bnx2_hw_idx;
4500 return cdev;
4502 cnic_err:
4503 dev_put(dev);
4504 return NULL;
4507 static struct cnic_dev *init_bnx2x_cnic(struct net_device *dev)
4509 struct pci_dev *pdev;
4510 struct cnic_dev *cdev;
4511 struct cnic_local *cp;
4512 struct cnic_eth_dev *ethdev = NULL;
4513 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
4515 probe = symbol_get(bnx2x_cnic_probe);
4516 if (probe) {
4517 ethdev = (*probe)(dev);
4518 symbol_put(bnx2x_cnic_probe);
4520 if (!ethdev)
4521 return NULL;
4523 pdev = ethdev->pdev;
4524 if (!pdev)
4525 return NULL;
4527 dev_hold(dev);
4528 cdev = cnic_alloc_dev(dev, pdev);
4529 if (cdev == NULL) {
4530 dev_put(dev);
4531 return NULL;
4534 set_bit(CNIC_F_BNX2X_CLASS, &cdev->flags);
4535 cdev->submit_kwqes = cnic_submit_bnx2x_kwqes;
4537 cp = cdev->cnic_priv;
4538 cp->ethdev = ethdev;
4539 cdev->pcidev = pdev;
4541 cp->cnic_ops = &cnic_bnx2x_ops;
4542 cp->start_hw = cnic_start_bnx2x_hw;
4543 cp->stop_hw = cnic_stop_bnx2x_hw;
4544 cp->setup_pgtbl = cnic_setup_page_tbl_le;
4545 cp->alloc_resc = cnic_alloc_bnx2x_resc;
4546 cp->free_resc = cnic_free_resc;
4547 cp->start_cm = cnic_cm_init_bnx2x_hw;
4548 cp->stop_cm = cnic_cm_stop_bnx2x_hw;
4549 cp->enable_int = cnic_enable_bnx2x_int;
4550 cp->disable_int_sync = cnic_disable_bnx2x_int_sync;
4551 cp->ack_int = cnic_ack_bnx2x_msix;
4552 cp->close_conn = cnic_close_bnx2x_conn;
4553 cp->next_idx = cnic_bnx2x_next_idx;
4554 cp->hw_idx = cnic_bnx2x_hw_idx;
4555 return cdev;
4558 static struct cnic_dev *is_cnic_dev(struct net_device *dev)
4560 struct ethtool_drvinfo drvinfo;
4561 struct cnic_dev *cdev = NULL;
4563 if (dev->ethtool_ops && dev->ethtool_ops->get_drvinfo) {
4564 memset(&drvinfo, 0, sizeof(drvinfo));
4565 dev->ethtool_ops->get_drvinfo(dev, &drvinfo);
4567 if (!strcmp(drvinfo.driver, "bnx2"))
4568 cdev = init_bnx2_cnic(dev);
4569 if (!strcmp(drvinfo.driver, "bnx2x"))
4570 cdev = init_bnx2x_cnic(dev);
4571 if (cdev) {
4572 write_lock(&cnic_dev_lock);
4573 list_add(&cdev->list, &cnic_dev_list);
4574 write_unlock(&cnic_dev_lock);
4577 return cdev;
4581 * netdev event handler
4583 static int cnic_netdev_event(struct notifier_block *this, unsigned long event,
4584 void *ptr)
4586 struct net_device *netdev = ptr;
4587 struct cnic_dev *dev;
4588 int if_type;
4589 int new_dev = 0;
4591 dev = cnic_from_netdev(netdev);
4593 if (!dev && (event == NETDEV_REGISTER || event == NETDEV_UP)) {
4594 /* Check for the hot-plug device */
4595 dev = is_cnic_dev(netdev);
4596 if (dev) {
4597 new_dev = 1;
4598 cnic_hold(dev);
4601 if (dev) {
4602 struct cnic_local *cp = dev->cnic_priv;
4604 if (new_dev)
4605 cnic_ulp_init(dev);
4606 else if (event == NETDEV_UNREGISTER)
4607 cnic_ulp_exit(dev);
4609 if (event == NETDEV_UP) {
4610 if (cnic_register_netdev(dev) != 0) {
4611 cnic_put(dev);
4612 goto done;
4614 if (!cnic_start_hw(dev))
4615 cnic_ulp_start(dev);
4618 rcu_read_lock();
4619 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
4620 struct cnic_ulp_ops *ulp_ops;
4621 void *ctx;
4623 ulp_ops = rcu_dereference(cp->ulp_ops[if_type]);
4624 if (!ulp_ops || !ulp_ops->indicate_netevent)
4625 continue;
4627 ctx = cp->ulp_handle[if_type];
4629 ulp_ops->indicate_netevent(ctx, event);
4631 rcu_read_unlock();
4633 if (event == NETDEV_GOING_DOWN) {
4634 cnic_ulp_stop(dev);
4635 cnic_stop_hw(dev);
4636 cnic_unregister_netdev(dev);
4637 } else if (event == NETDEV_UNREGISTER) {
4638 write_lock(&cnic_dev_lock);
4639 list_del_init(&dev->list);
4640 write_unlock(&cnic_dev_lock);
4642 cnic_put(dev);
4643 cnic_free_dev(dev);
4644 goto done;
4646 cnic_put(dev);
4648 done:
4649 return NOTIFY_DONE;
4652 static struct notifier_block cnic_netdev_notifier = {
4653 .notifier_call = cnic_netdev_event
4656 static void cnic_release(void)
4658 struct cnic_dev *dev;
4660 while (!list_empty(&cnic_dev_list)) {
4661 dev = list_entry(cnic_dev_list.next, struct cnic_dev, list);
4662 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
4663 cnic_ulp_stop(dev);
4664 cnic_stop_hw(dev);
4667 cnic_ulp_exit(dev);
4668 cnic_unregister_netdev(dev);
4669 list_del_init(&dev->list);
4670 cnic_free_dev(dev);
4674 static int __init cnic_init(void)
4676 int rc = 0;
4678 pr_info("%s", version);
4680 rc = register_netdevice_notifier(&cnic_netdev_notifier);
4681 if (rc) {
4682 cnic_release();
4683 return rc;
4686 return 0;
4689 static void __exit cnic_exit(void)
4691 unregister_netdevice_notifier(&cnic_netdev_notifier);
4692 cnic_release();
4695 module_init(cnic_init);
4696 module_exit(cnic_exit);