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>
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)
35 #include <net/route.h>
37 #include <net/ip6_route.h>
38 #include <net/ip6_checksum.h>
39 #include <scsi/iscsi_if.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"
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
,
78 static struct cnic_ops cnic_bnx2x_ops
= {
79 .cnic_owner
= THIS_MODULE
,
80 .cnic_handler
= cnic_service_bnx2x
,
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
))
96 if (cp
->uio_dev
!= -1)
100 if (!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
)) {
105 cp
->uio_dev
= iminor(inode
);
107 cnic_init_rings(dev
);
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
);
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
) {
152 read_unlock(&cnic_dev_lock
);
156 read_unlock(&cnic_dev_lock
);
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
;
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
;
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
;
205 info
.cmd
= DRV_CTL_START_L2_CMD
;
207 info
.cmd
= DRV_CTL_STOP_L2_CMD
;
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
;
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
;
236 ethdev
->drv_ctl(dev
->netdev
, &info
);
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
)
260 for (i
= 0; i
< cp
->max_cid_space
; i
++) {
261 if (cp
->ctx_tbl
[i
].cid
== cid
) {
269 static int cnic_send_nlmsg(struct cnic_local
*cp
, u32 type
,
270 struct cnic_sock
*csk
)
272 struct iscsi_path path_req
;
275 u32 msg_type
= ISCSI_KEVENT_IF_DOWN
;
276 struct cnic_ulp_ops
*ulp_ops
;
278 if (cp
->uio_dev
== -1)
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;
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
;
302 ulp_ops
= rcu_dereference(cnic_ulp_tbl
[CNIC_ULP_ISCSI
]);
304 ulp_ops
->iscsi_nl_send_msg(cp
->dev
, msg_type
, buf
, len
);
309 static int cnic_iscsi_nl_msg_recv(struct cnic_dev
*dev
, u32 msg_type
,
315 case ISCSI_UEVENT_PATH_UPDATE
: {
316 struct cnic_local
*cp
;
318 struct cnic_sock
*csk
;
319 struct iscsi_path
*path_resp
;
321 if (len
< sizeof(*path_resp
))
324 path_resp
= (struct iscsi_path
*) buf
;
326 l5_cid
= (u32
) path_resp
->handle
;
327 if (l5_cid
>= MAX_CM_SK_TBL_SZ
)
331 if (!rcu_dereference(cp
->ulp_ops
[CNIC_ULP_L4
])) {
336 csk
= &cp
->csk_tbl
[l5_cid
];
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
));
344 memcpy(&csk
->src_ip
[0], &path_resp
->src
.v4_addr
,
345 sizeof(struct in_addr
));
346 if (is_valid_ether_addr(csk
->ha
))
358 static int cnic_offld_prep(struct cnic_sock
*csk
)
360 if (test_and_set_bit(SK_F_OFFLD_SCHED
, &csk
->flags
))
363 if (!test_bit(SK_F_CONNECT_START
, &csk
->flags
)) {
364 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
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
))
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
))
393 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE
, &csk
->flags
)) {
394 csk
->state
= L4_KCQE_OPCODE_VALUE_RESET_COMP
;
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
;
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
);
423 mutex_lock(&cnic_lock
);
424 if (cnic_ulp_tbl
[ulp_type
]) {
425 pr_err("%s: Type %d has already been registered\n",
427 mutex_unlock(&cnic_lock
);
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 */
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
);
458 int cnic_unregister_driver(int ulp_type
)
460 struct cnic_dev
*dev
;
461 struct cnic_ulp_ops
*ulp_ops
;
464 if (ulp_type
< 0 || ulp_type
>= MAX_CNIC_ULP_TYPE
) {
465 pr_err("%s: Bad type %d\n", __func__
, ulp_type
);
468 mutex_lock(&cnic_lock
);
469 ulp_ops
= cnic_ulp_tbl
[ulp_type
];
471 pr_err("%s: Type %d has not been registered\n",
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",
482 read_unlock(&cnic_dev_lock
);
486 read_unlock(&cnic_dev_lock
);
488 if (ulp_type
== CNIC_ULP_ISCSI
)
491 rcu_assign_pointer(cnic_ulp_tbl
[ulp_type
], NULL
);
493 mutex_unlock(&cnic_lock
);
495 while ((atomic_read(&ulp_ops
->ref_count
) != 0) && (i
< 20)) {
500 if (atomic_read(&ulp_ops
->ref_count
) != 0)
501 netdev_warn(dev
->netdev
, "Failed waiting for ref count to go to zero\n");
505 mutex_unlock(&cnic_lock
);
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
,
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
);
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",
526 mutex_unlock(&cnic_lock
);
529 if (rcu_dereference(cp
->ulp_ops
[ulp_type
])) {
530 pr_err("%s: Type %d has already been registered to this device\n",
532 mutex_unlock(&cnic_lock
);
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
);
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
);
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
;
558 if (ulp_type
< 0 || ulp_type
>= MAX_CNIC_ULP_TYPE
) {
559 pr_err("%s: Bad type %d\n", __func__
, ulp_type
);
562 mutex_lock(&cnic_lock
);
563 if (rcu_dereference(cp
->ulp_ops
[ulp_type
])) {
564 rcu_assign_pointer(cp
->ulp_ops
[ulp_type
], NULL
);
567 pr_err("%s: device not registered to this ulp type %d\n",
569 mutex_unlock(&cnic_lock
);
572 mutex_unlock(&cnic_lock
);
576 while (test_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[ulp_type
]) &&
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");
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
;
593 spin_lock_init(&id_tbl
->lock
);
594 id_tbl
->table
= kzalloc(DIV_ROUND_UP(size
, 32) * 4, GFP_KERNEL
);
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
)
612 if (id
>= id_tbl
->max
)
615 spin_lock(&id_tbl
->lock
);
616 if (!test_bit(id
, id_tbl
->table
)) {
617 set_bit(id
, id_tbl
->table
);
620 spin_unlock(&id_tbl
->lock
);
624 /* Returns -1 if not successful */
625 static u32
cnic_alloc_new_id(struct cnic_id_tbl
*id_tbl
)
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
) {
633 if (id_tbl
->next
!= 0) {
634 id
= find_first_zero_bit(id_tbl
->table
, id_tbl
->next
);
635 if (id
>= id_tbl
->next
)
640 if (id
< id_tbl
->max
) {
641 set_bit(id
, id_tbl
->table
);
642 id_tbl
->next
= (id
+ 1) & (id_tbl
->max
- 1);
646 spin_unlock(&id_tbl
->lock
);
651 static void cnic_free_id(struct cnic_id_tbl
*id_tbl
, u32 id
)
657 if (id
>= id_tbl
->max
)
660 clear_bit(id
, id_tbl
->table
);
663 static void cnic_free_dma(struct cnic_dev
*dev
, struct cnic_dma
*dma
)
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
;
678 dma_free_coherent(&dev
->pcidev
->dev
, dma
->pgtbl_size
,
679 dma
->pgtbl
, dma
->pgtbl_map
);
687 static void cnic_setup_page_tbl(struct cnic_dev
*dev
, struct cnic_dma
*dma
)
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);
696 *page_table
= (u32
) dma
->pg_map_arr
[i
];
701 static void cnic_setup_page_tbl_le(struct cnic_dev
*dev
, struct cnic_dma
*dma
)
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;
710 *page_table
= (u32
) ((u64
) dma
->pg_map_arr
[i
] >> 32);
715 static int cnic_alloc_dma(struct cnic_dev
*dev
, struct cnic_dma
*dma
,
716 int pages
, int use_pg_tbl
)
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
)
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
,
734 if (dma
->pg_arr
[i
] == NULL
)
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
)
747 cp
->setup_pgtbl(dev
, dma
);
752 cnic_free_dma(dev
, dma
);
756 static void cnic_free_context(struct cnic_dev
*dev
)
758 struct cnic_local
*cp
= dev
->cnic_priv
;
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
,
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
;
776 if (cp
->cnic_uinfo
) {
777 while (cp
->uio_dev
!= -1 && i
< 15) {
781 uio_unregister_device(cp
->cnic_uinfo
);
782 kfree(cp
->cnic_uinfo
);
783 cp
->cnic_uinfo
= NULL
;
787 dma_free_coherent(&dev
->pcidev
->dev
, cp
->l2_buf_size
,
788 cp
->l2_buf
, cp
->l2_buf_map
);
793 dma_free_coherent(&dev
->pcidev
->dev
, cp
->l2_ring_size
,
794 cp
->l2_ring
, cp
->l2_ring_map
);
798 cnic_free_context(dev
);
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
->kcq1
.dma
);
808 kfree(cp
->iscsi_tbl
);
809 cp
->iscsi_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
) {
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
)
832 for (i
= 0; i
< 2; i
++) {
833 u32 j
, reg
, off
, lo
, hi
;
836 off
= BNX2_PG_CTX_MAP
;
838 off
= BNX2_ISCSI_CTX_MAP
;
840 reg
= cnic_reg_rd_ind(dev
, off
);
843 for (j
= lo
; j
< hi
; j
+= cp
->cids_per_blk
, k
++)
844 cp
->ctx_arr
[k
].cid
= j
;
848 if (cp
->ctx_blks
>= (BNX2_MAX_CID
/ cp
->cids_per_blk
)) {
853 for (i
= 0; i
< cp
->ctx_blks
; i
++) {
855 dma_alloc_coherent(&dev
->pcidev
->dev
,
857 &cp
->ctx_arr
[i
].mapping
,
859 if (cp
->ctx_arr
[i
].ctx
== NULL
)
866 static int cnic_alloc_kcq(struct cnic_dev
*dev
, struct kcq_info
*info
)
868 int err
, i
, is_bnx2
= 0;
871 if (test_bit(CNIC_F_BNX2_CLASS
, &dev
->flags
))
874 err
= cnic_alloc_dma(dev
, &info
->dma
, KCQ_PAGE_CNT
, is_bnx2
);
878 kcq
= (struct kcqe
**) info
->dma
.pg_arr
;
884 for (i
= 0; i
< KCQ_PAGE_CNT
; i
++) {
885 struct bnx2x_bd_chain_next
*next
=
886 (struct bnx2x_bd_chain_next
*) &kcq
[i
][MAX_KCQE_CNT
];
889 if (j
>= KCQ_PAGE_CNT
)
891 next
->addr_hi
= (u64
) info
->dma
.pg_map_arr
[j
] >> 32;
892 next
->addr_lo
= info
->dma
.pg_map_arr
[j
] & 0xffffffff;
897 static int cnic_alloc_l2_rings(struct cnic_dev
*dev
, int pages
)
899 struct cnic_local
*cp
= dev
->cnic_priv
;
901 cp
->l2_ring_size
= pages
* BCM_PAGE_SIZE
;
902 cp
->l2_ring
= dma_alloc_coherent(&dev
->pcidev
->dev
, cp
->l2_ring_size
,
904 GFP_KERNEL
| __GFP_COMP
);
908 cp
->l2_buf_size
= (cp
->l2_rx_ring_size
+ 1) * cp
->l2_single_buf_size
;
909 cp
->l2_buf_size
= PAGE_ALIGN(cp
->l2_buf_size
);
910 cp
->l2_buf
= dma_alloc_coherent(&dev
->pcidev
->dev
, cp
->l2_buf_size
,
912 GFP_KERNEL
| __GFP_COMP
);
919 static int cnic_alloc_uio(struct cnic_dev
*dev
) {
920 struct cnic_local
*cp
= dev
->cnic_priv
;
921 struct uio_info
*uinfo
;
924 uinfo
= kzalloc(sizeof(*uinfo
), GFP_ATOMIC
);
928 uinfo
->mem
[0].addr
= dev
->netdev
->base_addr
;
929 uinfo
->mem
[0].internal_addr
= dev
->regview
;
930 uinfo
->mem
[0].size
= dev
->netdev
->mem_end
- dev
->netdev
->mem_start
;
931 uinfo
->mem
[0].memtype
= UIO_MEM_PHYS
;
933 if (test_bit(CNIC_F_BNX2_CLASS
, &dev
->flags
)) {
934 uinfo
->mem
[1].addr
= (unsigned long) cp
->status_blk
.gen
&
936 if (cp
->ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
)
937 uinfo
->mem
[1].size
= BNX2_SBLK_MSIX_ALIGN_SIZE
* 9;
939 uinfo
->mem
[1].size
= BNX2_SBLK_MSIX_ALIGN_SIZE
;
941 uinfo
->name
= "bnx2_cnic";
942 } else if (test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
)) {
943 uinfo
->mem
[1].addr
= (unsigned long) cp
->bnx2x_def_status_blk
&
945 uinfo
->mem
[1].size
= sizeof(struct host_def_status_block
);
947 uinfo
->name
= "bnx2x_cnic";
950 uinfo
->mem
[1].memtype
= UIO_MEM_LOGICAL
;
952 uinfo
->mem
[2].addr
= (unsigned long) cp
->l2_ring
;
953 uinfo
->mem
[2].size
= cp
->l2_ring_size
;
954 uinfo
->mem
[2].memtype
= UIO_MEM_LOGICAL
;
956 uinfo
->mem
[3].addr
= (unsigned long) cp
->l2_buf
;
957 uinfo
->mem
[3].size
= cp
->l2_buf_size
;
958 uinfo
->mem
[3].memtype
= UIO_MEM_LOGICAL
;
960 uinfo
->version
= CNIC_MODULE_VERSION
;
961 uinfo
->irq
= UIO_IRQ_CUSTOM
;
963 uinfo
->open
= cnic_uio_open
;
964 uinfo
->release
= cnic_uio_close
;
968 ret
= uio_register_device(&dev
->pcidev
->dev
, uinfo
);
974 cp
->cnic_uinfo
= uinfo
;
978 static int cnic_alloc_bnx2_resc(struct cnic_dev
*dev
)
980 struct cnic_local
*cp
= dev
->cnic_priv
;
983 ret
= cnic_alloc_dma(dev
, &cp
->kwq_info
, KWQ_PAGE_CNT
, 1);
986 cp
->kwq
= (struct kwqe
**) cp
->kwq_info
.pg_arr
;
988 ret
= cnic_alloc_kcq(dev
, &cp
->kcq1
);
992 ret
= cnic_alloc_context(dev
);
996 ret
= cnic_alloc_l2_rings(dev
, 2);
1000 ret
= cnic_alloc_uio(dev
);
1007 cnic_free_resc(dev
);
1011 static int cnic_alloc_bnx2x_context(struct cnic_dev
*dev
)
1013 struct cnic_local
*cp
= dev
->cnic_priv
;
1014 int ctx_blk_size
= cp
->ethdev
->ctx_blk_size
;
1015 int total_mem
, blks
, i
;
1017 total_mem
= BNX2X_CONTEXT_MEM_SIZE
* cp
->max_cid_space
;
1018 blks
= total_mem
/ ctx_blk_size
;
1019 if (total_mem
% ctx_blk_size
)
1022 if (blks
> cp
->ethdev
->ctx_tbl_len
)
1025 cp
->ctx_arr
= kzalloc(blks
* sizeof(struct cnic_ctx
), GFP_KERNEL
);
1026 if (cp
->ctx_arr
== NULL
)
1029 cp
->ctx_blks
= blks
;
1030 cp
->ctx_blk_size
= ctx_blk_size
;
1031 if (BNX2X_CHIP_IS_E1H(cp
->chip_id
))
1034 cp
->ctx_align
= ctx_blk_size
;
1036 cp
->cids_per_blk
= ctx_blk_size
/ BNX2X_CONTEXT_MEM_SIZE
;
1038 for (i
= 0; i
< blks
; i
++) {
1039 cp
->ctx_arr
[i
].ctx
=
1040 dma_alloc_coherent(&dev
->pcidev
->dev
, cp
->ctx_blk_size
,
1041 &cp
->ctx_arr
[i
].mapping
,
1043 if (cp
->ctx_arr
[i
].ctx
== NULL
)
1046 if (cp
->ctx_align
&& cp
->ctx_blk_size
== ctx_blk_size
) {
1047 if (cp
->ctx_arr
[i
].mapping
& (cp
->ctx_align
- 1)) {
1048 cnic_free_context(dev
);
1049 cp
->ctx_blk_size
+= cp
->ctx_align
;
1058 static int cnic_alloc_bnx2x_resc(struct cnic_dev
*dev
)
1060 struct cnic_local
*cp
= dev
->cnic_priv
;
1061 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
1062 u32 start_cid
= ethdev
->starting_cid
;
1063 int i
, j
, n
, ret
, pages
;
1064 struct cnic_dma
*kwq_16_dma
= &cp
->kwq_16_data_info
;
1066 cp
->max_cid_space
= MAX_ISCSI_TBL_SZ
;
1067 cp
->iscsi_start_cid
= start_cid
;
1068 if (start_cid
< BNX2X_ISCSI_START_CID
) {
1069 u32 delta
= BNX2X_ISCSI_START_CID
- start_cid
;
1071 cp
->iscsi_start_cid
= BNX2X_ISCSI_START_CID
;
1072 cp
->max_cid_space
+= delta
;
1075 cp
->iscsi_tbl
= kzalloc(sizeof(struct cnic_iscsi
) * MAX_ISCSI_TBL_SZ
,
1080 cp
->ctx_tbl
= kzalloc(sizeof(struct cnic_context
) *
1081 cp
->max_cid_space
, GFP_KERNEL
);
1085 for (i
= 0; i
< MAX_ISCSI_TBL_SZ
; i
++) {
1086 cp
->ctx_tbl
[i
].proto
.iscsi
= &cp
->iscsi_tbl
[i
];
1087 cp
->ctx_tbl
[i
].ulp_proto_id
= CNIC_ULP_ISCSI
;
1090 pages
= PAGE_ALIGN(cp
->max_cid_space
* CNIC_KWQ16_DATA_SIZE
) /
1093 ret
= cnic_alloc_dma(dev
, kwq_16_dma
, pages
, 0);
1097 n
= PAGE_SIZE
/ CNIC_KWQ16_DATA_SIZE
;
1098 for (i
= 0, j
= 0; i
< cp
->max_cid_space
; i
++) {
1099 long off
= CNIC_KWQ16_DATA_SIZE
* (i
% n
);
1101 cp
->ctx_tbl
[i
].kwqe_data
= kwq_16_dma
->pg_arr
[j
] + off
;
1102 cp
->ctx_tbl
[i
].kwqe_data_mapping
= kwq_16_dma
->pg_map_arr
[j
] +
1105 if ((i
% n
) == (n
- 1))
1109 ret
= cnic_alloc_kcq(dev
, &cp
->kcq1
);
1113 pages
= PAGE_ALIGN(BNX2X_ISCSI_NUM_CONNECTIONS
*
1114 BNX2X_ISCSI_CONN_BUF_SIZE
) / PAGE_SIZE
;
1115 ret
= cnic_alloc_dma(dev
, &cp
->conn_buf_info
, pages
, 1);
1119 pages
= PAGE_ALIGN(BNX2X_ISCSI_GLB_BUF_SIZE
) / PAGE_SIZE
;
1120 ret
= cnic_alloc_dma(dev
, &cp
->gbl_buf_info
, pages
, 0);
1124 ret
= cnic_alloc_bnx2x_context(dev
);
1128 cp
->bnx2x_def_status_blk
= cp
->ethdev
->irq_arr
[1].status_blk
;
1130 memset(cp
->status_blk
.bnx2x
, 0, sizeof(*cp
->status_blk
.bnx2x
));
1132 cp
->l2_rx_ring_size
= 15;
1134 ret
= cnic_alloc_l2_rings(dev
, 4);
1138 ret
= cnic_alloc_uio(dev
);
1145 cnic_free_resc(dev
);
1149 static inline u32
cnic_kwq_avail(struct cnic_local
*cp
)
1151 return cp
->max_kwq_idx
-
1152 ((cp
->kwq_prod_idx
- cp
->kwq_con_idx
) & cp
->max_kwq_idx
);
1155 static int cnic_submit_bnx2_kwqes(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
1158 struct cnic_local
*cp
= dev
->cnic_priv
;
1159 struct kwqe
*prod_qe
;
1160 u16 prod
, sw_prod
, i
;
1162 if (!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
1163 return -EAGAIN
; /* bnx2 is down */
1165 spin_lock_bh(&cp
->cnic_ulp_lock
);
1166 if (num_wqes
> cnic_kwq_avail(cp
) &&
1167 !test_bit(CNIC_LCL_FL_KWQ_INIT
, &cp
->cnic_local_flags
)) {
1168 spin_unlock_bh(&cp
->cnic_ulp_lock
);
1172 clear_bit(CNIC_LCL_FL_KWQ_INIT
, &cp
->cnic_local_flags
);
1174 prod
= cp
->kwq_prod_idx
;
1175 sw_prod
= prod
& MAX_KWQ_IDX
;
1176 for (i
= 0; i
< num_wqes
; i
++) {
1177 prod_qe
= &cp
->kwq
[KWQ_PG(sw_prod
)][KWQ_IDX(sw_prod
)];
1178 memcpy(prod_qe
, wqes
[i
], sizeof(struct kwqe
));
1180 sw_prod
= prod
& MAX_KWQ_IDX
;
1182 cp
->kwq_prod_idx
= prod
;
1184 CNIC_WR16(dev
, cp
->kwq_io_addr
, cp
->kwq_prod_idx
);
1186 spin_unlock_bh(&cp
->cnic_ulp_lock
);
1190 static void *cnic_get_kwqe_16_data(struct cnic_local
*cp
, u32 l5_cid
,
1191 union l5cm_specific_data
*l5_data
)
1193 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
1196 map
= ctx
->kwqe_data_mapping
;
1197 l5_data
->phy_address
.lo
= (u64
) map
& 0xffffffff;
1198 l5_data
->phy_address
.hi
= (u64
) map
>> 32;
1199 return ctx
->kwqe_data
;
1202 static int cnic_submit_kwqe_16(struct cnic_dev
*dev
, u32 cmd
, u32 cid
,
1203 u32 type
, union l5cm_specific_data
*l5_data
)
1205 struct cnic_local
*cp
= dev
->cnic_priv
;
1206 struct l5cm_spe kwqe
;
1207 struct kwqe_16
*kwq
[1];
1210 kwqe
.hdr
.conn_and_cmd_data
=
1211 cpu_to_le32(((cmd
<< SPE_HDR_CMD_ID_SHIFT
) |
1212 BNX2X_HW_CID(cid
, cp
->func
)));
1213 kwqe
.hdr
.type
= cpu_to_le16(type
);
1214 kwqe
.hdr
.reserved
= 0;
1215 kwqe
.data
.phy_address
.lo
= cpu_to_le32(l5_data
->phy_address
.lo
);
1216 kwqe
.data
.phy_address
.hi
= cpu_to_le32(l5_data
->phy_address
.hi
);
1218 kwq
[0] = (struct kwqe_16
*) &kwqe
;
1220 spin_lock_bh(&cp
->cnic_ulp_lock
);
1221 ret
= cp
->ethdev
->drv_submit_kwqes_16(dev
->netdev
, kwq
, 1);
1222 spin_unlock_bh(&cp
->cnic_ulp_lock
);
1230 static void cnic_reply_bnx2x_kcqes(struct cnic_dev
*dev
, int ulp_type
,
1231 struct kcqe
*cqes
[], u32 num_cqes
)
1233 struct cnic_local
*cp
= dev
->cnic_priv
;
1234 struct cnic_ulp_ops
*ulp_ops
;
1237 ulp_ops
= rcu_dereference(cp
->ulp_ops
[ulp_type
]);
1238 if (likely(ulp_ops
)) {
1239 ulp_ops
->indicate_kcqes(cp
->ulp_handle
[ulp_type
],
1245 static int cnic_bnx2x_iscsi_init1(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1247 struct cnic_local
*cp
= dev
->cnic_priv
;
1248 struct iscsi_kwqe_init1
*req1
= (struct iscsi_kwqe_init1
*) kwqe
;
1249 int func
= cp
->func
, pages
;
1252 cp
->num_iscsi_tasks
= req1
->num_tasks_per_conn
;
1253 cp
->num_ccells
= req1
->num_ccells_per_conn
;
1254 cp
->task_array_size
= BNX2X_ISCSI_TASK_CONTEXT_SIZE
*
1255 cp
->num_iscsi_tasks
;
1256 cp
->r2tq_size
= cp
->num_iscsi_tasks
* BNX2X_ISCSI_MAX_PENDING_R2TS
*
1257 BNX2X_ISCSI_R2TQE_SIZE
;
1258 cp
->hq_size
= cp
->num_ccells
* BNX2X_ISCSI_HQ_BD_SIZE
;
1259 pages
= PAGE_ALIGN(cp
->hq_size
) / PAGE_SIZE
;
1260 hq_bds
= pages
* (PAGE_SIZE
/ BNX2X_ISCSI_HQ_BD_SIZE
);
1261 cp
->num_cqs
= req1
->num_cqs
;
1263 if (!dev
->max_iscsi_conn
)
1266 /* init Tstorm RAM */
1267 CNIC_WR16(dev
, BAR_TSTRORM_INTMEM
+ TSTORM_ISCSI_RQ_SIZE_OFFSET(func
),
1269 CNIC_WR16(dev
, BAR_TSTRORM_INTMEM
+ TSTORM_ISCSI_PAGE_SIZE_OFFSET(func
),
1271 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
1272 TSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func
), PAGE_SHIFT
);
1273 CNIC_WR16(dev
, BAR_TSTRORM_INTMEM
+
1274 TSTORM_ISCSI_NUM_OF_TASKS_OFFSET(func
),
1275 req1
->num_tasks_per_conn
);
1277 /* init Ustorm RAM */
1278 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+
1279 USTORM_ISCSI_RQ_BUFFER_SIZE_OFFSET(func
),
1280 req1
->rq_buffer_size
);
1281 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+ USTORM_ISCSI_PAGE_SIZE_OFFSET(func
),
1283 CNIC_WR8(dev
, BAR_USTRORM_INTMEM
+
1284 USTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func
), PAGE_SHIFT
);
1285 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+
1286 USTORM_ISCSI_NUM_OF_TASKS_OFFSET(func
),
1287 req1
->num_tasks_per_conn
);
1288 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+ USTORM_ISCSI_RQ_SIZE_OFFSET(func
),
1290 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+ USTORM_ISCSI_CQ_SIZE_OFFSET(func
),
1292 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+ USTORM_ISCSI_R2TQ_SIZE_OFFSET(func
),
1293 cp
->num_iscsi_tasks
* BNX2X_ISCSI_MAX_PENDING_R2TS
);
1295 /* init Xstorm RAM */
1296 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+ XSTORM_ISCSI_PAGE_SIZE_OFFSET(func
),
1298 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
1299 XSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func
), PAGE_SHIFT
);
1300 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+
1301 XSTORM_ISCSI_NUM_OF_TASKS_OFFSET(func
),
1302 req1
->num_tasks_per_conn
);
1303 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+ XSTORM_ISCSI_HQ_SIZE_OFFSET(func
),
1305 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+ XSTORM_ISCSI_SQ_SIZE_OFFSET(func
),
1306 req1
->num_tasks_per_conn
);
1307 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+ XSTORM_ISCSI_R2TQ_SIZE_OFFSET(func
),
1308 cp
->num_iscsi_tasks
* BNX2X_ISCSI_MAX_PENDING_R2TS
);
1310 /* init Cstorm RAM */
1311 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+ CSTORM_ISCSI_PAGE_SIZE_OFFSET(func
),
1313 CNIC_WR8(dev
, BAR_CSTRORM_INTMEM
+
1314 CSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(func
), PAGE_SHIFT
);
1315 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+
1316 CSTORM_ISCSI_NUM_OF_TASKS_OFFSET(func
),
1317 req1
->num_tasks_per_conn
);
1318 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+ CSTORM_ISCSI_CQ_SIZE_OFFSET(func
),
1320 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+ CSTORM_ISCSI_HQ_SIZE_OFFSET(func
),
1326 static int cnic_bnx2x_iscsi_init2(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1328 struct iscsi_kwqe_init2
*req2
= (struct iscsi_kwqe_init2
*) kwqe
;
1329 struct cnic_local
*cp
= dev
->cnic_priv
;
1330 int func
= cp
->func
;
1331 struct iscsi_kcqe kcqe
;
1332 struct kcqe
*cqes
[1];
1334 memset(&kcqe
, 0, sizeof(kcqe
));
1335 if (!dev
->max_iscsi_conn
) {
1336 kcqe
.completion_status
=
1337 ISCSI_KCQE_COMPLETION_STATUS_ISCSI_NOT_SUPPORTED
;
1341 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+
1342 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(func
), req2
->error_bit_map
[0]);
1343 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+
1344 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(func
) + 4,
1345 req2
->error_bit_map
[1]);
1347 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+
1348 USTORM_ISCSI_CQ_SQN_SIZE_OFFSET(func
), req2
->max_cq_sqn
);
1349 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
1350 USTORM_ISCSI_ERROR_BITMAP_OFFSET(func
), req2
->error_bit_map
[0]);
1351 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
1352 USTORM_ISCSI_ERROR_BITMAP_OFFSET(func
) + 4,
1353 req2
->error_bit_map
[1]);
1355 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+
1356 CSTORM_ISCSI_CQ_SQN_SIZE_OFFSET(func
), req2
->max_cq_sqn
);
1358 kcqe
.completion_status
= ISCSI_KCQE_COMPLETION_STATUS_SUCCESS
;
1361 kcqe
.op_code
= ISCSI_KCQE_OPCODE_INIT
;
1362 cqes
[0] = (struct kcqe
*) &kcqe
;
1363 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_ISCSI
, cqes
, 1);
1368 static void cnic_free_bnx2x_conn_resc(struct cnic_dev
*dev
, u32 l5_cid
)
1370 struct cnic_local
*cp
= dev
->cnic_priv
;
1371 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
1373 if (ctx
->ulp_proto_id
== CNIC_ULP_ISCSI
) {
1374 struct cnic_iscsi
*iscsi
= ctx
->proto
.iscsi
;
1376 cnic_free_dma(dev
, &iscsi
->hq_info
);
1377 cnic_free_dma(dev
, &iscsi
->r2tq_info
);
1378 cnic_free_dma(dev
, &iscsi
->task_array_info
);
1380 cnic_free_id(&cp
->cid_tbl
, ctx
->cid
);
1384 static int cnic_alloc_bnx2x_conn_resc(struct cnic_dev
*dev
, u32 l5_cid
)
1388 struct cnic_local
*cp
= dev
->cnic_priv
;
1389 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
1390 struct cnic_iscsi
*iscsi
= ctx
->proto
.iscsi
;
1392 cid
= cnic_alloc_new_id(&cp
->cid_tbl
);
1399 pages
= PAGE_ALIGN(cp
->task_array_size
) / PAGE_SIZE
;
1401 ret
= cnic_alloc_dma(dev
, &iscsi
->task_array_info
, pages
, 1);
1405 pages
= PAGE_ALIGN(cp
->r2tq_size
) / PAGE_SIZE
;
1406 ret
= cnic_alloc_dma(dev
, &iscsi
->r2tq_info
, pages
, 1);
1410 pages
= PAGE_ALIGN(cp
->hq_size
) / PAGE_SIZE
;
1411 ret
= cnic_alloc_dma(dev
, &iscsi
->hq_info
, pages
, 1);
1418 cnic_free_bnx2x_conn_resc(dev
, l5_cid
);
1422 static void *cnic_get_bnx2x_ctx(struct cnic_dev
*dev
, u32 cid
, int init
,
1423 struct regpair
*ctx_addr
)
1425 struct cnic_local
*cp
= dev
->cnic_priv
;
1426 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
1427 int blk
= (cid
- ethdev
->starting_cid
) / cp
->cids_per_blk
;
1428 int off
= (cid
- ethdev
->starting_cid
) % cp
->cids_per_blk
;
1429 unsigned long align_off
= 0;
1433 if (cp
->ctx_align
) {
1434 unsigned long mask
= cp
->ctx_align
- 1;
1436 if (cp
->ctx_arr
[blk
].mapping
& mask
)
1437 align_off
= cp
->ctx_align
-
1438 (cp
->ctx_arr
[blk
].mapping
& mask
);
1440 ctx_map
= cp
->ctx_arr
[blk
].mapping
+ align_off
+
1441 (off
* BNX2X_CONTEXT_MEM_SIZE
);
1442 ctx
= cp
->ctx_arr
[blk
].ctx
+ align_off
+
1443 (off
* BNX2X_CONTEXT_MEM_SIZE
);
1445 memset(ctx
, 0, BNX2X_CONTEXT_MEM_SIZE
);
1447 ctx_addr
->lo
= ctx_map
& 0xffffffff;
1448 ctx_addr
->hi
= (u64
) ctx_map
>> 32;
1452 static int cnic_setup_bnx2x_ctx(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
1455 struct cnic_local
*cp
= dev
->cnic_priv
;
1456 struct iscsi_kwqe_conn_offload1
*req1
=
1457 (struct iscsi_kwqe_conn_offload1
*) wqes
[0];
1458 struct iscsi_kwqe_conn_offload2
*req2
=
1459 (struct iscsi_kwqe_conn_offload2
*) wqes
[1];
1460 struct iscsi_kwqe_conn_offload3
*req3
;
1461 struct cnic_context
*ctx
= &cp
->ctx_tbl
[req1
->iscsi_conn_id
];
1462 struct cnic_iscsi
*iscsi
= ctx
->proto
.iscsi
;
1464 u32 hw_cid
= BNX2X_HW_CID(cid
, cp
->func
);
1465 struct iscsi_context
*ictx
;
1466 struct regpair context_addr
;
1467 int i
, j
, n
= 2, n_max
;
1470 if (!req2
->num_additional_wqes
)
1473 n_max
= req2
->num_additional_wqes
+ 2;
1475 ictx
= cnic_get_bnx2x_ctx(dev
, cid
, 1, &context_addr
);
1479 req3
= (struct iscsi_kwqe_conn_offload3
*) wqes
[n
++];
1481 ictx
->xstorm_ag_context
.hq_prod
= 1;
1483 ictx
->xstorm_st_context
.iscsi
.first_burst_length
=
1484 ISCSI_DEF_FIRST_BURST_LEN
;
1485 ictx
->xstorm_st_context
.iscsi
.max_send_pdu_length
=
1486 ISCSI_DEF_MAX_RECV_SEG_LEN
;
1487 ictx
->xstorm_st_context
.iscsi
.sq_pbl_base
.lo
=
1488 req1
->sq_page_table_addr_lo
;
1489 ictx
->xstorm_st_context
.iscsi
.sq_pbl_base
.hi
=
1490 req1
->sq_page_table_addr_hi
;
1491 ictx
->xstorm_st_context
.iscsi
.sq_curr_pbe
.lo
= req2
->sq_first_pte
.hi
;
1492 ictx
->xstorm_st_context
.iscsi
.sq_curr_pbe
.hi
= req2
->sq_first_pte
.lo
;
1493 ictx
->xstorm_st_context
.iscsi
.hq_pbl_base
.lo
=
1494 iscsi
->hq_info
.pgtbl_map
& 0xffffffff;
1495 ictx
->xstorm_st_context
.iscsi
.hq_pbl_base
.hi
=
1496 (u64
) iscsi
->hq_info
.pgtbl_map
>> 32;
1497 ictx
->xstorm_st_context
.iscsi
.hq_curr_pbe_base
.lo
=
1498 iscsi
->hq_info
.pgtbl
[0];
1499 ictx
->xstorm_st_context
.iscsi
.hq_curr_pbe_base
.hi
=
1500 iscsi
->hq_info
.pgtbl
[1];
1501 ictx
->xstorm_st_context
.iscsi
.r2tq_pbl_base
.lo
=
1502 iscsi
->r2tq_info
.pgtbl_map
& 0xffffffff;
1503 ictx
->xstorm_st_context
.iscsi
.r2tq_pbl_base
.hi
=
1504 (u64
) iscsi
->r2tq_info
.pgtbl_map
>> 32;
1505 ictx
->xstorm_st_context
.iscsi
.r2tq_curr_pbe_base
.lo
=
1506 iscsi
->r2tq_info
.pgtbl
[0];
1507 ictx
->xstorm_st_context
.iscsi
.r2tq_curr_pbe_base
.hi
=
1508 iscsi
->r2tq_info
.pgtbl
[1];
1509 ictx
->xstorm_st_context
.iscsi
.task_pbl_base
.lo
=
1510 iscsi
->task_array_info
.pgtbl_map
& 0xffffffff;
1511 ictx
->xstorm_st_context
.iscsi
.task_pbl_base
.hi
=
1512 (u64
) iscsi
->task_array_info
.pgtbl_map
>> 32;
1513 ictx
->xstorm_st_context
.iscsi
.task_pbl_cache_idx
=
1514 BNX2X_ISCSI_PBL_NOT_CACHED
;
1515 ictx
->xstorm_st_context
.iscsi
.flags
.flags
|=
1516 XSTORM_ISCSI_CONTEXT_FLAGS_B_IMMEDIATE_DATA
;
1517 ictx
->xstorm_st_context
.iscsi
.flags
.flags
|=
1518 XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T
;
1520 ictx
->tstorm_st_context
.iscsi
.hdr_bytes_2_fetch
= ISCSI_HEADER_SIZE
;
1521 /* TSTORM requires the base address of RQ DB & not PTE */
1522 ictx
->tstorm_st_context
.iscsi
.rq_db_phy_addr
.lo
=
1523 req2
->rq_page_table_addr_lo
& PAGE_MASK
;
1524 ictx
->tstorm_st_context
.iscsi
.rq_db_phy_addr
.hi
=
1525 req2
->rq_page_table_addr_hi
;
1526 ictx
->tstorm_st_context
.iscsi
.iscsi_conn_id
= req1
->iscsi_conn_id
;
1527 ictx
->tstorm_st_context
.tcp
.cwnd
= 0x5A8;
1528 ictx
->tstorm_st_context
.tcp
.flags2
|=
1529 TSTORM_TCP_ST_CONTEXT_SECTION_DA_EN
;
1531 ictx
->timers_context
.flags
|= ISCSI_TIMERS_BLOCK_CONTEXT_CONN_VALID_FLG
;
1533 ictx
->ustorm_st_context
.ring
.rq
.pbl_base
.lo
=
1534 req2
->rq_page_table_addr_lo
;
1535 ictx
->ustorm_st_context
.ring
.rq
.pbl_base
.hi
=
1536 req2
->rq_page_table_addr_hi
;
1537 ictx
->ustorm_st_context
.ring
.rq
.curr_pbe
.lo
= req3
->qp_first_pte
[0].hi
;
1538 ictx
->ustorm_st_context
.ring
.rq
.curr_pbe
.hi
= req3
->qp_first_pte
[0].lo
;
1539 ictx
->ustorm_st_context
.ring
.r2tq
.pbl_base
.lo
=
1540 iscsi
->r2tq_info
.pgtbl_map
& 0xffffffff;
1541 ictx
->ustorm_st_context
.ring
.r2tq
.pbl_base
.hi
=
1542 (u64
) iscsi
->r2tq_info
.pgtbl_map
>> 32;
1543 ictx
->ustorm_st_context
.ring
.r2tq
.curr_pbe
.lo
=
1544 iscsi
->r2tq_info
.pgtbl
[0];
1545 ictx
->ustorm_st_context
.ring
.r2tq
.curr_pbe
.hi
=
1546 iscsi
->r2tq_info
.pgtbl
[1];
1547 ictx
->ustorm_st_context
.ring
.cq_pbl_base
.lo
=
1548 req1
->cq_page_table_addr_lo
;
1549 ictx
->ustorm_st_context
.ring
.cq_pbl_base
.hi
=
1550 req1
->cq_page_table_addr_hi
;
1551 ictx
->ustorm_st_context
.ring
.cq
[0].cq_sn
= ISCSI_INITIAL_SN
;
1552 ictx
->ustorm_st_context
.ring
.cq
[0].curr_pbe
.lo
= req2
->cq_first_pte
.hi
;
1553 ictx
->ustorm_st_context
.ring
.cq
[0].curr_pbe
.hi
= req2
->cq_first_pte
.lo
;
1554 ictx
->ustorm_st_context
.task_pbe_cache_index
=
1555 BNX2X_ISCSI_PBL_NOT_CACHED
;
1556 ictx
->ustorm_st_context
.task_pdu_cache_index
=
1557 BNX2X_ISCSI_PDU_HEADER_NOT_CACHED
;
1559 for (i
= 1, j
= 1; i
< cp
->num_cqs
; i
++, j
++) {
1563 req3
= (struct iscsi_kwqe_conn_offload3
*) wqes
[n
++];
1566 ictx
->ustorm_st_context
.ring
.cq
[i
].cq_sn
= ISCSI_INITIAL_SN
;
1567 ictx
->ustorm_st_context
.ring
.cq
[i
].curr_pbe
.lo
=
1568 req3
->qp_first_pte
[j
].hi
;
1569 ictx
->ustorm_st_context
.ring
.cq
[i
].curr_pbe
.hi
=
1570 req3
->qp_first_pte
[j
].lo
;
1573 ictx
->ustorm_st_context
.task_pbl_base
.lo
=
1574 iscsi
->task_array_info
.pgtbl_map
& 0xffffffff;
1575 ictx
->ustorm_st_context
.task_pbl_base
.hi
=
1576 (u64
) iscsi
->task_array_info
.pgtbl_map
>> 32;
1577 ictx
->ustorm_st_context
.tce_phy_addr
.lo
=
1578 iscsi
->task_array_info
.pgtbl
[0];
1579 ictx
->ustorm_st_context
.tce_phy_addr
.hi
=
1580 iscsi
->task_array_info
.pgtbl
[1];
1581 ictx
->ustorm_st_context
.iscsi_conn_id
= req1
->iscsi_conn_id
;
1582 ictx
->ustorm_st_context
.num_cqs
= cp
->num_cqs
;
1583 ictx
->ustorm_st_context
.negotiated_rx
|= ISCSI_DEF_MAX_RECV_SEG_LEN
;
1584 ictx
->ustorm_st_context
.negotiated_rx_and_flags
|=
1585 ISCSI_DEF_MAX_BURST_LEN
;
1586 ictx
->ustorm_st_context
.negotiated_rx
|=
1587 ISCSI_DEFAULT_MAX_OUTSTANDING_R2T
<<
1588 USTORM_ISCSI_ST_CONTEXT_MAX_OUTSTANDING_R2TS_SHIFT
;
1590 ictx
->cstorm_st_context
.hq_pbl_base
.lo
=
1591 iscsi
->hq_info
.pgtbl_map
& 0xffffffff;
1592 ictx
->cstorm_st_context
.hq_pbl_base
.hi
=
1593 (u64
) iscsi
->hq_info
.pgtbl_map
>> 32;
1594 ictx
->cstorm_st_context
.hq_curr_pbe
.lo
= iscsi
->hq_info
.pgtbl
[0];
1595 ictx
->cstorm_st_context
.hq_curr_pbe
.hi
= iscsi
->hq_info
.pgtbl
[1];
1596 ictx
->cstorm_st_context
.task_pbl_base
.lo
=
1597 iscsi
->task_array_info
.pgtbl_map
& 0xffffffff;
1598 ictx
->cstorm_st_context
.task_pbl_base
.hi
=
1599 (u64
) iscsi
->task_array_info
.pgtbl_map
>> 32;
1600 /* CSTORM and USTORM initialization is different, CSTORM requires
1601 * CQ DB base & not PTE addr */
1602 ictx
->cstorm_st_context
.cq_db_base
.lo
=
1603 req1
->cq_page_table_addr_lo
& PAGE_MASK
;
1604 ictx
->cstorm_st_context
.cq_db_base
.hi
= req1
->cq_page_table_addr_hi
;
1605 ictx
->cstorm_st_context
.iscsi_conn_id
= req1
->iscsi_conn_id
;
1606 ictx
->cstorm_st_context
.cq_proc_en_bit_map
= (1 << cp
->num_cqs
) - 1;
1607 for (i
= 0; i
< cp
->num_cqs
; i
++) {
1608 ictx
->cstorm_st_context
.cq_c_prod_sqn_arr
.sqn
[i
] =
1610 ictx
->cstorm_st_context
.cq_c_sqn_2_notify_arr
.sqn
[i
] =
1614 ictx
->xstorm_ag_context
.cdu_reserved
=
1615 CDU_RSRVD_VALUE_TYPE_A(hw_cid
, CDU_REGION_NUMBER_XCM_AG
,
1616 ISCSI_CONNECTION_TYPE
);
1617 ictx
->ustorm_ag_context
.cdu_usage
=
1618 CDU_RSRVD_VALUE_TYPE_A(hw_cid
, CDU_REGION_NUMBER_UCM_AG
,
1619 ISCSI_CONNECTION_TYPE
);
1624 static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
1627 struct iscsi_kwqe_conn_offload1
*req1
;
1628 struct iscsi_kwqe_conn_offload2
*req2
;
1629 struct cnic_local
*cp
= dev
->cnic_priv
;
1630 struct iscsi_kcqe kcqe
;
1631 struct kcqe
*cqes
[1];
1640 req1
= (struct iscsi_kwqe_conn_offload1
*) wqes
[0];
1641 req2
= (struct iscsi_kwqe_conn_offload2
*) wqes
[1];
1642 if ((num
- 2) < req2
->num_additional_wqes
) {
1646 *work
= 2 + req2
->num_additional_wqes
;;
1648 l5_cid
= req1
->iscsi_conn_id
;
1649 if (l5_cid
>= MAX_ISCSI_TBL_SZ
)
1652 memset(&kcqe
, 0, sizeof(kcqe
));
1653 kcqe
.op_code
= ISCSI_KCQE_OPCODE_OFFLOAD_CONN
;
1654 kcqe
.iscsi_conn_id
= l5_cid
;
1655 kcqe
.completion_status
= ISCSI_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE
;
1657 if (atomic_inc_return(&cp
->iscsi_conn
) > dev
->max_iscsi_conn
) {
1658 atomic_dec(&cp
->iscsi_conn
);
1662 ret
= cnic_alloc_bnx2x_conn_resc(dev
, l5_cid
);
1664 atomic_dec(&cp
->iscsi_conn
);
1668 ret
= cnic_setup_bnx2x_ctx(dev
, wqes
, num
);
1670 cnic_free_bnx2x_conn_resc(dev
, l5_cid
);
1671 atomic_dec(&cp
->iscsi_conn
);
1675 kcqe
.completion_status
= ISCSI_KCQE_COMPLETION_STATUS_SUCCESS
;
1676 kcqe
.iscsi_conn_context_id
= BNX2X_HW_CID(cp
->ctx_tbl
[l5_cid
].cid
,
1680 cqes
[0] = (struct kcqe
*) &kcqe
;
1681 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_ISCSI
, cqes
, 1);
1686 static int cnic_bnx2x_iscsi_update(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1688 struct cnic_local
*cp
= dev
->cnic_priv
;
1689 struct iscsi_kwqe_conn_update
*req
=
1690 (struct iscsi_kwqe_conn_update
*) kwqe
;
1692 union l5cm_specific_data l5_data
;
1693 u32 l5_cid
, cid
= BNX2X_SW_CID(req
->context_id
);
1696 if (cnic_get_l5_cid(cp
, cid
, &l5_cid
) != 0)
1699 data
= cnic_get_kwqe_16_data(cp
, l5_cid
, &l5_data
);
1703 memcpy(data
, kwqe
, sizeof(struct kwqe
));
1705 ret
= cnic_submit_kwqe_16(dev
, ISCSI_RAMROD_CMD_ID_UPDATE_CONN
,
1706 req
->context_id
, ISCSI_CONNECTION_TYPE
, &l5_data
);
1710 static int cnic_bnx2x_iscsi_destroy(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1712 struct cnic_local
*cp
= dev
->cnic_priv
;
1713 struct iscsi_kwqe_conn_destroy
*req
=
1714 (struct iscsi_kwqe_conn_destroy
*) kwqe
;
1715 union l5cm_specific_data l5_data
;
1716 u32 l5_cid
= req
->reserved0
;
1717 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
1719 struct iscsi_kcqe kcqe
;
1720 struct kcqe
*cqes
[1];
1722 if (!(ctx
->ctx_flags
& CTX_FL_OFFLD_START
))
1723 goto skip_cfc_delete
;
1725 while (!time_after(jiffies
, ctx
->timestamp
+ (2 * HZ
)))
1728 init_waitqueue_head(&ctx
->waitq
);
1730 memset(&l5_data
, 0, sizeof(l5_data
));
1731 ret
= cnic_submit_kwqe_16(dev
, RAMROD_CMD_ID_ETH_CFC_DEL
,
1733 ETH_CONNECTION_TYPE
|
1734 (1 << SPE_HDR_COMMON_RAMROD_SHIFT
),
1737 wait_event(ctx
->waitq
, ctx
->wait_cond
);
1740 cnic_free_bnx2x_conn_resc(dev
, l5_cid
);
1742 atomic_dec(&cp
->iscsi_conn
);
1744 memset(&kcqe
, 0, sizeof(kcqe
));
1745 kcqe
.op_code
= ISCSI_KCQE_OPCODE_DESTROY_CONN
;
1746 kcqe
.iscsi_conn_id
= l5_cid
;
1747 kcqe
.completion_status
= ISCSI_KCQE_COMPLETION_STATUS_SUCCESS
;
1748 kcqe
.iscsi_conn_context_id
= req
->context_id
;
1750 cqes
[0] = (struct kcqe
*) &kcqe
;
1751 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_ISCSI
, cqes
, 1);
1756 static void cnic_init_storm_conn_bufs(struct cnic_dev
*dev
,
1757 struct l4_kwq_connect_req1
*kwqe1
,
1758 struct l4_kwq_connect_req3
*kwqe3
,
1759 struct l5cm_active_conn_buffer
*conn_buf
)
1761 struct l5cm_conn_addr_params
*conn_addr
= &conn_buf
->conn_addr_buf
;
1762 struct l5cm_xstorm_conn_buffer
*xstorm_buf
=
1763 &conn_buf
->xstorm_conn_buffer
;
1764 struct l5cm_tstorm_conn_buffer
*tstorm_buf
=
1765 &conn_buf
->tstorm_conn_buffer
;
1766 struct regpair context_addr
;
1767 u32 cid
= BNX2X_SW_CID(kwqe1
->cid
);
1768 struct in6_addr src_ip
, dst_ip
;
1772 addrp
= (u32
*) &conn_addr
->local_ip_addr
;
1773 for (i
= 0; i
< 4; i
++, addrp
++)
1774 src_ip
.in6_u
.u6_addr32
[i
] = cpu_to_be32(*addrp
);
1776 addrp
= (u32
*) &conn_addr
->remote_ip_addr
;
1777 for (i
= 0; i
< 4; i
++, addrp
++)
1778 dst_ip
.in6_u
.u6_addr32
[i
] = cpu_to_be32(*addrp
);
1780 cnic_get_bnx2x_ctx(dev
, cid
, 0, &context_addr
);
1782 xstorm_buf
->context_addr
.hi
= context_addr
.hi
;
1783 xstorm_buf
->context_addr
.lo
= context_addr
.lo
;
1784 xstorm_buf
->mss
= 0xffff;
1785 xstorm_buf
->rcv_buf
= kwqe3
->rcv_buf
;
1786 if (kwqe1
->tcp_flags
& L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE
)
1787 xstorm_buf
->params
|= L5CM_XSTORM_CONN_BUFFER_NAGLE_ENABLE
;
1788 xstorm_buf
->pseudo_header_checksum
=
1789 swab16(~csum_ipv6_magic(&src_ip
, &dst_ip
, 0, IPPROTO_TCP
, 0));
1791 if (!(kwqe1
->tcp_flags
& L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK
))
1792 tstorm_buf
->params
|=
1793 L5CM_TSTORM_CONN_BUFFER_DELAYED_ACK_ENABLE
;
1794 if (kwqe3
->ka_timeout
) {
1795 tstorm_buf
->ka_enable
= 1;
1796 tstorm_buf
->ka_timeout
= kwqe3
->ka_timeout
;
1797 tstorm_buf
->ka_interval
= kwqe3
->ka_interval
;
1798 tstorm_buf
->ka_max_probe_count
= kwqe3
->ka_max_probe_count
;
1800 tstorm_buf
->rcv_buf
= kwqe3
->rcv_buf
;
1801 tstorm_buf
->snd_buf
= kwqe3
->snd_buf
;
1802 tstorm_buf
->max_rt_time
= 0xffffffff;
1805 static void cnic_init_bnx2x_mac(struct cnic_dev
*dev
)
1807 struct cnic_local
*cp
= dev
->cnic_priv
;
1808 int func
= CNIC_FUNC(cp
);
1809 u8
*mac
= dev
->mac_addr
;
1811 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
1812 XSTORM_ISCSI_LOCAL_MAC_ADDR0_OFFSET(func
), mac
[0]);
1813 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
1814 XSTORM_ISCSI_LOCAL_MAC_ADDR1_OFFSET(func
), mac
[1]);
1815 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
1816 XSTORM_ISCSI_LOCAL_MAC_ADDR2_OFFSET(func
), mac
[2]);
1817 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
1818 XSTORM_ISCSI_LOCAL_MAC_ADDR3_OFFSET(func
), mac
[3]);
1819 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
1820 XSTORM_ISCSI_LOCAL_MAC_ADDR4_OFFSET(func
), mac
[4]);
1821 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
1822 XSTORM_ISCSI_LOCAL_MAC_ADDR5_OFFSET(func
), mac
[5]);
1824 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
1825 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(func
), mac
[5]);
1826 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
1827 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(func
) + 1,
1829 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
1830 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func
), mac
[3]);
1831 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
1832 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func
) + 1,
1834 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
1835 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func
) + 2,
1837 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
1838 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(func
) + 3,
1842 static void cnic_bnx2x_set_tcp_timestamp(struct cnic_dev
*dev
, int tcp_ts
)
1844 struct cnic_local
*cp
= dev
->cnic_priv
;
1845 u8 xstorm_flags
= XSTORM_L5CM_TCP_FLAGS_WND_SCL_EN
;
1846 u16 tstorm_flags
= 0;
1849 xstorm_flags
|= XSTORM_L5CM_TCP_FLAGS_TS_ENABLED
;
1850 tstorm_flags
|= TSTORM_L5CM_TCP_FLAGS_TS_ENABLED
;
1853 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
1854 XSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp
->func
), xstorm_flags
);
1856 CNIC_WR16(dev
, BAR_TSTRORM_INTMEM
+
1857 TSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp
->func
), tstorm_flags
);
1860 static int cnic_bnx2x_connect(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
1863 struct cnic_local
*cp
= dev
->cnic_priv
;
1864 struct l4_kwq_connect_req1
*kwqe1
=
1865 (struct l4_kwq_connect_req1
*) wqes
[0];
1866 struct l4_kwq_connect_req3
*kwqe3
;
1867 struct l5cm_active_conn_buffer
*conn_buf
;
1868 struct l5cm_conn_addr_params
*conn_addr
;
1869 union l5cm_specific_data l5_data
;
1870 u32 l5_cid
= kwqe1
->pg_cid
;
1871 struct cnic_sock
*csk
= &cp
->csk_tbl
[l5_cid
];
1872 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
1880 if (kwqe1
->conn_flags
& L4_KWQ_CONNECT_REQ1_IP_V6
)
1890 if (sizeof(*conn_buf
) > CNIC_KWQ16_DATA_SIZE
) {
1891 netdev_err(dev
->netdev
, "conn_buf size too big\n");
1894 conn_buf
= cnic_get_kwqe_16_data(cp
, l5_cid
, &l5_data
);
1898 memset(conn_buf
, 0, sizeof(*conn_buf
));
1900 conn_addr
= &conn_buf
->conn_addr_buf
;
1901 conn_addr
->remote_addr_0
= csk
->ha
[0];
1902 conn_addr
->remote_addr_1
= csk
->ha
[1];
1903 conn_addr
->remote_addr_2
= csk
->ha
[2];
1904 conn_addr
->remote_addr_3
= csk
->ha
[3];
1905 conn_addr
->remote_addr_4
= csk
->ha
[4];
1906 conn_addr
->remote_addr_5
= csk
->ha
[5];
1908 if (kwqe1
->conn_flags
& L4_KWQ_CONNECT_REQ1_IP_V6
) {
1909 struct l4_kwq_connect_req2
*kwqe2
=
1910 (struct l4_kwq_connect_req2
*) wqes
[1];
1912 conn_addr
->local_ip_addr
.ip_addr_hi_hi
= kwqe2
->src_ip_v6_4
;
1913 conn_addr
->local_ip_addr
.ip_addr_hi_lo
= kwqe2
->src_ip_v6_3
;
1914 conn_addr
->local_ip_addr
.ip_addr_lo_hi
= kwqe2
->src_ip_v6_2
;
1916 conn_addr
->remote_ip_addr
.ip_addr_hi_hi
= kwqe2
->dst_ip_v6_4
;
1917 conn_addr
->remote_ip_addr
.ip_addr_hi_lo
= kwqe2
->dst_ip_v6_3
;
1918 conn_addr
->remote_ip_addr
.ip_addr_lo_hi
= kwqe2
->dst_ip_v6_2
;
1919 conn_addr
->params
|= L5CM_CONN_ADDR_PARAMS_IP_VERSION
;
1921 kwqe3
= (struct l4_kwq_connect_req3
*) wqes
[*work
- 1];
1923 conn_addr
->local_ip_addr
.ip_addr_lo_lo
= kwqe1
->src_ip
;
1924 conn_addr
->remote_ip_addr
.ip_addr_lo_lo
= kwqe1
->dst_ip
;
1925 conn_addr
->local_tcp_port
= kwqe1
->src_port
;
1926 conn_addr
->remote_tcp_port
= kwqe1
->dst_port
;
1928 conn_addr
->pmtu
= kwqe3
->pmtu
;
1929 cnic_init_storm_conn_bufs(dev
, kwqe1
, kwqe3
, conn_buf
);
1931 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+
1932 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(cp
->func
), csk
->vlan_id
);
1934 cnic_bnx2x_set_tcp_timestamp(dev
,
1935 kwqe1
->tcp_flags
& L4_KWQ_CONNECT_REQ1_TIME_STAMP
);
1937 ret
= cnic_submit_kwqe_16(dev
, L5CM_RAMROD_CMD_ID_TCP_CONNECT
,
1938 kwqe1
->cid
, ISCSI_CONNECTION_TYPE
, &l5_data
);
1940 ctx
->ctx_flags
|= CTX_FL_OFFLD_START
;
1945 static int cnic_bnx2x_close(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1947 struct l4_kwq_close_req
*req
= (struct l4_kwq_close_req
*) kwqe
;
1948 union l5cm_specific_data l5_data
;
1951 memset(&l5_data
, 0, sizeof(l5_data
));
1952 ret
= cnic_submit_kwqe_16(dev
, L5CM_RAMROD_CMD_ID_CLOSE
,
1953 req
->cid
, ISCSI_CONNECTION_TYPE
, &l5_data
);
1957 static int cnic_bnx2x_reset(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1959 struct l4_kwq_reset_req
*req
= (struct l4_kwq_reset_req
*) kwqe
;
1960 union l5cm_specific_data l5_data
;
1963 memset(&l5_data
, 0, sizeof(l5_data
));
1964 ret
= cnic_submit_kwqe_16(dev
, L5CM_RAMROD_CMD_ID_ABORT
,
1965 req
->cid
, ISCSI_CONNECTION_TYPE
, &l5_data
);
1968 static int cnic_bnx2x_offload_pg(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1970 struct l4_kwq_offload_pg
*req
= (struct l4_kwq_offload_pg
*) kwqe
;
1972 struct kcqe
*cqes
[1];
1974 memset(&kcqe
, 0, sizeof(kcqe
));
1975 kcqe
.pg_host_opaque
= req
->host_opaque
;
1976 kcqe
.pg_cid
= req
->host_opaque
;
1977 kcqe
.op_code
= L4_KCQE_OPCODE_VALUE_OFFLOAD_PG
;
1978 cqes
[0] = (struct kcqe
*) &kcqe
;
1979 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_L4
, cqes
, 1);
1983 static int cnic_bnx2x_update_pg(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1985 struct l4_kwq_update_pg
*req
= (struct l4_kwq_update_pg
*) kwqe
;
1987 struct kcqe
*cqes
[1];
1989 memset(&kcqe
, 0, sizeof(kcqe
));
1990 kcqe
.pg_host_opaque
= req
->pg_host_opaque
;
1991 kcqe
.pg_cid
= req
->pg_cid
;
1992 kcqe
.op_code
= L4_KCQE_OPCODE_VALUE_UPDATE_PG
;
1993 cqes
[0] = (struct kcqe
*) &kcqe
;
1994 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_L4
, cqes
, 1);
1998 static int cnic_submit_bnx2x_kwqes(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
2005 if (!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
2006 return -EAGAIN
; /* bnx2 is down */
2008 for (i
= 0; i
< num_wqes
; ) {
2010 opcode
= KWQE_OPCODE(kwqe
->kwqe_op_flag
);
2014 case ISCSI_KWQE_OPCODE_INIT1
:
2015 ret
= cnic_bnx2x_iscsi_init1(dev
, kwqe
);
2017 case ISCSI_KWQE_OPCODE_INIT2
:
2018 ret
= cnic_bnx2x_iscsi_init2(dev
, kwqe
);
2020 case ISCSI_KWQE_OPCODE_OFFLOAD_CONN1
:
2021 ret
= cnic_bnx2x_iscsi_ofld1(dev
, &wqes
[i
],
2022 num_wqes
- i
, &work
);
2024 case ISCSI_KWQE_OPCODE_UPDATE_CONN
:
2025 ret
= cnic_bnx2x_iscsi_update(dev
, kwqe
);
2027 case ISCSI_KWQE_OPCODE_DESTROY_CONN
:
2028 ret
= cnic_bnx2x_iscsi_destroy(dev
, kwqe
);
2030 case L4_KWQE_OPCODE_VALUE_CONNECT1
:
2031 ret
= cnic_bnx2x_connect(dev
, &wqes
[i
], num_wqes
- i
,
2034 case L4_KWQE_OPCODE_VALUE_CLOSE
:
2035 ret
= cnic_bnx2x_close(dev
, kwqe
);
2037 case L4_KWQE_OPCODE_VALUE_RESET
:
2038 ret
= cnic_bnx2x_reset(dev
, kwqe
);
2040 case L4_KWQE_OPCODE_VALUE_OFFLOAD_PG
:
2041 ret
= cnic_bnx2x_offload_pg(dev
, kwqe
);
2043 case L4_KWQE_OPCODE_VALUE_UPDATE_PG
:
2044 ret
= cnic_bnx2x_update_pg(dev
, kwqe
);
2046 case L4_KWQE_OPCODE_VALUE_UPLOAD_PG
:
2051 netdev_err(dev
->netdev
, "Unknown type of KWQE(0x%x)\n",
2056 netdev_err(dev
->netdev
, "KWQE(0x%x) failed\n",
2063 static void service_kcqes(struct cnic_dev
*dev
, int num_cqes
)
2065 struct cnic_local
*cp
= dev
->cnic_priv
;
2071 struct cnic_ulp_ops
*ulp_ops
;
2073 u32 kcqe_op_flag
= cp
->completed_kcq
[i
]->kcqe_op_flag
;
2074 u32 kcqe_layer
= kcqe_op_flag
& KCQE_FLAGS_LAYER_MASK
;
2076 if (unlikely(kcqe_op_flag
& KCQE_RAMROD_COMPLETION
))
2077 cnic_kwq_completion(dev
, 1);
2079 while (j
< num_cqes
) {
2080 u32 next_op
= cp
->completed_kcq
[i
+ j
]->kcqe_op_flag
;
2082 if ((next_op
& KCQE_FLAGS_LAYER_MASK
) != kcqe_layer
)
2085 if (unlikely(next_op
& KCQE_RAMROD_COMPLETION
))
2086 cnic_kwq_completion(dev
, 1);
2090 if (kcqe_layer
== KCQE_FLAGS_LAYER_MASK_L5_RDMA
)
2091 ulp_type
= CNIC_ULP_RDMA
;
2092 else if (kcqe_layer
== KCQE_FLAGS_LAYER_MASK_L5_ISCSI
)
2093 ulp_type
= CNIC_ULP_ISCSI
;
2094 else if (kcqe_layer
== KCQE_FLAGS_LAYER_MASK_L4
)
2095 ulp_type
= CNIC_ULP_L4
;
2096 else if (kcqe_layer
== KCQE_FLAGS_LAYER_MASK_L2
)
2099 netdev_err(dev
->netdev
, "Unknown type of KCQE(0x%x)\n",
2105 ulp_ops
= rcu_dereference(cp
->ulp_ops
[ulp_type
]);
2106 if (likely(ulp_ops
)) {
2107 ulp_ops
->indicate_kcqes(cp
->ulp_handle
[ulp_type
],
2108 cp
->completed_kcq
+ i
, j
);
2118 static u16
cnic_bnx2_next_idx(u16 idx
)
2123 static u16
cnic_bnx2_hw_idx(u16 idx
)
2128 static u16
cnic_bnx2x_next_idx(u16 idx
)
2131 if ((idx
& MAX_KCQE_CNT
) == MAX_KCQE_CNT
)
2137 static u16
cnic_bnx2x_hw_idx(u16 idx
)
2139 if ((idx
& MAX_KCQE_CNT
) == MAX_KCQE_CNT
)
2144 static int cnic_get_kcqes(struct cnic_dev
*dev
, struct kcq_info
*info
)
2146 struct cnic_local
*cp
= dev
->cnic_priv
;
2147 u16 i
, ri
, hw_prod
, last
;
2149 int kcqe_cnt
= 0, last_cnt
= 0;
2151 i
= ri
= last
= info
->sw_prod_idx
;
2153 hw_prod
= *info
->hw_prod_idx_ptr
;
2154 hw_prod
= cp
->hw_idx(hw_prod
);
2156 while ((i
!= hw_prod
) && (kcqe_cnt
< MAX_COMPLETED_KCQE
)) {
2157 kcqe
= &info
->kcq
[KCQ_PG(ri
)][KCQ_IDX(ri
)];
2158 cp
->completed_kcq
[kcqe_cnt
++] = kcqe
;
2159 i
= cp
->next_idx(i
);
2160 ri
= i
& MAX_KCQ_IDX
;
2161 if (likely(!(kcqe
->kcqe_op_flag
& KCQE_FLAGS_NEXT
))) {
2162 last_cnt
= kcqe_cnt
;
2167 info
->sw_prod_idx
= last
;
2171 static int cnic_l2_completion(struct cnic_local
*cp
)
2173 u16 hw_cons
, sw_cons
;
2174 union eth_rx_cqe
*cqe
, *cqe_ring
= (union eth_rx_cqe
*)
2175 (cp
->l2_ring
+ (2 * BCM_PAGE_SIZE
));
2179 if (!test_bit(CNIC_F_BNX2X_CLASS
, &cp
->dev
->flags
))
2182 hw_cons
= *cp
->rx_cons_ptr
;
2183 if ((hw_cons
& BNX2X_MAX_RCQ_DESC_CNT
) == BNX2X_MAX_RCQ_DESC_CNT
)
2186 sw_cons
= cp
->rx_cons
;
2187 while (sw_cons
!= hw_cons
) {
2190 cqe
= &cqe_ring
[sw_cons
& BNX2X_MAX_RCQ_DESC_CNT
];
2191 cqe_fp_flags
= cqe
->fast_path_cqe
.type_error_flags
;
2192 if (cqe_fp_flags
& ETH_FAST_PATH_RX_CQE_TYPE
) {
2193 cmd
= le32_to_cpu(cqe
->ramrod_cqe
.conn_and_cmd_data
);
2194 cmd
>>= COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT
;
2195 if (cmd
== RAMROD_CMD_ID_ETH_CLIENT_SETUP
||
2196 cmd
== RAMROD_CMD_ID_ETH_HALT
)
2199 sw_cons
= BNX2X_NEXT_RCQE(sw_cons
);
2204 static void cnic_chk_pkt_rings(struct cnic_local
*cp
)
2206 u16 rx_cons
= *cp
->rx_cons_ptr
;
2207 u16 tx_cons
= *cp
->tx_cons_ptr
;
2210 if (!test_bit(CNIC_F_CNIC_UP
, &cp
->dev
->flags
))
2213 if (cp
->tx_cons
!= tx_cons
|| cp
->rx_cons
!= rx_cons
) {
2214 if (test_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
))
2215 comp
= cnic_l2_completion(cp
);
2217 cp
->tx_cons
= tx_cons
;
2218 cp
->rx_cons
= rx_cons
;
2220 uio_event_notify(cp
->cnic_uinfo
);
2223 clear_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
);
2226 static u32
cnic_service_bnx2_queues(struct cnic_dev
*dev
)
2228 struct cnic_local
*cp
= dev
->cnic_priv
;
2229 u32 status_idx
= (u16
) *cp
->kcq1
.status_idx_ptr
;
2232 cp
->kwq_con_idx
= *cp
->kwq_con_idx_ptr
;
2234 while ((kcqe_cnt
= cnic_get_kcqes(dev
, &cp
->kcq1
))) {
2236 service_kcqes(dev
, kcqe_cnt
);
2238 /* Tell compiler that status_blk fields can change. */
2240 if (status_idx
!= *cp
->kcq1
.status_idx_ptr
) {
2241 status_idx
= (u16
) *cp
->kcq1
.status_idx_ptr
;
2242 cp
->kwq_con_idx
= *cp
->kwq_con_idx_ptr
;
2247 CNIC_WR16(dev
, cp
->kcq1
.io_addr
, cp
->kcq1
.sw_prod_idx
);
2249 cnic_chk_pkt_rings(cp
);
2254 static int cnic_service_bnx2(void *data
, void *status_blk
)
2256 struct cnic_dev
*dev
= data
;
2257 struct cnic_local
*cp
= dev
->cnic_priv
;
2258 u32 status_idx
= *cp
->kcq1
.status_idx_ptr
;
2260 if (unlikely(!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
)))
2263 return cnic_service_bnx2_queues(dev
);
2266 static void cnic_service_bnx2_msix(unsigned long data
)
2268 struct cnic_dev
*dev
= (struct cnic_dev
*) data
;
2269 struct cnic_local
*cp
= dev
->cnic_priv
;
2271 cp
->last_status_idx
= cnic_service_bnx2_queues(dev
);
2273 CNIC_WR(dev
, BNX2_PCICFG_INT_ACK_CMD
, cp
->int_num
|
2274 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID
| cp
->last_status_idx
);
2277 static void cnic_doirq(struct cnic_dev
*dev
)
2279 struct cnic_local
*cp
= dev
->cnic_priv
;
2280 u16 prod
= cp
->kcq1
.sw_prod_idx
& MAX_KCQ_IDX
;
2282 if (likely(test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))) {
2283 prefetch(cp
->status_blk
.gen
);
2284 prefetch(&cp
->kcq1
.kcq
[KCQ_PG(prod
)][KCQ_IDX(prod
)]);
2286 tasklet_schedule(&cp
->cnic_irq_task
);
2290 static irqreturn_t
cnic_irq(int irq
, void *dev_instance
)
2292 struct cnic_dev
*dev
= dev_instance
;
2293 struct cnic_local
*cp
= dev
->cnic_priv
;
2303 static inline void cnic_ack_bnx2x_int(struct cnic_dev
*dev
, u8 id
, u8 storm
,
2304 u16 index
, u8 op
, u8 update
)
2306 struct cnic_local
*cp
= dev
->cnic_priv
;
2307 u32 hc_addr
= (HC_REG_COMMAND_REG
+ CNIC_PORT(cp
) * 32 +
2308 COMMAND_REG_INT_ACK
);
2309 struct igu_ack_register igu_ack
;
2311 igu_ack
.status_block_index
= index
;
2312 igu_ack
.sb_id_and_flags
=
2313 ((id
<< IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT
) |
2314 (storm
<< IGU_ACK_REGISTER_STORM_ID_SHIFT
) |
2315 (update
<< IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT
) |
2316 (op
<< IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT
));
2318 CNIC_WR(dev
, hc_addr
, (*(u32
*)&igu_ack
));
2321 static void cnic_ack_bnx2x_msix(struct cnic_dev
*dev
)
2323 struct cnic_local
*cp
= dev
->cnic_priv
;
2325 cnic_ack_bnx2x_int(dev
, cp
->status_blk_num
, CSTORM_ID
, 0,
2326 IGU_INT_DISABLE
, 0);
2329 static u32
cnic_service_bnx2x_kcq(struct cnic_dev
*dev
, struct kcq_info
*info
)
2331 u32 last_status
= *info
->status_idx_ptr
;
2334 while ((kcqe_cnt
= cnic_get_kcqes(dev
, info
))) {
2336 service_kcqes(dev
, kcqe_cnt
);
2338 /* Tell compiler that sblk fields can change. */
2340 if (last_status
== *info
->status_idx_ptr
)
2343 last_status
= *info
->status_idx_ptr
;
2348 static void cnic_service_bnx2x_bh(unsigned long data
)
2350 struct cnic_dev
*dev
= (struct cnic_dev
*) data
;
2351 struct cnic_local
*cp
= dev
->cnic_priv
;
2354 if (unlikely(!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
)))
2357 status_idx
= cnic_service_bnx2x_kcq(dev
, &cp
->kcq1
);
2359 CNIC_WR16(dev
, cp
->kcq1
.io_addr
, cp
->kcq1
.sw_prod_idx
+ MAX_KCQ_IDX
);
2360 cnic_ack_bnx2x_int(dev
, cp
->status_blk_num
, CSTORM_ID
,
2361 status_idx
, IGU_INT_ENABLE
, 1);
2364 static int cnic_service_bnx2x(void *data
, void *status_blk
)
2366 struct cnic_dev
*dev
= data
;
2367 struct cnic_local
*cp
= dev
->cnic_priv
;
2369 if (!(cp
->ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
))
2372 cnic_chk_pkt_rings(cp
);
2377 static void cnic_ulp_stop(struct cnic_dev
*dev
)
2379 struct cnic_local
*cp
= dev
->cnic_priv
;
2383 cnic_send_nlmsg(cp
, ISCSI_KEVENT_IF_DOWN
, NULL
);
2385 for (if_type
= 0; if_type
< MAX_CNIC_ULP_TYPE
; if_type
++) {
2386 struct cnic_ulp_ops
*ulp_ops
;
2388 mutex_lock(&cnic_lock
);
2389 ulp_ops
= cp
->ulp_ops
[if_type
];
2391 mutex_unlock(&cnic_lock
);
2394 set_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[if_type
]);
2395 mutex_unlock(&cnic_lock
);
2397 if (test_and_clear_bit(ULP_F_START
, &cp
->ulp_flags
[if_type
]))
2398 ulp_ops
->cnic_stop(cp
->ulp_handle
[if_type
]);
2400 clear_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[if_type
]);
2404 static void cnic_ulp_start(struct cnic_dev
*dev
)
2406 struct cnic_local
*cp
= dev
->cnic_priv
;
2409 for (if_type
= 0; if_type
< MAX_CNIC_ULP_TYPE
; if_type
++) {
2410 struct cnic_ulp_ops
*ulp_ops
;
2412 mutex_lock(&cnic_lock
);
2413 ulp_ops
= cp
->ulp_ops
[if_type
];
2414 if (!ulp_ops
|| !ulp_ops
->cnic_start
) {
2415 mutex_unlock(&cnic_lock
);
2418 set_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[if_type
]);
2419 mutex_unlock(&cnic_lock
);
2421 if (!test_and_set_bit(ULP_F_START
, &cp
->ulp_flags
[if_type
]))
2422 ulp_ops
->cnic_start(cp
->ulp_handle
[if_type
]);
2424 clear_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[if_type
]);
2428 static int cnic_ctl(void *data
, struct cnic_ctl_info
*info
)
2430 struct cnic_dev
*dev
= data
;
2432 switch (info
->cmd
) {
2433 case CNIC_CTL_STOP_CMD
:
2441 case CNIC_CTL_START_CMD
:
2444 if (!cnic_start_hw(dev
))
2445 cnic_ulp_start(dev
);
2449 case CNIC_CTL_COMPLETION_CMD
: {
2450 u32 cid
= BNX2X_SW_CID(info
->data
.comp
.cid
);
2452 struct cnic_local
*cp
= dev
->cnic_priv
;
2454 if (cnic_get_l5_cid(cp
, cid
, &l5_cid
) == 0) {
2455 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
2458 wake_up(&ctx
->waitq
);
2468 static void cnic_ulp_init(struct cnic_dev
*dev
)
2471 struct cnic_local
*cp
= dev
->cnic_priv
;
2473 for (i
= 0; i
< MAX_CNIC_ULP_TYPE_EXT
; i
++) {
2474 struct cnic_ulp_ops
*ulp_ops
;
2476 mutex_lock(&cnic_lock
);
2477 ulp_ops
= cnic_ulp_tbl
[i
];
2478 if (!ulp_ops
|| !ulp_ops
->cnic_init
) {
2479 mutex_unlock(&cnic_lock
);
2483 mutex_unlock(&cnic_lock
);
2485 if (!test_and_set_bit(ULP_F_INIT
, &cp
->ulp_flags
[i
]))
2486 ulp_ops
->cnic_init(dev
);
2492 static void cnic_ulp_exit(struct cnic_dev
*dev
)
2495 struct cnic_local
*cp
= dev
->cnic_priv
;
2497 for (i
= 0; i
< MAX_CNIC_ULP_TYPE_EXT
; i
++) {
2498 struct cnic_ulp_ops
*ulp_ops
;
2500 mutex_lock(&cnic_lock
);
2501 ulp_ops
= cnic_ulp_tbl
[i
];
2502 if (!ulp_ops
|| !ulp_ops
->cnic_exit
) {
2503 mutex_unlock(&cnic_lock
);
2507 mutex_unlock(&cnic_lock
);
2509 if (test_and_clear_bit(ULP_F_INIT
, &cp
->ulp_flags
[i
]))
2510 ulp_ops
->cnic_exit(dev
);
2516 static int cnic_cm_offload_pg(struct cnic_sock
*csk
)
2518 struct cnic_dev
*dev
= csk
->dev
;
2519 struct l4_kwq_offload_pg
*l4kwqe
;
2520 struct kwqe
*wqes
[1];
2522 l4kwqe
= (struct l4_kwq_offload_pg
*) &csk
->kwqe1
;
2523 memset(l4kwqe
, 0, sizeof(*l4kwqe
));
2524 wqes
[0] = (struct kwqe
*) l4kwqe
;
2526 l4kwqe
->op_code
= L4_KWQE_OPCODE_VALUE_OFFLOAD_PG
;
2528 L4_LAYER_CODE
<< L4_KWQ_OFFLOAD_PG_LAYER_CODE_SHIFT
;
2529 l4kwqe
->l2hdr_nbytes
= ETH_HLEN
;
2531 l4kwqe
->da0
= csk
->ha
[0];
2532 l4kwqe
->da1
= csk
->ha
[1];
2533 l4kwqe
->da2
= csk
->ha
[2];
2534 l4kwqe
->da3
= csk
->ha
[3];
2535 l4kwqe
->da4
= csk
->ha
[4];
2536 l4kwqe
->da5
= csk
->ha
[5];
2538 l4kwqe
->sa0
= dev
->mac_addr
[0];
2539 l4kwqe
->sa1
= dev
->mac_addr
[1];
2540 l4kwqe
->sa2
= dev
->mac_addr
[2];
2541 l4kwqe
->sa3
= dev
->mac_addr
[3];
2542 l4kwqe
->sa4
= dev
->mac_addr
[4];
2543 l4kwqe
->sa5
= dev
->mac_addr
[5];
2545 l4kwqe
->etype
= ETH_P_IP
;
2546 l4kwqe
->ipid_start
= DEF_IPID_START
;
2547 l4kwqe
->host_opaque
= csk
->l5_cid
;
2550 l4kwqe
->pg_flags
|= L4_KWQ_OFFLOAD_PG_VLAN_TAGGING
;
2551 l4kwqe
->vlan_tag
= csk
->vlan_id
;
2552 l4kwqe
->l2hdr_nbytes
+= 4;
2555 return dev
->submit_kwqes(dev
, wqes
, 1);
2558 static int cnic_cm_update_pg(struct cnic_sock
*csk
)
2560 struct cnic_dev
*dev
= csk
->dev
;
2561 struct l4_kwq_update_pg
*l4kwqe
;
2562 struct kwqe
*wqes
[1];
2564 l4kwqe
= (struct l4_kwq_update_pg
*) &csk
->kwqe1
;
2565 memset(l4kwqe
, 0, sizeof(*l4kwqe
));
2566 wqes
[0] = (struct kwqe
*) l4kwqe
;
2568 l4kwqe
->opcode
= L4_KWQE_OPCODE_VALUE_UPDATE_PG
;
2570 L4_LAYER_CODE
<< L4_KWQ_UPDATE_PG_LAYER_CODE_SHIFT
;
2571 l4kwqe
->pg_cid
= csk
->pg_cid
;
2573 l4kwqe
->da0
= csk
->ha
[0];
2574 l4kwqe
->da1
= csk
->ha
[1];
2575 l4kwqe
->da2
= csk
->ha
[2];
2576 l4kwqe
->da3
= csk
->ha
[3];
2577 l4kwqe
->da4
= csk
->ha
[4];
2578 l4kwqe
->da5
= csk
->ha
[5];
2580 l4kwqe
->pg_host_opaque
= csk
->l5_cid
;
2581 l4kwqe
->pg_valids
= L4_KWQ_UPDATE_PG_VALIDS_DA
;
2583 return dev
->submit_kwqes(dev
, wqes
, 1);
2586 static int cnic_cm_upload_pg(struct cnic_sock
*csk
)
2588 struct cnic_dev
*dev
= csk
->dev
;
2589 struct l4_kwq_upload
*l4kwqe
;
2590 struct kwqe
*wqes
[1];
2592 l4kwqe
= (struct l4_kwq_upload
*) &csk
->kwqe1
;
2593 memset(l4kwqe
, 0, sizeof(*l4kwqe
));
2594 wqes
[0] = (struct kwqe
*) l4kwqe
;
2596 l4kwqe
->opcode
= L4_KWQE_OPCODE_VALUE_UPLOAD_PG
;
2598 L4_LAYER_CODE
<< L4_KWQ_UPLOAD_LAYER_CODE_SHIFT
;
2599 l4kwqe
->cid
= csk
->pg_cid
;
2601 return dev
->submit_kwqes(dev
, wqes
, 1);
2604 static int cnic_cm_conn_req(struct cnic_sock
*csk
)
2606 struct cnic_dev
*dev
= csk
->dev
;
2607 struct l4_kwq_connect_req1
*l4kwqe1
;
2608 struct l4_kwq_connect_req2
*l4kwqe2
;
2609 struct l4_kwq_connect_req3
*l4kwqe3
;
2610 struct kwqe
*wqes
[3];
2614 l4kwqe1
= (struct l4_kwq_connect_req1
*) &csk
->kwqe1
;
2615 l4kwqe2
= (struct l4_kwq_connect_req2
*) &csk
->kwqe2
;
2616 l4kwqe3
= (struct l4_kwq_connect_req3
*) &csk
->kwqe3
;
2617 memset(l4kwqe1
, 0, sizeof(*l4kwqe1
));
2618 memset(l4kwqe2
, 0, sizeof(*l4kwqe2
));
2619 memset(l4kwqe3
, 0, sizeof(*l4kwqe3
));
2621 l4kwqe3
->op_code
= L4_KWQE_OPCODE_VALUE_CONNECT3
;
2623 L4_LAYER_CODE
<< L4_KWQ_CONNECT_REQ3_LAYER_CODE_SHIFT
;
2624 l4kwqe3
->ka_timeout
= csk
->ka_timeout
;
2625 l4kwqe3
->ka_interval
= csk
->ka_interval
;
2626 l4kwqe3
->ka_max_probe_count
= csk
->ka_max_probe_count
;
2627 l4kwqe3
->tos
= csk
->tos
;
2628 l4kwqe3
->ttl
= csk
->ttl
;
2629 l4kwqe3
->snd_seq_scale
= csk
->snd_seq_scale
;
2630 l4kwqe3
->pmtu
= csk
->mtu
;
2631 l4kwqe3
->rcv_buf
= csk
->rcv_buf
;
2632 l4kwqe3
->snd_buf
= csk
->snd_buf
;
2633 l4kwqe3
->seed
= csk
->seed
;
2635 wqes
[0] = (struct kwqe
*) l4kwqe1
;
2636 if (test_bit(SK_F_IPV6
, &csk
->flags
)) {
2637 wqes
[1] = (struct kwqe
*) l4kwqe2
;
2638 wqes
[2] = (struct kwqe
*) l4kwqe3
;
2641 l4kwqe1
->conn_flags
= L4_KWQ_CONNECT_REQ1_IP_V6
;
2642 l4kwqe2
->op_code
= L4_KWQE_OPCODE_VALUE_CONNECT2
;
2644 L4_KWQ_CONNECT_REQ2_LINKED_WITH_NEXT
|
2645 L4_LAYER_CODE
<< L4_KWQ_CONNECT_REQ2_LAYER_CODE_SHIFT
;
2646 l4kwqe2
->src_ip_v6_2
= be32_to_cpu(csk
->src_ip
[1]);
2647 l4kwqe2
->src_ip_v6_3
= be32_to_cpu(csk
->src_ip
[2]);
2648 l4kwqe2
->src_ip_v6_4
= be32_to_cpu(csk
->src_ip
[3]);
2649 l4kwqe2
->dst_ip_v6_2
= be32_to_cpu(csk
->dst_ip
[1]);
2650 l4kwqe2
->dst_ip_v6_3
= be32_to_cpu(csk
->dst_ip
[2]);
2651 l4kwqe2
->dst_ip_v6_4
= be32_to_cpu(csk
->dst_ip
[3]);
2652 l4kwqe3
->mss
= l4kwqe3
->pmtu
- sizeof(struct ipv6hdr
) -
2653 sizeof(struct tcphdr
);
2655 wqes
[1] = (struct kwqe
*) l4kwqe3
;
2656 l4kwqe3
->mss
= l4kwqe3
->pmtu
- sizeof(struct iphdr
) -
2657 sizeof(struct tcphdr
);
2660 l4kwqe1
->op_code
= L4_KWQE_OPCODE_VALUE_CONNECT1
;
2662 (L4_LAYER_CODE
<< L4_KWQ_CONNECT_REQ1_LAYER_CODE_SHIFT
) |
2663 L4_KWQ_CONNECT_REQ3_LINKED_WITH_NEXT
;
2664 l4kwqe1
->cid
= csk
->cid
;
2665 l4kwqe1
->pg_cid
= csk
->pg_cid
;
2666 l4kwqe1
->src_ip
= be32_to_cpu(csk
->src_ip
[0]);
2667 l4kwqe1
->dst_ip
= be32_to_cpu(csk
->dst_ip
[0]);
2668 l4kwqe1
->src_port
= be16_to_cpu(csk
->src_port
);
2669 l4kwqe1
->dst_port
= be16_to_cpu(csk
->dst_port
);
2670 if (csk
->tcp_flags
& SK_TCP_NO_DELAY_ACK
)
2671 tcp_flags
|= L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK
;
2672 if (csk
->tcp_flags
& SK_TCP_KEEP_ALIVE
)
2673 tcp_flags
|= L4_KWQ_CONNECT_REQ1_KEEP_ALIVE
;
2674 if (csk
->tcp_flags
& SK_TCP_NAGLE
)
2675 tcp_flags
|= L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE
;
2676 if (csk
->tcp_flags
& SK_TCP_TIMESTAMP
)
2677 tcp_flags
|= L4_KWQ_CONNECT_REQ1_TIME_STAMP
;
2678 if (csk
->tcp_flags
& SK_TCP_SACK
)
2679 tcp_flags
|= L4_KWQ_CONNECT_REQ1_SACK
;
2680 if (csk
->tcp_flags
& SK_TCP_SEG_SCALING
)
2681 tcp_flags
|= L4_KWQ_CONNECT_REQ1_SEG_SCALING
;
2683 l4kwqe1
->tcp_flags
= tcp_flags
;
2685 return dev
->submit_kwqes(dev
, wqes
, num_wqes
);
2688 static int cnic_cm_close_req(struct cnic_sock
*csk
)
2690 struct cnic_dev
*dev
= csk
->dev
;
2691 struct l4_kwq_close_req
*l4kwqe
;
2692 struct kwqe
*wqes
[1];
2694 l4kwqe
= (struct l4_kwq_close_req
*) &csk
->kwqe2
;
2695 memset(l4kwqe
, 0, sizeof(*l4kwqe
));
2696 wqes
[0] = (struct kwqe
*) l4kwqe
;
2698 l4kwqe
->op_code
= L4_KWQE_OPCODE_VALUE_CLOSE
;
2699 l4kwqe
->flags
= L4_LAYER_CODE
<< L4_KWQ_CLOSE_REQ_LAYER_CODE_SHIFT
;
2700 l4kwqe
->cid
= csk
->cid
;
2702 return dev
->submit_kwqes(dev
, wqes
, 1);
2705 static int cnic_cm_abort_req(struct cnic_sock
*csk
)
2707 struct cnic_dev
*dev
= csk
->dev
;
2708 struct l4_kwq_reset_req
*l4kwqe
;
2709 struct kwqe
*wqes
[1];
2711 l4kwqe
= (struct l4_kwq_reset_req
*) &csk
->kwqe2
;
2712 memset(l4kwqe
, 0, sizeof(*l4kwqe
));
2713 wqes
[0] = (struct kwqe
*) l4kwqe
;
2715 l4kwqe
->op_code
= L4_KWQE_OPCODE_VALUE_RESET
;
2716 l4kwqe
->flags
= L4_LAYER_CODE
<< L4_KWQ_RESET_REQ_LAYER_CODE_SHIFT
;
2717 l4kwqe
->cid
= csk
->cid
;
2719 return dev
->submit_kwqes(dev
, wqes
, 1);
2722 static int cnic_cm_create(struct cnic_dev
*dev
, int ulp_type
, u32 cid
,
2723 u32 l5_cid
, struct cnic_sock
**csk
, void *context
)
2725 struct cnic_local
*cp
= dev
->cnic_priv
;
2726 struct cnic_sock
*csk1
;
2728 if (l5_cid
>= MAX_CM_SK_TBL_SZ
)
2731 csk1
= &cp
->csk_tbl
[l5_cid
];
2732 if (atomic_read(&csk1
->ref_count
))
2735 if (test_and_set_bit(SK_F_INUSE
, &csk1
->flags
))
2740 csk1
->l5_cid
= l5_cid
;
2741 csk1
->ulp_type
= ulp_type
;
2742 csk1
->context
= context
;
2744 csk1
->ka_timeout
= DEF_KA_TIMEOUT
;
2745 csk1
->ka_interval
= DEF_KA_INTERVAL
;
2746 csk1
->ka_max_probe_count
= DEF_KA_MAX_PROBE_COUNT
;
2747 csk1
->tos
= DEF_TOS
;
2748 csk1
->ttl
= DEF_TTL
;
2749 csk1
->snd_seq_scale
= DEF_SND_SEQ_SCALE
;
2750 csk1
->rcv_buf
= DEF_RCV_BUF
;
2751 csk1
->snd_buf
= DEF_SND_BUF
;
2752 csk1
->seed
= DEF_SEED
;
2758 static void cnic_cm_cleanup(struct cnic_sock
*csk
)
2760 if (csk
->src_port
) {
2761 struct cnic_dev
*dev
= csk
->dev
;
2762 struct cnic_local
*cp
= dev
->cnic_priv
;
2764 cnic_free_id(&cp
->csk_port_tbl
, csk
->src_port
);
2769 static void cnic_close_conn(struct cnic_sock
*csk
)
2771 if (test_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
)) {
2772 cnic_cm_upload_pg(csk
);
2773 clear_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
);
2775 cnic_cm_cleanup(csk
);
2778 static int cnic_cm_destroy(struct cnic_sock
*csk
)
2780 if (!cnic_in_use(csk
))
2784 clear_bit(SK_F_INUSE
, &csk
->flags
);
2785 smp_mb__after_clear_bit();
2786 while (atomic_read(&csk
->ref_count
) != 1)
2788 cnic_cm_cleanup(csk
);
2795 static inline u16
cnic_get_vlan(struct net_device
*dev
,
2796 struct net_device
**vlan_dev
)
2798 if (dev
->priv_flags
& IFF_802_1Q_VLAN
) {
2799 *vlan_dev
= vlan_dev_real_dev(dev
);
2800 return vlan_dev_vlan_id(dev
);
2806 static int cnic_get_v4_route(struct sockaddr_in
*dst_addr
,
2807 struct dst_entry
**dst
)
2809 #if defined(CONFIG_INET)
2814 memset(&fl
, 0, sizeof(fl
));
2815 fl
.nl_u
.ip4_u
.daddr
= dst_addr
->sin_addr
.s_addr
;
2817 err
= ip_route_output_key(&init_net
, &rt
, &fl
);
2822 return -ENETUNREACH
;
2826 static int cnic_get_v6_route(struct sockaddr_in6
*dst_addr
,
2827 struct dst_entry
**dst
)
2829 #if defined(CONFIG_IPV6) || (defined(CONFIG_IPV6_MODULE) && defined(MODULE))
2832 memset(&fl
, 0, sizeof(fl
));
2833 ipv6_addr_copy(&fl
.fl6_dst
, &dst_addr
->sin6_addr
);
2834 if (ipv6_addr_type(&fl
.fl6_dst
) & IPV6_ADDR_LINKLOCAL
)
2835 fl
.oif
= dst_addr
->sin6_scope_id
;
2837 *dst
= ip6_route_output(&init_net
, NULL
, &fl
);
2842 return -ENETUNREACH
;
2845 static struct cnic_dev
*cnic_cm_select_dev(struct sockaddr_in
*dst_addr
,
2848 struct cnic_dev
*dev
= NULL
;
2849 struct dst_entry
*dst
;
2850 struct net_device
*netdev
= NULL
;
2851 int err
= -ENETUNREACH
;
2853 if (dst_addr
->sin_family
== AF_INET
)
2854 err
= cnic_get_v4_route(dst_addr
, &dst
);
2855 else if (dst_addr
->sin_family
== AF_INET6
) {
2856 struct sockaddr_in6
*dst_addr6
=
2857 (struct sockaddr_in6
*) dst_addr
;
2859 err
= cnic_get_v6_route(dst_addr6
, &dst
);
2869 cnic_get_vlan(dst
->dev
, &netdev
);
2871 dev
= cnic_from_netdev(netdev
);
2880 static int cnic_resolve_addr(struct cnic_sock
*csk
, struct cnic_sockaddr
*saddr
)
2882 struct cnic_dev
*dev
= csk
->dev
;
2883 struct cnic_local
*cp
= dev
->cnic_priv
;
2885 return cnic_send_nlmsg(cp
, ISCSI_KEVENT_PATH_REQ
, csk
);
2888 static int cnic_get_route(struct cnic_sock
*csk
, struct cnic_sockaddr
*saddr
)
2890 struct cnic_dev
*dev
= csk
->dev
;
2891 struct cnic_local
*cp
= dev
->cnic_priv
;
2893 struct dst_entry
*dst
= NULL
;
2894 struct net_device
*realdev
;
2897 if (saddr
->local
.v6
.sin6_family
== AF_INET6
&&
2898 saddr
->remote
.v6
.sin6_family
== AF_INET6
)
2900 else if (saddr
->local
.v4
.sin_family
== AF_INET
&&
2901 saddr
->remote
.v4
.sin_family
== AF_INET
)
2906 clear_bit(SK_F_IPV6
, &csk
->flags
);
2909 set_bit(SK_F_IPV6
, &csk
->flags
);
2910 cnic_get_v6_route(&saddr
->remote
.v6
, &dst
);
2912 memcpy(&csk
->dst_ip
[0], &saddr
->remote
.v6
.sin6_addr
,
2913 sizeof(struct in6_addr
));
2914 csk
->dst_port
= saddr
->remote
.v6
.sin6_port
;
2915 local_port
= saddr
->local
.v6
.sin6_port
;
2918 cnic_get_v4_route(&saddr
->remote
.v4
, &dst
);
2920 csk
->dst_ip
[0] = saddr
->remote
.v4
.sin_addr
.s_addr
;
2921 csk
->dst_port
= saddr
->remote
.v4
.sin_port
;
2922 local_port
= saddr
->local
.v4
.sin_port
;
2926 csk
->mtu
= dev
->netdev
->mtu
;
2927 if (dst
&& dst
->dev
) {
2928 u16 vlan
= cnic_get_vlan(dst
->dev
, &realdev
);
2929 if (realdev
== dev
->netdev
) {
2930 csk
->vlan_id
= vlan
;
2931 csk
->mtu
= dst_mtu(dst
);
2935 if (local_port
>= CNIC_LOCAL_PORT_MIN
&&
2936 local_port
< CNIC_LOCAL_PORT_MAX
) {
2937 if (cnic_alloc_id(&cp
->csk_port_tbl
, local_port
))
2943 local_port
= cnic_alloc_new_id(&cp
->csk_port_tbl
);
2944 if (local_port
== -1) {
2949 csk
->src_port
= local_port
;
2956 static void cnic_init_csk_state(struct cnic_sock
*csk
)
2959 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
2960 clear_bit(SK_F_CLOSING
, &csk
->flags
);
2963 static int cnic_cm_connect(struct cnic_sock
*csk
, struct cnic_sockaddr
*saddr
)
2967 if (!cnic_in_use(csk
))
2970 if (test_and_set_bit(SK_F_CONNECT_START
, &csk
->flags
))
2973 cnic_init_csk_state(csk
);
2975 err
= cnic_get_route(csk
, saddr
);
2979 err
= cnic_resolve_addr(csk
, saddr
);
2984 clear_bit(SK_F_CONNECT_START
, &csk
->flags
);
2988 static int cnic_cm_abort(struct cnic_sock
*csk
)
2990 struct cnic_local
*cp
= csk
->dev
->cnic_priv
;
2991 u32 opcode
= L4_KCQE_OPCODE_VALUE_RESET_COMP
;
2993 if (!cnic_in_use(csk
))
2996 if (cnic_abort_prep(csk
))
2997 return cnic_cm_abort_req(csk
);
2999 /* Getting here means that we haven't started connect, or
3000 * connect was not successful.
3003 cp
->close_conn(csk
, opcode
);
3004 if (csk
->state
!= opcode
)
3010 static int cnic_cm_close(struct cnic_sock
*csk
)
3012 if (!cnic_in_use(csk
))
3015 if (cnic_close_prep(csk
)) {
3016 csk
->state
= L4_KCQE_OPCODE_VALUE_CLOSE_COMP
;
3017 return cnic_cm_close_req(csk
);
3024 static void cnic_cm_upcall(struct cnic_local
*cp
, struct cnic_sock
*csk
,
3027 struct cnic_ulp_ops
*ulp_ops
;
3028 int ulp_type
= csk
->ulp_type
;
3031 ulp_ops
= rcu_dereference(cp
->ulp_ops
[ulp_type
]);
3033 if (opcode
== L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE
)
3034 ulp_ops
->cm_connect_complete(csk
);
3035 else if (opcode
== L4_KCQE_OPCODE_VALUE_CLOSE_COMP
)
3036 ulp_ops
->cm_close_complete(csk
);
3037 else if (opcode
== L4_KCQE_OPCODE_VALUE_RESET_RECEIVED
)
3038 ulp_ops
->cm_remote_abort(csk
);
3039 else if (opcode
== L4_KCQE_OPCODE_VALUE_RESET_COMP
)
3040 ulp_ops
->cm_abort_complete(csk
);
3041 else if (opcode
== L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED
)
3042 ulp_ops
->cm_remote_close(csk
);
3047 static int cnic_cm_set_pg(struct cnic_sock
*csk
)
3049 if (cnic_offld_prep(csk
)) {
3050 if (test_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
))
3051 cnic_cm_update_pg(csk
);
3053 cnic_cm_offload_pg(csk
);
3058 static void cnic_cm_process_offld_pg(struct cnic_dev
*dev
, struct l4_kcq
*kcqe
)
3060 struct cnic_local
*cp
= dev
->cnic_priv
;
3061 u32 l5_cid
= kcqe
->pg_host_opaque
;
3062 u8 opcode
= kcqe
->op_code
;
3063 struct cnic_sock
*csk
= &cp
->csk_tbl
[l5_cid
];
3066 if (!cnic_in_use(csk
))
3069 if (opcode
== L4_KCQE_OPCODE_VALUE_UPDATE_PG
) {
3070 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
3073 /* Possible PG kcqe status: SUCCESS, OFFLOADED_PG, or CTX_ALLOC_FAIL */
3074 if (kcqe
->status
== L4_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAIL
) {
3075 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
3076 cnic_cm_upcall(cp
, csk
,
3077 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE
);
3081 csk
->pg_cid
= kcqe
->pg_cid
;
3082 set_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
);
3083 cnic_cm_conn_req(csk
);
3089 static void cnic_cm_process_kcqe(struct cnic_dev
*dev
, struct kcqe
*kcqe
)
3091 struct cnic_local
*cp
= dev
->cnic_priv
;
3092 struct l4_kcq
*l4kcqe
= (struct l4_kcq
*) kcqe
;
3093 u8 opcode
= l4kcqe
->op_code
;
3095 struct cnic_sock
*csk
;
3097 if (opcode
== L4_KCQE_OPCODE_VALUE_OFFLOAD_PG
||
3098 opcode
== L4_KCQE_OPCODE_VALUE_UPDATE_PG
) {
3099 cnic_cm_process_offld_pg(dev
, l4kcqe
);
3103 l5_cid
= l4kcqe
->conn_id
;
3105 l5_cid
= l4kcqe
->cid
;
3106 if (l5_cid
>= MAX_CM_SK_TBL_SZ
)
3109 csk
= &cp
->csk_tbl
[l5_cid
];
3112 if (!cnic_in_use(csk
)) {
3118 case L5CM_RAMROD_CMD_ID_TCP_CONNECT
:
3119 if (l4kcqe
->status
!= 0) {
3120 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
3121 cnic_cm_upcall(cp
, csk
,
3122 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE
);
3125 case L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE
:
3126 if (l4kcqe
->status
== 0)
3127 set_bit(SK_F_OFFLD_COMPLETE
, &csk
->flags
);
3129 smp_mb__before_clear_bit();
3130 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
3131 cnic_cm_upcall(cp
, csk
, opcode
);
3134 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED
:
3135 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP
:
3136 case L4_KCQE_OPCODE_VALUE_RESET_COMP
:
3137 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE
:
3138 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD
:
3139 cp
->close_conn(csk
, opcode
);
3142 case L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED
:
3143 cnic_cm_upcall(cp
, csk
, opcode
);
3149 static void cnic_cm_indicate_kcqe(void *data
, struct kcqe
*kcqe
[], u32 num
)
3151 struct cnic_dev
*dev
= data
;
3154 for (i
= 0; i
< num
; i
++)
3155 cnic_cm_process_kcqe(dev
, kcqe
[i
]);
3158 static struct cnic_ulp_ops cm_ulp_ops
= {
3159 .indicate_kcqes
= cnic_cm_indicate_kcqe
,
3162 static void cnic_cm_free_mem(struct cnic_dev
*dev
)
3164 struct cnic_local
*cp
= dev
->cnic_priv
;
3168 cnic_free_id_tbl(&cp
->csk_port_tbl
);
3171 static int cnic_cm_alloc_mem(struct cnic_dev
*dev
)
3173 struct cnic_local
*cp
= dev
->cnic_priv
;
3175 cp
->csk_tbl
= kzalloc(sizeof(struct cnic_sock
) * MAX_CM_SK_TBL_SZ
,
3180 if (cnic_init_id_tbl(&cp
->csk_port_tbl
, CNIC_LOCAL_PORT_RANGE
,
3181 CNIC_LOCAL_PORT_MIN
)) {
3182 cnic_cm_free_mem(dev
);
3188 static int cnic_ready_to_close(struct cnic_sock
*csk
, u32 opcode
)
3190 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE
, &csk
->flags
)) {
3191 /* Unsolicited RESET_COMP or RESET_RECEIVED */
3192 opcode
= L4_KCQE_OPCODE_VALUE_RESET_RECEIVED
;
3193 csk
->state
= opcode
;
3196 /* 1. If event opcode matches the expected event in csk->state
3197 * 2. If the expected event is CLOSE_COMP, we accept any event
3198 * 3. If the expected event is 0, meaning the connection was never
3199 * never established, we accept the opcode from cm_abort.
3201 if (opcode
== csk
->state
|| csk
->state
== 0 ||
3202 csk
->state
== L4_KCQE_OPCODE_VALUE_CLOSE_COMP
) {
3203 if (!test_and_set_bit(SK_F_CLOSING
, &csk
->flags
)) {
3204 if (csk
->state
== 0)
3205 csk
->state
= opcode
;
3212 static void cnic_close_bnx2_conn(struct cnic_sock
*csk
, u32 opcode
)
3214 struct cnic_dev
*dev
= csk
->dev
;
3215 struct cnic_local
*cp
= dev
->cnic_priv
;
3217 if (opcode
== L4_KCQE_OPCODE_VALUE_RESET_RECEIVED
) {
3218 cnic_cm_upcall(cp
, csk
, opcode
);
3222 clear_bit(SK_F_CONNECT_START
, &csk
->flags
);
3223 cnic_close_conn(csk
);
3224 csk
->state
= opcode
;
3225 cnic_cm_upcall(cp
, csk
, opcode
);
3228 static void cnic_cm_stop_bnx2_hw(struct cnic_dev
*dev
)
3232 static int cnic_cm_init_bnx2_hw(struct cnic_dev
*dev
)
3236 get_random_bytes(&seed
, 4);
3237 cnic_ctx_wr(dev
, 45, 0, seed
);
3241 static void cnic_close_bnx2x_conn(struct cnic_sock
*csk
, u32 opcode
)
3243 struct cnic_dev
*dev
= csk
->dev
;
3244 struct cnic_local
*cp
= dev
->cnic_priv
;
3245 struct cnic_context
*ctx
= &cp
->ctx_tbl
[csk
->l5_cid
];
3246 union l5cm_specific_data l5_data
;
3248 int close_complete
= 0;
3251 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED
:
3252 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP
:
3253 case L4_KCQE_OPCODE_VALUE_RESET_COMP
:
3254 if (cnic_ready_to_close(csk
, opcode
)) {
3255 if (test_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
))
3256 cmd
= L5CM_RAMROD_CMD_ID_SEARCHER_DELETE
;
3261 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE
:
3262 cmd
= L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD
;
3264 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD
:
3269 memset(&l5_data
, 0, sizeof(l5_data
));
3271 cnic_submit_kwqe_16(dev
, cmd
, csk
->cid
, ISCSI_CONNECTION_TYPE
,
3273 } else if (close_complete
) {
3274 ctx
->timestamp
= jiffies
;
3275 cnic_close_conn(csk
);
3276 cnic_cm_upcall(cp
, csk
, csk
->state
);
3280 static void cnic_cm_stop_bnx2x_hw(struct cnic_dev
*dev
)
3284 static int cnic_cm_init_bnx2x_hw(struct cnic_dev
*dev
)
3286 struct cnic_local
*cp
= dev
->cnic_priv
;
3287 int func
= CNIC_FUNC(cp
);
3289 cnic_init_bnx2x_mac(dev
);
3290 cnic_bnx2x_set_tcp_timestamp(dev
, 1);
3292 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+
3293 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(func
), 0);
3295 CNIC_WR(dev
, BAR_XSTRORM_INTMEM
+
3296 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_ENABLED_OFFSET(func
), 1);
3297 CNIC_WR(dev
, BAR_XSTRORM_INTMEM
+
3298 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_MAX_COUNT_OFFSET(func
),
3301 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
3302 XSTORM_ISCSI_TCP_VARS_TTL_OFFSET(func
), DEF_TTL
);
3303 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
3304 XSTORM_ISCSI_TCP_VARS_TOS_OFFSET(func
), DEF_TOS
);
3305 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
3306 XSTORM_ISCSI_TCP_VARS_ADV_WND_SCL_OFFSET(func
), 2);
3307 CNIC_WR(dev
, BAR_XSTRORM_INTMEM
+
3308 XSTORM_TCP_TX_SWS_TIMER_VAL_OFFSET(func
), DEF_SWS_TIMER
);
3310 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+ TSTORM_TCP_MAX_CWND_OFFSET(func
),
3315 static int cnic_cm_open(struct cnic_dev
*dev
)
3317 struct cnic_local
*cp
= dev
->cnic_priv
;
3320 err
= cnic_cm_alloc_mem(dev
);
3324 err
= cp
->start_cm(dev
);
3329 dev
->cm_create
= cnic_cm_create
;
3330 dev
->cm_destroy
= cnic_cm_destroy
;
3331 dev
->cm_connect
= cnic_cm_connect
;
3332 dev
->cm_abort
= cnic_cm_abort
;
3333 dev
->cm_close
= cnic_cm_close
;
3334 dev
->cm_select_dev
= cnic_cm_select_dev
;
3336 cp
->ulp_handle
[CNIC_ULP_L4
] = dev
;
3337 rcu_assign_pointer(cp
->ulp_ops
[CNIC_ULP_L4
], &cm_ulp_ops
);
3341 cnic_cm_free_mem(dev
);
3345 static int cnic_cm_shutdown(struct cnic_dev
*dev
)
3347 struct cnic_local
*cp
= dev
->cnic_priv
;
3355 for (i
= 0; i
< MAX_CM_SK_TBL_SZ
; i
++) {
3356 struct cnic_sock
*csk
= &cp
->csk_tbl
[i
];
3358 clear_bit(SK_F_INUSE
, &csk
->flags
);
3359 cnic_cm_cleanup(csk
);
3361 cnic_cm_free_mem(dev
);
3366 static void cnic_init_context(struct cnic_dev
*dev
, u32 cid
)
3371 cid_addr
= GET_CID_ADDR(cid
);
3373 for (i
= 0; i
< CTX_SIZE
; i
+= 4)
3374 cnic_ctx_wr(dev
, cid_addr
, i
, 0);
3377 static int cnic_setup_5709_context(struct cnic_dev
*dev
, int valid
)
3379 struct cnic_local
*cp
= dev
->cnic_priv
;
3381 u32 valid_bit
= valid
? BNX2_CTX_HOST_PAGE_TBL_DATA0_VALID
: 0;
3383 if (CHIP_NUM(cp
) != CHIP_NUM_5709
)
3386 for (i
= 0; i
< cp
->ctx_blks
; i
++) {
3388 u32 idx
= cp
->ctx_arr
[i
].cid
/ cp
->cids_per_blk
;
3391 memset(cp
->ctx_arr
[i
].ctx
, 0, BCM_PAGE_SIZE
);
3393 CNIC_WR(dev
, BNX2_CTX_HOST_PAGE_TBL_DATA0
,
3394 (cp
->ctx_arr
[i
].mapping
& 0xffffffff) | valid_bit
);
3395 CNIC_WR(dev
, BNX2_CTX_HOST_PAGE_TBL_DATA1
,
3396 (u64
) cp
->ctx_arr
[i
].mapping
>> 32);
3397 CNIC_WR(dev
, BNX2_CTX_HOST_PAGE_TBL_CTRL
, idx
|
3398 BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ
);
3399 for (j
= 0; j
< 10; j
++) {
3401 val
= CNIC_RD(dev
, BNX2_CTX_HOST_PAGE_TBL_CTRL
);
3402 if (!(val
& BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ
))
3406 if (val
& BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ
) {
3414 static void cnic_free_irq(struct cnic_dev
*dev
)
3416 struct cnic_local
*cp
= dev
->cnic_priv
;
3417 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
3419 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
3420 cp
->disable_int_sync(dev
);
3421 tasklet_disable(&cp
->cnic_irq_task
);
3422 free_irq(ethdev
->irq_arr
[0].vector
, dev
);
3426 static int cnic_init_bnx2_irq(struct cnic_dev
*dev
)
3428 struct cnic_local
*cp
= dev
->cnic_priv
;
3429 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
3431 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
3433 int sblk_num
= cp
->status_blk_num
;
3434 u32 base
= ((sblk_num
- 1) * BNX2_HC_SB_CONFIG_SIZE
) +
3435 BNX2_HC_SB_CONFIG_1
;
3437 CNIC_WR(dev
, base
, BNX2_HC_SB_CONFIG_1_ONE_SHOT
);
3439 CNIC_WR(dev
, base
+ BNX2_HC_COMP_PROD_TRIP_OFF
, (2 << 16) | 8);
3440 CNIC_WR(dev
, base
+ BNX2_HC_COM_TICKS_OFF
, (64 << 16) | 220);
3441 CNIC_WR(dev
, base
+ BNX2_HC_CMD_TICKS_OFF
, (64 << 16) | 220);
3443 cp
->last_status_idx
= cp
->status_blk
.bnx2
->status_idx
;
3444 tasklet_init(&cp
->cnic_irq_task
, cnic_service_bnx2_msix
,
3445 (unsigned long) dev
);
3446 err
= request_irq(ethdev
->irq_arr
[0].vector
, cnic_irq
, 0,
3449 tasklet_disable(&cp
->cnic_irq_task
);
3452 while (cp
->status_blk
.bnx2
->status_completion_producer_index
&&
3454 CNIC_WR(dev
, BNX2_HC_COALESCE_NOW
,
3455 1 << (11 + sblk_num
));
3460 if (cp
->status_blk
.bnx2
->status_completion_producer_index
) {
3466 struct status_block
*sblk
= cp
->status_blk
.gen
;
3467 u32 hc_cmd
= CNIC_RD(dev
, BNX2_HC_COMMAND
);
3470 while (sblk
->status_completion_producer_index
&& i
< 10) {
3471 CNIC_WR(dev
, BNX2_HC_COMMAND
,
3472 hc_cmd
| BNX2_HC_COMMAND_COAL_NOW_WO_INT
);
3477 if (sblk
->status_completion_producer_index
)
3484 netdev_err(dev
->netdev
, "KCQ index not resetting to 0\n");
3488 static void cnic_enable_bnx2_int(struct cnic_dev
*dev
)
3490 struct cnic_local
*cp
= dev
->cnic_priv
;
3491 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
3493 if (!(ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
))
3496 CNIC_WR(dev
, BNX2_PCICFG_INT_ACK_CMD
, cp
->int_num
|
3497 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID
| cp
->last_status_idx
);
3500 static void cnic_disable_bnx2_int_sync(struct cnic_dev
*dev
)
3502 struct cnic_local
*cp
= dev
->cnic_priv
;
3503 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
3505 if (!(ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
))
3508 CNIC_WR(dev
, BNX2_PCICFG_INT_ACK_CMD
, cp
->int_num
|
3509 BNX2_PCICFG_INT_ACK_CMD_MASK_INT
);
3510 CNIC_RD(dev
, BNX2_PCICFG_INT_ACK_CMD
);
3511 synchronize_irq(ethdev
->irq_arr
[0].vector
);
3514 static void cnic_init_bnx2_tx_ring(struct cnic_dev
*dev
)
3516 struct cnic_local
*cp
= dev
->cnic_priv
;
3517 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
3518 u32 cid_addr
, tx_cid
, sb_id
;
3519 u32 val
, offset0
, offset1
, offset2
, offset3
;
3523 struct status_block
*s_blk
= cp
->status_blk
.gen
;
3525 sb_id
= cp
->status_blk_num
;
3527 cp
->tx_cons_ptr
= &s_blk
->status_tx_quick_consumer_index2
;
3528 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
3529 struct status_block_msix
*sblk
= cp
->status_blk
.bnx2
;
3531 tx_cid
= TX_TSS_CID
+ sb_id
- 1;
3532 CNIC_WR(dev
, BNX2_TSCH_TSS_CFG
, (sb_id
<< 24) |
3534 cp
->tx_cons_ptr
= &sblk
->status_tx_quick_consumer_index
;
3536 cp
->tx_cons
= *cp
->tx_cons_ptr
;
3538 cid_addr
= GET_CID_ADDR(tx_cid
);
3539 if (CHIP_NUM(cp
) == CHIP_NUM_5709
) {
3540 u32 cid_addr2
= GET_CID_ADDR(tx_cid
+ 4) + 0x40;
3542 for (i
= 0; i
< PHY_CTX_SIZE
; i
+= 4)
3543 cnic_ctx_wr(dev
, cid_addr2
, i
, 0);
3545 offset0
= BNX2_L2CTX_TYPE_XI
;
3546 offset1
= BNX2_L2CTX_CMD_TYPE_XI
;
3547 offset2
= BNX2_L2CTX_TBDR_BHADDR_HI_XI
;
3548 offset3
= BNX2_L2CTX_TBDR_BHADDR_LO_XI
;
3550 cnic_init_context(dev
, tx_cid
);
3551 cnic_init_context(dev
, tx_cid
+ 1);
3553 offset0
= BNX2_L2CTX_TYPE
;
3554 offset1
= BNX2_L2CTX_CMD_TYPE
;
3555 offset2
= BNX2_L2CTX_TBDR_BHADDR_HI
;
3556 offset3
= BNX2_L2CTX_TBDR_BHADDR_LO
;
3558 val
= BNX2_L2CTX_TYPE_TYPE_L2
| BNX2_L2CTX_TYPE_SIZE_L2
;
3559 cnic_ctx_wr(dev
, cid_addr
, offset0
, val
);
3561 val
= BNX2_L2CTX_CMD_TYPE_TYPE_L2
| (8 << 16);
3562 cnic_ctx_wr(dev
, cid_addr
, offset1
, val
);
3564 txbd
= (struct tx_bd
*) cp
->l2_ring
;
3566 buf_map
= cp
->l2_buf_map
;
3567 for (i
= 0; i
< MAX_TX_DESC_CNT
; i
++, txbd
++) {
3568 txbd
->tx_bd_haddr_hi
= (u64
) buf_map
>> 32;
3569 txbd
->tx_bd_haddr_lo
= (u64
) buf_map
& 0xffffffff;
3571 val
= (u64
) cp
->l2_ring_map
>> 32;
3572 cnic_ctx_wr(dev
, cid_addr
, offset2
, val
);
3573 txbd
->tx_bd_haddr_hi
= val
;
3575 val
= (u64
) cp
->l2_ring_map
& 0xffffffff;
3576 cnic_ctx_wr(dev
, cid_addr
, offset3
, val
);
3577 txbd
->tx_bd_haddr_lo
= val
;
3580 static void cnic_init_bnx2_rx_ring(struct cnic_dev
*dev
)
3582 struct cnic_local
*cp
= dev
->cnic_priv
;
3583 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
3584 u32 cid_addr
, sb_id
, val
, coal_reg
, coal_val
;
3587 struct status_block
*s_blk
= cp
->status_blk
.gen
;
3589 sb_id
= cp
->status_blk_num
;
3590 cnic_init_context(dev
, 2);
3591 cp
->rx_cons_ptr
= &s_blk
->status_rx_quick_consumer_index2
;
3592 coal_reg
= BNX2_HC_COMMAND
;
3593 coal_val
= CNIC_RD(dev
, coal_reg
);
3594 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
3595 struct status_block_msix
*sblk
= cp
->status_blk
.bnx2
;
3597 cp
->rx_cons_ptr
= &sblk
->status_rx_quick_consumer_index
;
3598 coal_reg
= BNX2_HC_COALESCE_NOW
;
3599 coal_val
= 1 << (11 + sb_id
);
3602 while (!(*cp
->rx_cons_ptr
!= 0) && i
< 10) {
3603 CNIC_WR(dev
, coal_reg
, coal_val
);
3608 cp
->rx_cons
= *cp
->rx_cons_ptr
;
3610 cid_addr
= GET_CID_ADDR(2);
3611 val
= BNX2_L2CTX_CTX_TYPE_CTX_BD_CHN_TYPE_VALUE
|
3612 BNX2_L2CTX_CTX_TYPE_SIZE_L2
| (0x02 << 8);
3613 cnic_ctx_wr(dev
, cid_addr
, BNX2_L2CTX_CTX_TYPE
, val
);
3616 val
= 2 << BNX2_L2CTX_L2_STATUSB_NUM_SHIFT
;
3618 val
= BNX2_L2CTX_L2_STATUSB_NUM(sb_id
);
3619 cnic_ctx_wr(dev
, cid_addr
, BNX2_L2CTX_HOST_BDIDX
, val
);
3621 rxbd
= (struct rx_bd
*) (cp
->l2_ring
+ BCM_PAGE_SIZE
);
3622 for (i
= 0; i
< MAX_RX_DESC_CNT
; i
++, rxbd
++) {
3624 int n
= (i
% cp
->l2_rx_ring_size
) + 1;
3626 buf_map
= cp
->l2_buf_map
+ (n
* cp
->l2_single_buf_size
);
3627 rxbd
->rx_bd_len
= cp
->l2_single_buf_size
;
3628 rxbd
->rx_bd_flags
= RX_BD_FLAGS_START
| RX_BD_FLAGS_END
;
3629 rxbd
->rx_bd_haddr_hi
= (u64
) buf_map
>> 32;
3630 rxbd
->rx_bd_haddr_lo
= (u64
) buf_map
& 0xffffffff;
3632 val
= (u64
) (cp
->l2_ring_map
+ BCM_PAGE_SIZE
) >> 32;
3633 cnic_ctx_wr(dev
, cid_addr
, BNX2_L2CTX_NX_BDHADDR_HI
, val
);
3634 rxbd
->rx_bd_haddr_hi
= val
;
3636 val
= (u64
) (cp
->l2_ring_map
+ BCM_PAGE_SIZE
) & 0xffffffff;
3637 cnic_ctx_wr(dev
, cid_addr
, BNX2_L2CTX_NX_BDHADDR_LO
, val
);
3638 rxbd
->rx_bd_haddr_lo
= val
;
3640 val
= cnic_reg_rd_ind(dev
, BNX2_RXP_SCRATCH_RXP_FLOOD
);
3641 cnic_reg_wr_ind(dev
, BNX2_RXP_SCRATCH_RXP_FLOOD
, val
| (1 << 2));
3644 static void cnic_shutdown_bnx2_rx_ring(struct cnic_dev
*dev
)
3646 struct kwqe
*wqes
[1], l2kwqe
;
3648 memset(&l2kwqe
, 0, sizeof(l2kwqe
));
3650 l2kwqe
.kwqe_op_flag
= (L2_LAYER_CODE
<< KWQE_FLAGS_LAYER_SHIFT
) |
3651 (L2_KWQE_OPCODE_VALUE_FLUSH
<<
3652 KWQE_OPCODE_SHIFT
) | 2;
3653 dev
->submit_kwqes(dev
, wqes
, 1);
3656 static void cnic_set_bnx2_mac(struct cnic_dev
*dev
)
3658 struct cnic_local
*cp
= dev
->cnic_priv
;
3661 val
= cp
->func
<< 2;
3663 cp
->shmem_base
= cnic_reg_rd_ind(dev
, BNX2_SHM_HDR_ADDR_0
+ val
);
3665 val
= cnic_reg_rd_ind(dev
, cp
->shmem_base
+
3666 BNX2_PORT_HW_CFG_ISCSI_MAC_UPPER
);
3667 dev
->mac_addr
[0] = (u8
) (val
>> 8);
3668 dev
->mac_addr
[1] = (u8
) val
;
3670 CNIC_WR(dev
, BNX2_EMAC_MAC_MATCH4
, val
);
3672 val
= cnic_reg_rd_ind(dev
, cp
->shmem_base
+
3673 BNX2_PORT_HW_CFG_ISCSI_MAC_LOWER
);
3674 dev
->mac_addr
[2] = (u8
) (val
>> 24);
3675 dev
->mac_addr
[3] = (u8
) (val
>> 16);
3676 dev
->mac_addr
[4] = (u8
) (val
>> 8);
3677 dev
->mac_addr
[5] = (u8
) val
;
3679 CNIC_WR(dev
, BNX2_EMAC_MAC_MATCH5
, val
);
3681 val
= 4 | BNX2_RPM_SORT_USER2_BC_EN
;
3682 if (CHIP_NUM(cp
) != CHIP_NUM_5709
)
3683 val
|= BNX2_RPM_SORT_USER2_PROM_VLAN
;
3685 CNIC_WR(dev
, BNX2_RPM_SORT_USER2
, 0x0);
3686 CNIC_WR(dev
, BNX2_RPM_SORT_USER2
, val
);
3687 CNIC_WR(dev
, BNX2_RPM_SORT_USER2
, val
| BNX2_RPM_SORT_USER2_ENA
);
3690 static int cnic_start_bnx2_hw(struct cnic_dev
*dev
)
3692 struct cnic_local
*cp
= dev
->cnic_priv
;
3693 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
3694 struct status_block
*sblk
= cp
->status_blk
.gen
;
3695 u32 val
, kcq_cid_addr
, kwq_cid_addr
;
3698 cnic_set_bnx2_mac(dev
);
3700 val
= CNIC_RD(dev
, BNX2_MQ_CONFIG
);
3701 val
&= ~BNX2_MQ_CONFIG_KNL_BYP_BLK_SIZE
;
3702 if (BCM_PAGE_BITS
> 12)
3703 val
|= (12 - 8) << 4;
3705 val
|= (BCM_PAGE_BITS
- 8) << 4;
3707 CNIC_WR(dev
, BNX2_MQ_CONFIG
, val
);
3709 CNIC_WR(dev
, BNX2_HC_COMP_PROD_TRIP
, (2 << 16) | 8);
3710 CNIC_WR(dev
, BNX2_HC_COM_TICKS
, (64 << 16) | 220);
3711 CNIC_WR(dev
, BNX2_HC_CMD_TICKS
, (64 << 16) | 220);
3713 err
= cnic_setup_5709_context(dev
, 1);
3717 cnic_init_context(dev
, KWQ_CID
);
3718 cnic_init_context(dev
, KCQ_CID
);
3720 kwq_cid_addr
= GET_CID_ADDR(KWQ_CID
);
3721 cp
->kwq_io_addr
= MB_GET_CID_ADDR(KWQ_CID
) + L5_KRNLQ_HOST_QIDX
;
3723 cp
->max_kwq_idx
= MAX_KWQ_IDX
;
3724 cp
->kwq_prod_idx
= 0;
3725 cp
->kwq_con_idx
= 0;
3726 set_bit(CNIC_LCL_FL_KWQ_INIT
, &cp
->cnic_local_flags
);
3728 if (CHIP_NUM(cp
) == CHIP_NUM_5706
|| CHIP_NUM(cp
) == CHIP_NUM_5708
)
3729 cp
->kwq_con_idx_ptr
= &sblk
->status_rx_quick_consumer_index15
;
3731 cp
->kwq_con_idx_ptr
= &sblk
->status_cmd_consumer_index
;
3733 /* Initialize the kernel work queue context. */
3734 val
= KRNLQ_TYPE_TYPE_KRNLQ
| KRNLQ_SIZE_TYPE_SIZE
|
3735 (BCM_PAGE_BITS
- 8) | KRNLQ_FLAGS_QE_SELF_SEQ
;
3736 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_TYPE
, val
);
3738 val
= (BCM_PAGE_SIZE
/ sizeof(struct kwqe
) - 1) << 16;
3739 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_QE_SELF_SEQ_MAX
, val
);
3741 val
= ((BCM_PAGE_SIZE
/ sizeof(struct kwqe
)) << 16) | KWQ_PAGE_CNT
;
3742 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_PGTBL_NPAGES
, val
);
3744 val
= (u32
) ((u64
) cp
->kwq_info
.pgtbl_map
>> 32);
3745 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_PGTBL_HADDR_HI
, val
);
3747 val
= (u32
) cp
->kwq_info
.pgtbl_map
;
3748 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_PGTBL_HADDR_LO
, val
);
3750 kcq_cid_addr
= GET_CID_ADDR(KCQ_CID
);
3751 cp
->kcq1
.io_addr
= MB_GET_CID_ADDR(KCQ_CID
) + L5_KRNLQ_HOST_QIDX
;
3753 cp
->kcq1
.sw_prod_idx
= 0;
3754 cp
->kcq1
.hw_prod_idx_ptr
=
3755 (u16
*) &sblk
->status_completion_producer_index
;
3757 cp
->kcq1
.status_idx_ptr
= (u16
*) &sblk
->status_idx
;
3759 /* Initialize the kernel complete queue context. */
3760 val
= KRNLQ_TYPE_TYPE_KRNLQ
| KRNLQ_SIZE_TYPE_SIZE
|
3761 (BCM_PAGE_BITS
- 8) | KRNLQ_FLAGS_QE_SELF_SEQ
;
3762 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_TYPE
, val
);
3764 val
= (BCM_PAGE_SIZE
/ sizeof(struct kcqe
) - 1) << 16;
3765 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_QE_SELF_SEQ_MAX
, val
);
3767 val
= ((BCM_PAGE_SIZE
/ sizeof(struct kcqe
)) << 16) | KCQ_PAGE_CNT
;
3768 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_PGTBL_NPAGES
, val
);
3770 val
= (u32
) ((u64
) cp
->kcq1
.dma
.pgtbl_map
>> 32);
3771 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_PGTBL_HADDR_HI
, val
);
3773 val
= (u32
) cp
->kcq1
.dma
.pgtbl_map
;
3774 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_PGTBL_HADDR_LO
, val
);
3777 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
3778 struct status_block_msix
*msblk
= cp
->status_blk
.bnx2
;
3779 u32 sb_id
= cp
->status_blk_num
;
3780 u32 sb
= BNX2_L2CTX_L5_STATUSB_NUM(sb_id
);
3782 cp
->kcq1
.hw_prod_idx_ptr
=
3783 (u16
*) &msblk
->status_completion_producer_index
;
3784 cp
->kcq1
.status_idx_ptr
= (u16
*) &msblk
->status_idx
;
3785 cp
->kwq_con_idx_ptr
= (u16
*) &msblk
->status_cmd_consumer_index
;
3786 cp
->int_num
= sb_id
<< BNX2_PCICFG_INT_ACK_CMD_INT_NUM_SHIFT
;
3787 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_HOST_QIDX
, sb
);
3788 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_HOST_QIDX
, sb
);
3791 /* Enable Commnad Scheduler notification when we write to the
3792 * host producer index of the kernel contexts. */
3793 CNIC_WR(dev
, BNX2_MQ_KNL_CMD_MASK1
, 2);
3795 /* Enable Command Scheduler notification when we write to either
3796 * the Send Queue or Receive Queue producer indexes of the kernel
3797 * bypass contexts. */
3798 CNIC_WR(dev
, BNX2_MQ_KNL_BYP_CMD_MASK1
, 7);
3799 CNIC_WR(dev
, BNX2_MQ_KNL_BYP_WRITE_MASK1
, 7);
3801 /* Notify COM when the driver post an application buffer. */
3802 CNIC_WR(dev
, BNX2_MQ_KNL_RX_V2P_MASK2
, 0x2000);
3804 /* Set the CP and COM doorbells. These two processors polls the
3805 * doorbell for a non zero value before running. This must be done
3806 * after setting up the kernel queue contexts. */
3807 cnic_reg_wr_ind(dev
, BNX2_CP_SCRATCH
+ 0x20, 1);
3808 cnic_reg_wr_ind(dev
, BNX2_COM_SCRATCH
+ 0x20, 1);
3810 cnic_init_bnx2_tx_ring(dev
);
3811 cnic_init_bnx2_rx_ring(dev
);
3813 err
= cnic_init_bnx2_irq(dev
);
3815 netdev_err(dev
->netdev
, "cnic_init_irq failed\n");
3816 cnic_reg_wr_ind(dev
, BNX2_CP_SCRATCH
+ 0x20, 0);
3817 cnic_reg_wr_ind(dev
, BNX2_COM_SCRATCH
+ 0x20, 0);
3824 static void cnic_setup_bnx2x_context(struct cnic_dev
*dev
)
3826 struct cnic_local
*cp
= dev
->cnic_priv
;
3827 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
3828 u32 start_offset
= ethdev
->ctx_tbl_offset
;
3831 for (i
= 0; i
< cp
->ctx_blks
; i
++) {
3832 struct cnic_ctx
*ctx
= &cp
->ctx_arr
[i
];
3833 dma_addr_t map
= ctx
->mapping
;
3835 if (cp
->ctx_align
) {
3836 unsigned long mask
= cp
->ctx_align
- 1;
3838 map
= (map
+ mask
) & ~mask
;
3841 cnic_ctx_tbl_wr(dev
, start_offset
+ i
, map
);
3845 static int cnic_init_bnx2x_irq(struct cnic_dev
*dev
)
3847 struct cnic_local
*cp
= dev
->cnic_priv
;
3848 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
3851 tasklet_init(&cp
->cnic_irq_task
, cnic_service_bnx2x_bh
,
3852 (unsigned long) dev
);
3853 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
3854 err
= request_irq(ethdev
->irq_arr
[0].vector
, cnic_irq
, 0,
3857 tasklet_disable(&cp
->cnic_irq_task
);
3862 static void cnic_enable_bnx2x_int(struct cnic_dev
*dev
)
3864 struct cnic_local
*cp
= dev
->cnic_priv
;
3865 u8 sb_id
= cp
->status_blk_num
;
3866 int port
= CNIC_PORT(cp
);
3868 CNIC_WR8(dev
, BAR_CSTRORM_INTMEM
+
3869 CSTORM_SB_HC_TIMEOUT_C_OFFSET(port
, sb_id
,
3870 HC_INDEX_C_ISCSI_EQ_CONS
),
3872 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+
3873 CSTORM_SB_HC_DISABLE_C_OFFSET(port
, sb_id
,
3874 HC_INDEX_C_ISCSI_EQ_CONS
), 0);
3877 static void cnic_disable_bnx2x_int_sync(struct cnic_dev
*dev
)
3881 static void cnic_init_bnx2x_tx_ring(struct cnic_dev
*dev
)
3883 struct cnic_local
*cp
= dev
->cnic_priv
;
3884 union eth_tx_bd_types
*txbd
= (union eth_tx_bd_types
*) cp
->l2_ring
;
3885 struct eth_context
*context
;
3886 struct regpair context_addr
;
3888 int func
= CNIC_FUNC(cp
);
3889 int port
= CNIC_PORT(cp
);
3891 int cli
= BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp
));
3894 memset(txbd
, 0, BCM_PAGE_SIZE
);
3896 buf_map
= cp
->l2_buf_map
;
3897 for (i
= 0; i
< MAX_TX_DESC_CNT
; i
+= 3, txbd
+= 3) {
3898 struct eth_tx_start_bd
*start_bd
= &txbd
->start_bd
;
3899 struct eth_tx_bd
*reg_bd
= &((txbd
+ 2)->reg_bd
);
3901 start_bd
->addr_hi
= cpu_to_le32((u64
) buf_map
>> 32);
3902 start_bd
->addr_lo
= cpu_to_le32(buf_map
& 0xffffffff);
3903 reg_bd
->addr_hi
= start_bd
->addr_hi
;
3904 reg_bd
->addr_lo
= start_bd
->addr_lo
+ 0x10;
3905 start_bd
->nbytes
= cpu_to_le16(0x10);
3906 start_bd
->nbd
= cpu_to_le16(3);
3907 start_bd
->bd_flags
.as_bitfield
= ETH_TX_BD_FLAGS_START_BD
;
3908 start_bd
->general_data
= (UNICAST_ADDRESS
<<
3909 ETH_TX_START_BD_ETH_ADDR_TYPE_SHIFT
);
3910 start_bd
->general_data
|= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT
);
3913 context
= cnic_get_bnx2x_ctx(dev
, BNX2X_ISCSI_L2_CID
, 1, &context_addr
);
3915 val
= (u64
) cp
->l2_ring_map
>> 32;
3916 txbd
->next_bd
.addr_hi
= cpu_to_le32(val
);
3918 context
->xstorm_st_context
.tx_bd_page_base_hi
= val
;
3920 val
= (u64
) cp
->l2_ring_map
& 0xffffffff;
3921 txbd
->next_bd
.addr_lo
= cpu_to_le32(val
);
3923 context
->xstorm_st_context
.tx_bd_page_base_lo
= val
;
3925 context
->cstorm_st_context
.sb_index_number
=
3926 HC_INDEX_DEF_C_ETH_ISCSI_CQ_CONS
;
3927 context
->cstorm_st_context
.status_block_id
= BNX2X_DEF_SB_ID
;
3929 if (cli
< MAX_X_STAT_COUNTER_ID
)
3930 context
->xstorm_st_context
.statistics_data
= cli
|
3931 XSTORM_ETH_ST_CONTEXT_STATISTICS_ENABLE
;
3933 context
->xstorm_ag_context
.cdu_reserved
=
3934 CDU_RSRVD_VALUE_TYPE_A(BNX2X_HW_CID(BNX2X_ISCSI_L2_CID
, func
),
3935 CDU_REGION_NUMBER_XCM_AG
,
3936 ETH_CONNECTION_TYPE
);
3938 /* reset xstorm per client statistics */
3939 if (cli
< MAX_X_STAT_COUNTER_ID
) {
3940 val
= BAR_XSTRORM_INTMEM
+
3941 XSTORM_PER_COUNTER_ID_STATS_OFFSET(port
, cli
);
3942 for (i
= 0; i
< sizeof(struct xstorm_per_client_stats
) / 4; i
++)
3943 CNIC_WR(dev
, val
+ i
* 4, 0);
3947 &cp
->bnx2x_def_status_blk
->c_def_status_block
.index_values
[
3948 HC_INDEX_DEF_C_ETH_ISCSI_CQ_CONS
];
3951 static void cnic_init_bnx2x_rx_ring(struct cnic_dev
*dev
)
3953 struct cnic_local
*cp
= dev
->cnic_priv
;
3954 struct eth_rx_bd
*rxbd
= (struct eth_rx_bd
*) (cp
->l2_ring
+
3956 struct eth_rx_cqe_next_page
*rxcqe
= (struct eth_rx_cqe_next_page
*)
3957 (cp
->l2_ring
+ (2 * BCM_PAGE_SIZE
));
3958 struct eth_context
*context
;
3959 struct regpair context_addr
;
3961 int port
= CNIC_PORT(cp
);
3962 int func
= CNIC_FUNC(cp
);
3963 int cli
= BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp
));
3965 struct tstorm_eth_client_config tstorm_client
= {0};
3967 for (i
= 0; i
< BNX2X_MAX_RX_DESC_CNT
; i
++, rxbd
++) {
3969 int n
= (i
% cp
->l2_rx_ring_size
) + 1;
3971 buf_map
= cp
->l2_buf_map
+ (n
* cp
->l2_single_buf_size
);
3972 rxbd
->addr_hi
= cpu_to_le32((u64
) buf_map
>> 32);
3973 rxbd
->addr_lo
= cpu_to_le32(buf_map
& 0xffffffff);
3975 context
= cnic_get_bnx2x_ctx(dev
, BNX2X_ISCSI_L2_CID
, 0, &context_addr
);
3977 val
= (u64
) (cp
->l2_ring_map
+ BCM_PAGE_SIZE
) >> 32;
3978 rxbd
->addr_hi
= cpu_to_le32(val
);
3980 context
->ustorm_st_context
.common
.bd_page_base_hi
= val
;
3982 val
= (u64
) (cp
->l2_ring_map
+ BCM_PAGE_SIZE
) & 0xffffffff;
3983 rxbd
->addr_lo
= cpu_to_le32(val
);
3985 context
->ustorm_st_context
.common
.bd_page_base_lo
= val
;
3987 context
->ustorm_st_context
.common
.sb_index_numbers
=
3988 BNX2X_ISCSI_RX_SB_INDEX_NUM
;
3989 context
->ustorm_st_context
.common
.clientId
= cli
;
3990 context
->ustorm_st_context
.common
.status_block_id
= BNX2X_DEF_SB_ID
;
3991 if (cli
< MAX_U_STAT_COUNTER_ID
) {
3992 context
->ustorm_st_context
.common
.flags
=
3993 USTORM_ETH_ST_CONTEXT_CONFIG_ENABLE_STATISTICS
;
3994 context
->ustorm_st_context
.common
.statistics_counter_id
= cli
;
3996 context
->ustorm_st_context
.common
.mc_alignment_log_size
= 0;
3997 context
->ustorm_st_context
.common
.bd_buff_size
=
3998 cp
->l2_single_buf_size
;
4000 context
->ustorm_ag_context
.cdu_usage
=
4001 CDU_RSRVD_VALUE_TYPE_A(BNX2X_HW_CID(BNX2X_ISCSI_L2_CID
, func
),
4002 CDU_REGION_NUMBER_UCM_AG
,
4003 ETH_CONNECTION_TYPE
);
4005 rxcqe
+= BNX2X_MAX_RCQ_DESC_CNT
;
4006 val
= (u64
) (cp
->l2_ring_map
+ (2 * BCM_PAGE_SIZE
)) >> 32;
4007 rxcqe
->addr_hi
= cpu_to_le32(val
);
4009 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
4010 USTORM_CQE_PAGE_BASE_OFFSET(port
, cli
) + 4, val
);
4012 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
4013 USTORM_CQE_PAGE_NEXT_OFFSET(port
, cli
) + 4, val
);
4015 val
= (u64
) (cp
->l2_ring_map
+ (2 * BCM_PAGE_SIZE
)) & 0xffffffff;
4016 rxcqe
->addr_lo
= cpu_to_le32(val
);
4018 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
4019 USTORM_CQE_PAGE_BASE_OFFSET(port
, cli
), val
);
4021 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
4022 USTORM_CQE_PAGE_NEXT_OFFSET(port
, cli
), val
);
4024 /* client tstorm info */
4025 tstorm_client
.mtu
= cp
->l2_single_buf_size
- 14;
4026 tstorm_client
.config_flags
= TSTORM_ETH_CLIENT_CONFIG_E1HOV_REM_ENABLE
;
4028 if (cli
< MAX_T_STAT_COUNTER_ID
) {
4029 tstorm_client
.config_flags
|=
4030 TSTORM_ETH_CLIENT_CONFIG_STATSITICS_ENABLE
;
4031 tstorm_client
.statistics_counter_id
= cli
;
4034 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+
4035 TSTORM_CLIENT_CONFIG_OFFSET(port
, cli
),
4036 ((u32
*)&tstorm_client
)[0]);
4037 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+
4038 TSTORM_CLIENT_CONFIG_OFFSET(port
, cli
) + 4,
4039 ((u32
*)&tstorm_client
)[1]);
4041 /* reset tstorm per client statistics */
4042 if (cli
< MAX_T_STAT_COUNTER_ID
) {
4044 val
= BAR_TSTRORM_INTMEM
+
4045 TSTORM_PER_COUNTER_ID_STATS_OFFSET(port
, cli
);
4046 for (i
= 0; i
< sizeof(struct tstorm_per_client_stats
) / 4; i
++)
4047 CNIC_WR(dev
, val
+ i
* 4, 0);
4050 /* reset ustorm per client statistics */
4051 if (cli
< MAX_U_STAT_COUNTER_ID
) {
4052 val
= BAR_USTRORM_INTMEM
+
4053 USTORM_PER_COUNTER_ID_STATS_OFFSET(port
, cli
);
4054 for (i
= 0; i
< sizeof(struct ustorm_per_client_stats
) / 4; i
++)
4055 CNIC_WR(dev
, val
+ i
* 4, 0);
4059 &cp
->bnx2x_def_status_blk
->u_def_status_block
.index_values
[
4060 HC_INDEX_DEF_U_ETH_ISCSI_RX_CQ_CONS
];
4063 static void cnic_get_bnx2x_iscsi_info(struct cnic_dev
*dev
)
4065 struct cnic_local
*cp
= dev
->cnic_priv
;
4066 u32 base
, addr
, val
;
4067 int port
= CNIC_PORT(cp
);
4069 dev
->max_iscsi_conn
= 0;
4070 base
= CNIC_RD(dev
, MISC_REG_SHARED_MEM_ADDR
);
4071 if (base
< 0xa0000 || base
>= 0xc0000)
4074 addr
= BNX2X_SHMEM_ADDR(base
,
4075 dev_info
.port_hw_config
[port
].iscsi_mac_upper
);
4077 val
= CNIC_RD(dev
, addr
);
4079 dev
->mac_addr
[0] = (u8
) (val
>> 8);
4080 dev
->mac_addr
[1] = (u8
) val
;
4082 addr
= BNX2X_SHMEM_ADDR(base
,
4083 dev_info
.port_hw_config
[port
].iscsi_mac_lower
);
4085 val
= CNIC_RD(dev
, addr
);
4087 dev
->mac_addr
[2] = (u8
) (val
>> 24);
4088 dev
->mac_addr
[3] = (u8
) (val
>> 16);
4089 dev
->mac_addr
[4] = (u8
) (val
>> 8);
4090 dev
->mac_addr
[5] = (u8
) val
;
4092 addr
= BNX2X_SHMEM_ADDR(base
, validity_map
[port
]);
4093 val
= CNIC_RD(dev
, addr
);
4095 if (!(val
& SHR_MEM_VALIDITY_LIC_NO_KEY_IN_EFFECT
)) {
4098 addr
= BNX2X_SHMEM_ADDR(base
,
4099 drv_lic_key
[port
].max_iscsi_init_conn
);
4100 val16
= CNIC_RD16(dev
, addr
);
4104 dev
->max_iscsi_conn
= val16
;
4106 if (BNX2X_CHIP_IS_E1H(cp
->chip_id
)) {
4107 int func
= CNIC_FUNC(cp
);
4109 addr
= BNX2X_SHMEM_ADDR(base
,
4110 mf_cfg
.func_mf_config
[func
].e1hov_tag
);
4111 val
= CNIC_RD(dev
, addr
);
4112 val
&= FUNC_MF_CFG_E1HOV_TAG_MASK
;
4113 if (val
!= FUNC_MF_CFG_E1HOV_TAG_DEFAULT
) {
4114 addr
= BNX2X_SHMEM_ADDR(base
,
4115 mf_cfg
.func_mf_config
[func
].config
);
4116 val
= CNIC_RD(dev
, addr
);
4117 val
&= FUNC_MF_CFG_PROTOCOL_MASK
;
4118 if (val
!= FUNC_MF_CFG_PROTOCOL_ISCSI
)
4119 dev
->max_iscsi_conn
= 0;
4124 static int cnic_start_bnx2x_hw(struct cnic_dev
*dev
)
4126 struct cnic_local
*cp
= dev
->cnic_priv
;
4127 int func
= CNIC_FUNC(cp
), ret
, i
;
4128 int port
= CNIC_PORT(cp
);
4130 u8 sb_id
= cp
->status_blk_num
;
4132 ret
= cnic_init_id_tbl(&cp
->cid_tbl
, MAX_ISCSI_TBL_SZ
,
4133 cp
->iscsi_start_cid
);
4138 cp
->kcq1
.io_addr
= BAR_CSTRORM_INTMEM
+
4139 CSTORM_ISCSI_EQ_PROD_OFFSET(func
, 0);
4140 cp
->kcq1
.sw_prod_idx
= 0;
4142 cp
->kcq1
.hw_prod_idx_ptr
=
4143 &cp
->status_blk
.bnx2x
->c_status_block
.index_values
[
4144 HC_INDEX_C_ISCSI_EQ_CONS
];
4145 cp
->kcq1
.status_idx_ptr
=
4146 &cp
->status_blk
.bnx2x
->c_status_block
.status_block_index
;
4148 cnic_get_bnx2x_iscsi_info(dev
);
4151 CNIC_WR16(dev
, cp
->kcq1
.io_addr
, MAX_KCQ_IDX
);
4152 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
4153 CSTORM_ISCSI_EQ_CONS_OFFSET(func
, 0), 0);
4154 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
4155 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(func
, 0),
4156 cp
->kcq1
.dma
.pg_map_arr
[1] & 0xffffffff);
4157 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
4158 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(func
, 0) + 4,
4159 (u64
) cp
->kcq1
.dma
.pg_map_arr
[1] >> 32);
4160 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
4161 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(func
, 0),
4162 cp
->kcq1
.dma
.pg_map_arr
[0] & 0xffffffff);
4163 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
4164 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(func
, 0) + 4,
4165 (u64
) cp
->kcq1
.dma
.pg_map_arr
[0] >> 32);
4166 CNIC_WR8(dev
, BAR_CSTRORM_INTMEM
+
4167 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_VALID_OFFSET(func
, 0), 1);
4168 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+
4169 CSTORM_ISCSI_EQ_SB_NUM_OFFSET(func
, 0), cp
->status_blk_num
);
4170 CNIC_WR8(dev
, BAR_CSTRORM_INTMEM
+
4171 CSTORM_ISCSI_EQ_SB_INDEX_OFFSET(func
, 0),
4172 HC_INDEX_C_ISCSI_EQ_CONS
);
4174 for (i
= 0; i
< cp
->conn_buf_info
.num_pages
; i
++) {
4175 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+
4176 TSTORM_ISCSI_CONN_BUF_PBL_OFFSET(func
, i
),
4177 cp
->conn_buf_info
.pgtbl
[2 * i
]);
4178 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+
4179 TSTORM_ISCSI_CONN_BUF_PBL_OFFSET(func
, i
) + 4,
4180 cp
->conn_buf_info
.pgtbl
[(2 * i
) + 1]);
4183 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
4184 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(func
),
4185 cp
->gbl_buf_info
.pg_map_arr
[0] & 0xffffffff);
4186 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
4187 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(func
) + 4,
4188 (u64
) cp
->gbl_buf_info
.pg_map_arr
[0] >> 32);
4190 cnic_setup_bnx2x_context(dev
);
4192 eq_idx
= CNIC_RD16(dev
, BAR_CSTRORM_INTMEM
+
4193 CSTORM_SB_HOST_STATUS_BLOCK_C_OFFSET(port
, sb_id
) +
4194 offsetof(struct cstorm_status_block_c
,
4195 index_values
[HC_INDEX_C_ISCSI_EQ_CONS
]));
4197 netdev_err(dev
->netdev
, "EQ cons index %x != 0\n", eq_idx
);
4200 ret
= cnic_init_bnx2x_irq(dev
);
4204 cnic_init_bnx2x_tx_ring(dev
);
4205 cnic_init_bnx2x_rx_ring(dev
);
4210 static void cnic_init_rings(struct cnic_dev
*dev
)
4212 if (test_bit(CNIC_F_BNX2_CLASS
, &dev
->flags
)) {
4213 cnic_init_bnx2_tx_ring(dev
);
4214 cnic_init_bnx2_rx_ring(dev
);
4215 } else if (test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
)) {
4216 struct cnic_local
*cp
= dev
->cnic_priv
;
4217 u32 cli
= BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp
));
4218 union l5cm_specific_data l5_data
;
4219 struct ustorm_eth_rx_producers rx_prods
= {0};
4222 rx_prods
.bd_prod
= 0;
4223 rx_prods
.cqe_prod
= BNX2X_MAX_RCQ_DESC_CNT
;
4226 off
= BAR_USTRORM_INTMEM
+
4227 USTORM_RX_PRODS_OFFSET(CNIC_PORT(cp
), cli
);
4229 for (i
= 0; i
< sizeof(struct ustorm_eth_rx_producers
) / 4; i
++)
4230 CNIC_WR(dev
, off
+ i
* 4, ((u32
*) &rx_prods
)[i
]);
4232 set_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
);
4234 cnic_init_bnx2x_tx_ring(dev
);
4235 cnic_init_bnx2x_rx_ring(dev
);
4237 l5_data
.phy_address
.lo
= cli
;
4238 l5_data
.phy_address
.hi
= 0;
4239 cnic_submit_kwqe_16(dev
, RAMROD_CMD_ID_ETH_CLIENT_SETUP
,
4240 BNX2X_ISCSI_L2_CID
, ETH_CONNECTION_TYPE
, &l5_data
);
4242 while (test_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
) &&
4246 if (test_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
))
4247 netdev_err(dev
->netdev
,
4248 "iSCSI CLIENT_SETUP did not complete\n");
4249 cnic_kwq_completion(dev
, 1);
4250 cnic_ring_ctl(dev
, BNX2X_ISCSI_L2_CID
, cli
, 1);
4254 static void cnic_shutdown_rings(struct cnic_dev
*dev
)
4256 if (test_bit(CNIC_F_BNX2_CLASS
, &dev
->flags
)) {
4257 cnic_shutdown_bnx2_rx_ring(dev
);
4258 } else if (test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
)) {
4259 struct cnic_local
*cp
= dev
->cnic_priv
;
4260 u32 cli
= BNX2X_ISCSI_CL_ID(CNIC_E1HVN(cp
));
4261 union l5cm_specific_data l5_data
;
4264 cnic_ring_ctl(dev
, BNX2X_ISCSI_L2_CID
, cli
, 0);
4266 set_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
);
4268 l5_data
.phy_address
.lo
= cli
;
4269 l5_data
.phy_address
.hi
= 0;
4270 cnic_submit_kwqe_16(dev
, RAMROD_CMD_ID_ETH_HALT
,
4271 BNX2X_ISCSI_L2_CID
, ETH_CONNECTION_TYPE
, &l5_data
);
4273 while (test_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
) &&
4277 if (test_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
))
4278 netdev_err(dev
->netdev
,
4279 "iSCSI CLIENT_HALT did not complete\n");
4280 cnic_kwq_completion(dev
, 1);
4282 memset(&l5_data
, 0, sizeof(l5_data
));
4283 cnic_submit_kwqe_16(dev
, RAMROD_CMD_ID_ETH_CFC_DEL
,
4284 BNX2X_ISCSI_L2_CID
, ETH_CONNECTION_TYPE
|
4285 (1 << SPE_HDR_COMMON_RAMROD_SHIFT
), &l5_data
);
4290 static int cnic_register_netdev(struct cnic_dev
*dev
)
4292 struct cnic_local
*cp
= dev
->cnic_priv
;
4293 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4299 if (ethdev
->drv_state
& CNIC_DRV_STATE_REGD
)
4302 err
= ethdev
->drv_register_cnic(dev
->netdev
, cp
->cnic_ops
, dev
);
4304 netdev_err(dev
->netdev
, "register_cnic failed\n");
4309 static void cnic_unregister_netdev(struct cnic_dev
*dev
)
4311 struct cnic_local
*cp
= dev
->cnic_priv
;
4312 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4317 ethdev
->drv_unregister_cnic(dev
->netdev
);
4320 static int cnic_start_hw(struct cnic_dev
*dev
)
4322 struct cnic_local
*cp
= dev
->cnic_priv
;
4323 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4326 if (test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
4329 dev
->regview
= ethdev
->io_base
;
4330 cp
->chip_id
= ethdev
->chip_id
;
4331 pci_dev_get(dev
->pcidev
);
4332 cp
->func
= PCI_FUNC(dev
->pcidev
->devfn
);
4333 cp
->status_blk
.gen
= ethdev
->irq_arr
[0].status_blk
;
4334 cp
->status_blk_num
= ethdev
->irq_arr
[0].status_blk_num
;
4336 err
= cp
->alloc_resc(dev
);
4338 netdev_err(dev
->netdev
, "allocate resource failure\n");
4342 err
= cp
->start_hw(dev
);
4346 err
= cnic_cm_open(dev
);
4350 set_bit(CNIC_F_CNIC_UP
, &dev
->flags
);
4352 cp
->enable_int(dev
);
4358 pci_dev_put(dev
->pcidev
);
4362 static void cnic_stop_bnx2_hw(struct cnic_dev
*dev
)
4364 cnic_disable_bnx2_int_sync(dev
);
4366 cnic_reg_wr_ind(dev
, BNX2_CP_SCRATCH
+ 0x20, 0);
4367 cnic_reg_wr_ind(dev
, BNX2_COM_SCRATCH
+ 0x20, 0);
4369 cnic_init_context(dev
, KWQ_CID
);
4370 cnic_init_context(dev
, KCQ_CID
);
4372 cnic_setup_5709_context(dev
, 0);
4375 cnic_free_resc(dev
);
4379 static void cnic_stop_bnx2x_hw(struct cnic_dev
*dev
)
4381 struct cnic_local
*cp
= dev
->cnic_priv
;
4382 u8 sb_id
= cp
->status_blk_num
;
4383 int port
= CNIC_PORT(cp
);
4386 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+
4387 CSTORM_SB_HOST_STATUS_BLOCK_C_OFFSET(port
, sb_id
) +
4388 offsetof(struct cstorm_status_block_c
,
4389 index_values
[HC_INDEX_C_ISCSI_EQ_CONS
]),
4391 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
4392 CSTORM_ISCSI_EQ_CONS_OFFSET(cp
->func
, 0), 0);
4393 CNIC_WR16(dev
, cp
->kcq1
.io_addr
, 0);
4394 cnic_free_resc(dev
);
4397 static void cnic_stop_hw(struct cnic_dev
*dev
)
4399 if (test_bit(CNIC_F_CNIC_UP
, &dev
->flags
)) {
4400 struct cnic_local
*cp
= dev
->cnic_priv
;
4403 /* Need to wait for the ring shutdown event to complete
4404 * before clearing the CNIC_UP flag.
4406 while (cp
->uio_dev
!= -1 && i
< 15) {
4410 clear_bit(CNIC_F_CNIC_UP
, &dev
->flags
);
4411 rcu_assign_pointer(cp
->ulp_ops
[CNIC_ULP_L4
], NULL
);
4413 cnic_cm_shutdown(dev
);
4415 pci_dev_put(dev
->pcidev
);
4419 static void cnic_free_dev(struct cnic_dev
*dev
)
4423 while ((atomic_read(&dev
->ref_count
) != 0) && i
< 10) {
4427 if (atomic_read(&dev
->ref_count
) != 0)
4428 netdev_err(dev
->netdev
, "Failed waiting for ref count to go to zero\n");
4430 netdev_info(dev
->netdev
, "Removed CNIC device\n");
4431 dev_put(dev
->netdev
);
4435 static struct cnic_dev
*cnic_alloc_dev(struct net_device
*dev
,
4436 struct pci_dev
*pdev
)
4438 struct cnic_dev
*cdev
;
4439 struct cnic_local
*cp
;
4442 alloc_size
= sizeof(struct cnic_dev
) + sizeof(struct cnic_local
);
4444 cdev
= kzalloc(alloc_size
, GFP_KERNEL
);
4446 netdev_err(dev
, "allocate dev struct failure\n");
4451 cdev
->cnic_priv
= (char *)cdev
+ sizeof(struct cnic_dev
);
4452 cdev
->register_device
= cnic_register_device
;
4453 cdev
->unregister_device
= cnic_unregister_device
;
4454 cdev
->iscsi_nl_msg_recv
= cnic_iscsi_nl_msg_recv
;
4456 cp
= cdev
->cnic_priv
;
4459 cp
->l2_single_buf_size
= 0x400;
4460 cp
->l2_rx_ring_size
= 3;
4462 spin_lock_init(&cp
->cnic_ulp_lock
);
4464 netdev_info(dev
, "Added CNIC device\n");
4469 static struct cnic_dev
*init_bnx2_cnic(struct net_device
*dev
)
4471 struct pci_dev
*pdev
;
4472 struct cnic_dev
*cdev
;
4473 struct cnic_local
*cp
;
4474 struct cnic_eth_dev
*ethdev
= NULL
;
4475 struct cnic_eth_dev
*(*probe
)(struct net_device
*) = NULL
;
4477 probe
= symbol_get(bnx2_cnic_probe
);
4479 ethdev
= (*probe
)(dev
);
4480 symbol_put(bnx2_cnic_probe
);
4485 pdev
= ethdev
->pdev
;
4491 if (pdev
->device
== PCI_DEVICE_ID_NX2_5709
||
4492 pdev
->device
== PCI_DEVICE_ID_NX2_5709S
) {
4495 pci_read_config_byte(pdev
, PCI_REVISION_ID
, &rev
);
4503 cdev
= cnic_alloc_dev(dev
, pdev
);
4507 set_bit(CNIC_F_BNX2_CLASS
, &cdev
->flags
);
4508 cdev
->submit_kwqes
= cnic_submit_bnx2_kwqes
;
4510 cp
= cdev
->cnic_priv
;
4511 cp
->ethdev
= ethdev
;
4512 cdev
->pcidev
= pdev
;
4514 cp
->cnic_ops
= &cnic_bnx2_ops
;
4515 cp
->start_hw
= cnic_start_bnx2_hw
;
4516 cp
->stop_hw
= cnic_stop_bnx2_hw
;
4517 cp
->setup_pgtbl
= cnic_setup_page_tbl
;
4518 cp
->alloc_resc
= cnic_alloc_bnx2_resc
;
4519 cp
->free_resc
= cnic_free_resc
;
4520 cp
->start_cm
= cnic_cm_init_bnx2_hw
;
4521 cp
->stop_cm
= cnic_cm_stop_bnx2_hw
;
4522 cp
->enable_int
= cnic_enable_bnx2_int
;
4523 cp
->disable_int_sync
= cnic_disable_bnx2_int_sync
;
4524 cp
->close_conn
= cnic_close_bnx2_conn
;
4525 cp
->next_idx
= cnic_bnx2_next_idx
;
4526 cp
->hw_idx
= cnic_bnx2_hw_idx
;
4534 static struct cnic_dev
*init_bnx2x_cnic(struct net_device
*dev
)
4536 struct pci_dev
*pdev
;
4537 struct cnic_dev
*cdev
;
4538 struct cnic_local
*cp
;
4539 struct cnic_eth_dev
*ethdev
= NULL
;
4540 struct cnic_eth_dev
*(*probe
)(struct net_device
*) = NULL
;
4542 probe
= symbol_get(bnx2x_cnic_probe
);
4544 ethdev
= (*probe
)(dev
);
4545 symbol_put(bnx2x_cnic_probe
);
4550 pdev
= ethdev
->pdev
;
4555 cdev
= cnic_alloc_dev(dev
, pdev
);
4561 set_bit(CNIC_F_BNX2X_CLASS
, &cdev
->flags
);
4562 cdev
->submit_kwqes
= cnic_submit_bnx2x_kwqes
;
4564 cp
= cdev
->cnic_priv
;
4565 cp
->ethdev
= ethdev
;
4566 cdev
->pcidev
= pdev
;
4568 cp
->cnic_ops
= &cnic_bnx2x_ops
;
4569 cp
->start_hw
= cnic_start_bnx2x_hw
;
4570 cp
->stop_hw
= cnic_stop_bnx2x_hw
;
4571 cp
->setup_pgtbl
= cnic_setup_page_tbl_le
;
4572 cp
->alloc_resc
= cnic_alloc_bnx2x_resc
;
4573 cp
->free_resc
= cnic_free_resc
;
4574 cp
->start_cm
= cnic_cm_init_bnx2x_hw
;
4575 cp
->stop_cm
= cnic_cm_stop_bnx2x_hw
;
4576 cp
->enable_int
= cnic_enable_bnx2x_int
;
4577 cp
->disable_int_sync
= cnic_disable_bnx2x_int_sync
;
4578 cp
->ack_int
= cnic_ack_bnx2x_msix
;
4579 cp
->close_conn
= cnic_close_bnx2x_conn
;
4580 cp
->next_idx
= cnic_bnx2x_next_idx
;
4581 cp
->hw_idx
= cnic_bnx2x_hw_idx
;
4585 static struct cnic_dev
*is_cnic_dev(struct net_device
*dev
)
4587 struct ethtool_drvinfo drvinfo
;
4588 struct cnic_dev
*cdev
= NULL
;
4590 if (dev
->ethtool_ops
&& dev
->ethtool_ops
->get_drvinfo
) {
4591 memset(&drvinfo
, 0, sizeof(drvinfo
));
4592 dev
->ethtool_ops
->get_drvinfo(dev
, &drvinfo
);
4594 if (!strcmp(drvinfo
.driver
, "bnx2"))
4595 cdev
= init_bnx2_cnic(dev
);
4596 if (!strcmp(drvinfo
.driver
, "bnx2x"))
4597 cdev
= init_bnx2x_cnic(dev
);
4599 write_lock(&cnic_dev_lock
);
4600 list_add(&cdev
->list
, &cnic_dev_list
);
4601 write_unlock(&cnic_dev_lock
);
4608 * netdev event handler
4610 static int cnic_netdev_event(struct notifier_block
*this, unsigned long event
,
4613 struct net_device
*netdev
= ptr
;
4614 struct cnic_dev
*dev
;
4618 dev
= cnic_from_netdev(netdev
);
4620 if (!dev
&& (event
== NETDEV_REGISTER
|| event
== NETDEV_UP
)) {
4621 /* Check for the hot-plug device */
4622 dev
= is_cnic_dev(netdev
);
4629 struct cnic_local
*cp
= dev
->cnic_priv
;
4633 else if (event
== NETDEV_UNREGISTER
)
4636 if (event
== NETDEV_UP
) {
4637 if (cnic_register_netdev(dev
) != 0) {
4641 if (!cnic_start_hw(dev
))
4642 cnic_ulp_start(dev
);
4646 for (if_type
= 0; if_type
< MAX_CNIC_ULP_TYPE
; if_type
++) {
4647 struct cnic_ulp_ops
*ulp_ops
;
4650 ulp_ops
= rcu_dereference(cp
->ulp_ops
[if_type
]);
4651 if (!ulp_ops
|| !ulp_ops
->indicate_netevent
)
4654 ctx
= cp
->ulp_handle
[if_type
];
4656 ulp_ops
->indicate_netevent(ctx
, event
);
4660 if (event
== NETDEV_GOING_DOWN
) {
4663 cnic_unregister_netdev(dev
);
4664 } else if (event
== NETDEV_UNREGISTER
) {
4665 write_lock(&cnic_dev_lock
);
4666 list_del_init(&dev
->list
);
4667 write_unlock(&cnic_dev_lock
);
4679 static struct notifier_block cnic_netdev_notifier
= {
4680 .notifier_call
= cnic_netdev_event
4683 static void cnic_release(void)
4685 struct cnic_dev
*dev
;
4687 while (!list_empty(&cnic_dev_list
)) {
4688 dev
= list_entry(cnic_dev_list
.next
, struct cnic_dev
, list
);
4689 if (test_bit(CNIC_F_CNIC_UP
, &dev
->flags
)) {
4695 cnic_unregister_netdev(dev
);
4696 list_del_init(&dev
->list
);
4701 static int __init
cnic_init(void)
4705 pr_info("%s", version
);
4707 rc
= register_netdevice_notifier(&cnic_netdev_notifier
);
4716 static void __exit
cnic_exit(void)
4718 unregister_netdevice_notifier(&cnic_netdev_notifier
);
4722 module_init(cnic_init
);
4723 module_exit(cnic_exit
);