1 /* cnic.c: QLogic CNIC core network driver.
3 * Copyright (c) 2006-2014 Broadcom Corporation
4 * Copyright (c) 2014-2015 QLogic Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation.
10 * Original skeleton written by: John(Zongxi) Chen (zongxi@broadcom.com)
11 * Previously modified and maintained by: Michael Chan <mchan@broadcom.com>
12 * Maintained By: Dept-HSGLinuxNICDev@qlogic.com
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/errno.h>
21 #include <linux/list.h>
22 #include <linux/slab.h>
23 #include <linux/pci.h>
24 #include <linux/init.h>
25 #include <linux/netdevice.h>
26 #include <linux/uio_driver.h>
28 #include <linux/dma-mapping.h>
29 #include <linux/delay.h>
30 #include <linux/ethtool.h>
31 #include <linux/if_vlan.h>
32 #include <linux/prefetch.h>
33 #include <linux/random.h>
34 #if IS_ENABLED(CONFIG_VLAN_8021Q)
39 #include <net/route.h>
41 #include <net/ip6_route.h>
42 #include <net/ip6_checksum.h>
43 #include <scsi/iscsi_if.h>
48 #include "bnx2x/bnx2x.h"
49 #include "bnx2x/bnx2x_reg.h"
50 #include "bnx2x/bnx2x_fw_defs.h"
51 #include "bnx2x/bnx2x_hsi.h"
52 #include "../../../scsi/bnx2i/57xx_iscsi_constants.h"
53 #include "../../../scsi/bnx2i/57xx_iscsi_hsi.h"
54 #include "../../../scsi/bnx2fc/bnx2fc_constants.h"
56 #include "cnic_defs.h"
58 #define CNIC_MODULE_NAME "cnic"
60 static char version
[] =
61 "QLogic " CNIC_MODULE_NAME
"Driver v" CNIC_MODULE_VERSION
" (" CNIC_MODULE_RELDATE
")\n";
63 MODULE_AUTHOR("Michael Chan <mchan@broadcom.com> and John(Zongxi) "
64 "Chen (zongxi@broadcom.com");
65 MODULE_DESCRIPTION("QLogic cnic Driver");
66 MODULE_LICENSE("GPL");
67 MODULE_VERSION(CNIC_MODULE_VERSION
);
69 /* cnic_dev_list modifications are protected by both rtnl and cnic_dev_lock */
70 static LIST_HEAD(cnic_dev_list
);
71 static LIST_HEAD(cnic_udev_list
);
72 static DEFINE_RWLOCK(cnic_dev_lock
);
73 static DEFINE_MUTEX(cnic_lock
);
75 static struct cnic_ulp_ops __rcu
*cnic_ulp_tbl
[MAX_CNIC_ULP_TYPE
];
77 /* helper function, assuming cnic_lock is held */
78 static inline struct cnic_ulp_ops
*cnic_ulp_tbl_prot(int type
)
80 return rcu_dereference_protected(cnic_ulp_tbl
[type
],
81 lockdep_is_held(&cnic_lock
));
84 static int cnic_service_bnx2(void *, void *);
85 static int cnic_service_bnx2x(void *, void *);
86 static int cnic_ctl(void *, struct cnic_ctl_info
*);
88 static struct cnic_ops cnic_bnx2_ops
= {
89 .cnic_owner
= THIS_MODULE
,
90 .cnic_handler
= cnic_service_bnx2
,
94 static struct cnic_ops cnic_bnx2x_ops
= {
95 .cnic_owner
= THIS_MODULE
,
96 .cnic_handler
= cnic_service_bnx2x
,
100 static struct workqueue_struct
*cnic_wq
;
102 static void cnic_shutdown_rings(struct cnic_dev
*);
103 static void cnic_init_rings(struct cnic_dev
*);
104 static int cnic_cm_set_pg(struct cnic_sock
*);
106 static int cnic_uio_open(struct uio_info
*uinfo
, struct inode
*inode
)
108 struct cnic_uio_dev
*udev
= uinfo
->priv
;
109 struct cnic_dev
*dev
;
111 if (!capable(CAP_NET_ADMIN
))
114 if (udev
->uio_dev
!= -1)
120 if (!dev
|| !test_bit(CNIC_F_CNIC_UP
, &dev
->flags
)) {
125 udev
->uio_dev
= iminor(inode
);
127 cnic_shutdown_rings(dev
);
128 cnic_init_rings(dev
);
134 static int cnic_uio_close(struct uio_info
*uinfo
, struct inode
*inode
)
136 struct cnic_uio_dev
*udev
= uinfo
->priv
;
142 static inline void cnic_hold(struct cnic_dev
*dev
)
144 atomic_inc(&dev
->ref_count
);
147 static inline void cnic_put(struct cnic_dev
*dev
)
149 atomic_dec(&dev
->ref_count
);
152 static inline void csk_hold(struct cnic_sock
*csk
)
154 atomic_inc(&csk
->ref_count
);
157 static inline void csk_put(struct cnic_sock
*csk
)
159 atomic_dec(&csk
->ref_count
);
162 static struct cnic_dev
*cnic_from_netdev(struct net_device
*netdev
)
164 struct cnic_dev
*cdev
;
166 read_lock(&cnic_dev_lock
);
167 list_for_each_entry(cdev
, &cnic_dev_list
, list
) {
168 if (netdev
== cdev
->netdev
) {
170 read_unlock(&cnic_dev_lock
);
174 read_unlock(&cnic_dev_lock
);
178 static inline void ulp_get(struct cnic_ulp_ops
*ulp_ops
)
180 atomic_inc(&ulp_ops
->ref_count
);
183 static inline void ulp_put(struct cnic_ulp_ops
*ulp_ops
)
185 atomic_dec(&ulp_ops
->ref_count
);
188 static void cnic_ctx_wr(struct cnic_dev
*dev
, u32 cid_addr
, u32 off
, u32 val
)
190 struct cnic_local
*cp
= dev
->cnic_priv
;
191 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
192 struct drv_ctl_info info
;
193 struct drv_ctl_io
*io
= &info
.data
.io
;
195 memset(&info
, 0, sizeof(struct drv_ctl_info
));
196 info
.cmd
= DRV_CTL_CTX_WR_CMD
;
197 io
->cid_addr
= cid_addr
;
200 ethdev
->drv_ctl(dev
->netdev
, &info
);
203 static void cnic_ctx_tbl_wr(struct cnic_dev
*dev
, u32 off
, dma_addr_t addr
)
205 struct cnic_local
*cp
= dev
->cnic_priv
;
206 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
207 struct drv_ctl_info info
;
208 struct drv_ctl_io
*io
= &info
.data
.io
;
210 memset(&info
, 0, sizeof(struct drv_ctl_info
));
211 info
.cmd
= DRV_CTL_CTXTBL_WR_CMD
;
214 ethdev
->drv_ctl(dev
->netdev
, &info
);
217 static void cnic_ring_ctl(struct cnic_dev
*dev
, u32 cid
, u32 cl_id
, int start
)
219 struct cnic_local
*cp
= dev
->cnic_priv
;
220 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
221 struct drv_ctl_info info
;
222 struct drv_ctl_l2_ring
*ring
= &info
.data
.ring
;
224 memset(&info
, 0, sizeof(struct drv_ctl_info
));
226 info
.cmd
= DRV_CTL_START_L2_CMD
;
228 info
.cmd
= DRV_CTL_STOP_L2_CMD
;
231 ring
->client_id
= cl_id
;
232 ethdev
->drv_ctl(dev
->netdev
, &info
);
235 static void cnic_reg_wr_ind(struct cnic_dev
*dev
, u32 off
, u32 val
)
237 struct cnic_local
*cp
= dev
->cnic_priv
;
238 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
239 struct drv_ctl_info info
;
240 struct drv_ctl_io
*io
= &info
.data
.io
;
242 memset(&info
, 0, sizeof(struct drv_ctl_info
));
243 info
.cmd
= DRV_CTL_IO_WR_CMD
;
246 ethdev
->drv_ctl(dev
->netdev
, &info
);
249 static u32
cnic_reg_rd_ind(struct cnic_dev
*dev
, u32 off
)
251 struct cnic_local
*cp
= dev
->cnic_priv
;
252 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
253 struct drv_ctl_info info
;
254 struct drv_ctl_io
*io
= &info
.data
.io
;
256 memset(&info
, 0, sizeof(struct drv_ctl_info
));
257 info
.cmd
= DRV_CTL_IO_RD_CMD
;
259 ethdev
->drv_ctl(dev
->netdev
, &info
);
263 static void cnic_ulp_ctl(struct cnic_dev
*dev
, int ulp_type
, bool reg
, int state
)
265 struct cnic_local
*cp
= dev
->cnic_priv
;
266 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
267 struct drv_ctl_info info
;
268 struct fcoe_capabilities
*fcoe_cap
=
269 &info
.data
.register_data
.fcoe_features
;
271 memset(&info
, 0, sizeof(struct drv_ctl_info
));
273 info
.cmd
= DRV_CTL_ULP_REGISTER_CMD
;
274 if (ulp_type
== CNIC_ULP_FCOE
&& dev
->fcoe_cap
)
275 memcpy(fcoe_cap
, dev
->fcoe_cap
, sizeof(*fcoe_cap
));
277 info
.cmd
= DRV_CTL_ULP_UNREGISTER_CMD
;
280 info
.data
.ulp_type
= ulp_type
;
281 info
.drv_state
= state
;
282 ethdev
->drv_ctl(dev
->netdev
, &info
);
285 static int cnic_in_use(struct cnic_sock
*csk
)
287 return test_bit(SK_F_INUSE
, &csk
->flags
);
290 static void cnic_spq_completion(struct cnic_dev
*dev
, int cmd
, u32 count
)
292 struct cnic_local
*cp
= dev
->cnic_priv
;
293 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
294 struct drv_ctl_info info
;
296 memset(&info
, 0, sizeof(struct drv_ctl_info
));
298 info
.data
.credit
.credit_count
= count
;
299 ethdev
->drv_ctl(dev
->netdev
, &info
);
302 static int cnic_get_l5_cid(struct cnic_local
*cp
, u32 cid
, u32
*l5_cid
)
309 for (i
= 0; i
< cp
->max_cid_space
; i
++) {
310 if (cp
->ctx_tbl
[i
].cid
== cid
) {
318 static int cnic_send_nlmsg(struct cnic_local
*cp
, u32 type
,
319 struct cnic_sock
*csk
)
321 struct iscsi_path path_req
;
324 u32 msg_type
= ISCSI_KEVENT_IF_DOWN
;
325 struct cnic_ulp_ops
*ulp_ops
;
326 struct cnic_uio_dev
*udev
= cp
->udev
;
327 int rc
= 0, retry
= 0;
329 if (!udev
|| udev
->uio_dev
== -1)
333 len
= sizeof(path_req
);
334 buf
= (char *) &path_req
;
335 memset(&path_req
, 0, len
);
337 msg_type
= ISCSI_KEVENT_PATH_REQ
;
338 path_req
.handle
= (u64
) csk
->l5_cid
;
339 if (test_bit(SK_F_IPV6
, &csk
->flags
)) {
340 memcpy(&path_req
.dst
.v6_addr
, &csk
->dst_ip
[0],
341 sizeof(struct in6_addr
));
342 path_req
.ip_addr_len
= 16;
344 memcpy(&path_req
.dst
.v4_addr
, &csk
->dst_ip
[0],
345 sizeof(struct in_addr
));
346 path_req
.ip_addr_len
= 4;
348 path_req
.vlan_id
= csk
->vlan_id
;
349 path_req
.pmtu
= csk
->mtu
;
355 ulp_ops
= rcu_dereference(cp
->ulp_ops
[CNIC_ULP_ISCSI
]);
357 rc
= ulp_ops
->iscsi_nl_send_msg(
358 cp
->ulp_handle
[CNIC_ULP_ISCSI
],
361 if (rc
== 0 || msg_type
!= ISCSI_KEVENT_PATH_REQ
)
370 static void cnic_cm_upcall(struct cnic_local
*, struct cnic_sock
*, u8
);
372 static int cnic_iscsi_nl_msg_recv(struct cnic_dev
*dev
, u32 msg_type
,
378 case ISCSI_UEVENT_PATH_UPDATE
: {
379 struct cnic_local
*cp
;
381 struct cnic_sock
*csk
;
382 struct iscsi_path
*path_resp
;
384 if (len
< sizeof(*path_resp
))
387 path_resp
= (struct iscsi_path
*) buf
;
389 l5_cid
= (u32
) path_resp
->handle
;
390 if (l5_cid
>= MAX_CM_SK_TBL_SZ
)
393 if (!rcu_access_pointer(cp
->ulp_ops
[CNIC_ULP_L4
])) {
397 csk
= &cp
->csk_tbl
[l5_cid
];
399 if (cnic_in_use(csk
) &&
400 test_bit(SK_F_CONNECT_START
, &csk
->flags
)) {
402 csk
->vlan_id
= path_resp
->vlan_id
;
404 memcpy(csk
->ha
, path_resp
->mac_addr
, ETH_ALEN
);
405 if (test_bit(SK_F_IPV6
, &csk
->flags
))
406 memcpy(&csk
->src_ip
[0], &path_resp
->src
.v6_addr
,
407 sizeof(struct in6_addr
));
409 memcpy(&csk
->src_ip
[0], &path_resp
->src
.v4_addr
,
410 sizeof(struct in_addr
));
412 if (is_valid_ether_addr(csk
->ha
)) {
414 } else if (!test_bit(SK_F_OFFLD_SCHED
, &csk
->flags
) &&
415 !test_bit(SK_F_OFFLD_COMPLETE
, &csk
->flags
)) {
417 cnic_cm_upcall(cp
, csk
,
418 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE
);
419 clear_bit(SK_F_CONNECT_START
, &csk
->flags
);
430 static int cnic_offld_prep(struct cnic_sock
*csk
)
432 if (test_and_set_bit(SK_F_OFFLD_SCHED
, &csk
->flags
))
435 if (!test_bit(SK_F_CONNECT_START
, &csk
->flags
)) {
436 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
443 static int cnic_close_prep(struct cnic_sock
*csk
)
445 clear_bit(SK_F_CONNECT_START
, &csk
->flags
);
446 smp_mb__after_atomic();
448 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE
, &csk
->flags
)) {
449 while (test_and_set_bit(SK_F_OFFLD_SCHED
, &csk
->flags
))
457 static int cnic_abort_prep(struct cnic_sock
*csk
)
459 clear_bit(SK_F_CONNECT_START
, &csk
->flags
);
460 smp_mb__after_atomic();
462 while (test_and_set_bit(SK_F_OFFLD_SCHED
, &csk
->flags
))
465 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE
, &csk
->flags
)) {
466 csk
->state
= L4_KCQE_OPCODE_VALUE_RESET_COMP
;
473 int cnic_register_driver(int ulp_type
, struct cnic_ulp_ops
*ulp_ops
)
475 struct cnic_dev
*dev
;
477 if (ulp_type
< 0 || ulp_type
>= MAX_CNIC_ULP_TYPE
) {
478 pr_err("%s: Bad type %d\n", __func__
, ulp_type
);
481 mutex_lock(&cnic_lock
);
482 if (cnic_ulp_tbl_prot(ulp_type
)) {
483 pr_err("%s: Type %d has already been registered\n",
485 mutex_unlock(&cnic_lock
);
489 read_lock(&cnic_dev_lock
);
490 list_for_each_entry(dev
, &cnic_dev_list
, list
) {
491 struct cnic_local
*cp
= dev
->cnic_priv
;
493 clear_bit(ULP_F_INIT
, &cp
->ulp_flags
[ulp_type
]);
495 read_unlock(&cnic_dev_lock
);
497 atomic_set(&ulp_ops
->ref_count
, 0);
498 rcu_assign_pointer(cnic_ulp_tbl
[ulp_type
], ulp_ops
);
499 mutex_unlock(&cnic_lock
);
501 /* Prevent race conditions with netdev_event */
503 list_for_each_entry(dev
, &cnic_dev_list
, list
) {
504 struct cnic_local
*cp
= dev
->cnic_priv
;
506 if (!test_and_set_bit(ULP_F_INIT
, &cp
->ulp_flags
[ulp_type
]))
507 ulp_ops
->cnic_init(dev
);
514 int cnic_unregister_driver(int ulp_type
)
516 struct cnic_dev
*dev
;
517 struct cnic_ulp_ops
*ulp_ops
;
520 if (ulp_type
< 0 || ulp_type
>= MAX_CNIC_ULP_TYPE
) {
521 pr_err("%s: Bad type %d\n", __func__
, ulp_type
);
524 mutex_lock(&cnic_lock
);
525 ulp_ops
= cnic_ulp_tbl_prot(ulp_type
);
527 pr_err("%s: Type %d has not been registered\n",
531 read_lock(&cnic_dev_lock
);
532 list_for_each_entry(dev
, &cnic_dev_list
, list
) {
533 struct cnic_local
*cp
= dev
->cnic_priv
;
535 if (rcu_access_pointer(cp
->ulp_ops
[ulp_type
])) {
536 pr_err("%s: Type %d still has devices registered\n",
538 read_unlock(&cnic_dev_lock
);
542 read_unlock(&cnic_dev_lock
);
544 RCU_INIT_POINTER(cnic_ulp_tbl
[ulp_type
], NULL
);
546 mutex_unlock(&cnic_lock
);
548 while ((atomic_read(&ulp_ops
->ref_count
) != 0) && (i
< 20)) {
553 if (atomic_read(&ulp_ops
->ref_count
) != 0)
554 pr_warn("%s: Failed waiting for ref count to go to zero\n",
559 mutex_unlock(&cnic_lock
);
563 static int cnic_start_hw(struct cnic_dev
*);
564 static void cnic_stop_hw(struct cnic_dev
*);
566 static int cnic_register_device(struct cnic_dev
*dev
, int ulp_type
,
569 struct cnic_local
*cp
= dev
->cnic_priv
;
570 struct cnic_ulp_ops
*ulp_ops
;
572 if (ulp_type
< 0 || ulp_type
>= MAX_CNIC_ULP_TYPE
) {
573 pr_err("%s: Bad type %d\n", __func__
, ulp_type
);
576 mutex_lock(&cnic_lock
);
577 if (cnic_ulp_tbl_prot(ulp_type
) == NULL
) {
578 pr_err("%s: Driver with type %d has not been registered\n",
580 mutex_unlock(&cnic_lock
);
583 if (rcu_access_pointer(cp
->ulp_ops
[ulp_type
])) {
584 pr_err("%s: Type %d has already been registered to this device\n",
586 mutex_unlock(&cnic_lock
);
590 clear_bit(ULP_F_START
, &cp
->ulp_flags
[ulp_type
]);
591 cp
->ulp_handle
[ulp_type
] = ulp_ctx
;
592 ulp_ops
= cnic_ulp_tbl_prot(ulp_type
);
593 rcu_assign_pointer(cp
->ulp_ops
[ulp_type
], ulp_ops
);
596 if (test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
597 if (!test_and_set_bit(ULP_F_START
, &cp
->ulp_flags
[ulp_type
]))
598 ulp_ops
->cnic_start(cp
->ulp_handle
[ulp_type
]);
600 mutex_unlock(&cnic_lock
);
602 cnic_ulp_ctl(dev
, ulp_type
, true, DRV_ACTIVE
);
607 EXPORT_SYMBOL(cnic_register_driver
);
609 static int cnic_unregister_device(struct cnic_dev
*dev
, int ulp_type
)
611 struct cnic_local
*cp
= dev
->cnic_priv
;
614 if (ulp_type
< 0 || ulp_type
>= MAX_CNIC_ULP_TYPE
) {
615 pr_err("%s: Bad type %d\n", __func__
, ulp_type
);
619 if (ulp_type
== CNIC_ULP_ISCSI
)
620 cnic_send_nlmsg(cp
, ISCSI_KEVENT_IF_DOWN
, NULL
);
622 mutex_lock(&cnic_lock
);
623 if (rcu_access_pointer(cp
->ulp_ops
[ulp_type
])) {
624 RCU_INIT_POINTER(cp
->ulp_ops
[ulp_type
], NULL
);
627 pr_err("%s: device not registered to this ulp type %d\n",
629 mutex_unlock(&cnic_lock
);
632 mutex_unlock(&cnic_lock
);
634 if (ulp_type
== CNIC_ULP_FCOE
)
635 dev
->fcoe_cap
= NULL
;
639 while (test_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[ulp_type
]) &&
644 if (test_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[ulp_type
]))
645 netdev_warn(dev
->netdev
, "Failed waiting for ULP up call to complete\n");
647 if (test_bit(ULP_F_INIT
, &cp
->ulp_flags
[ulp_type
]))
648 cnic_ulp_ctl(dev
, ulp_type
, false, DRV_UNLOADED
);
650 cnic_ulp_ctl(dev
, ulp_type
, false, DRV_INACTIVE
);
654 EXPORT_SYMBOL(cnic_unregister_driver
);
656 static int cnic_init_id_tbl(struct cnic_id_tbl
*id_tbl
, u32 size
, u32 start_id
,
659 id_tbl
->start
= start_id
;
662 spin_lock_init(&id_tbl
->lock
);
663 id_tbl
->table
= kcalloc(BITS_TO_LONGS(size
), sizeof(long), GFP_KERNEL
);
670 static void cnic_free_id_tbl(struct cnic_id_tbl
*id_tbl
)
672 kfree(id_tbl
->table
);
673 id_tbl
->table
= NULL
;
676 static int cnic_alloc_id(struct cnic_id_tbl
*id_tbl
, u32 id
)
681 if (id
>= id_tbl
->max
)
684 spin_lock(&id_tbl
->lock
);
685 if (!test_bit(id
, id_tbl
->table
)) {
686 set_bit(id
, id_tbl
->table
);
689 spin_unlock(&id_tbl
->lock
);
693 /* Returns -1 if not successful */
694 static u32
cnic_alloc_new_id(struct cnic_id_tbl
*id_tbl
)
698 spin_lock(&id_tbl
->lock
);
699 id
= find_next_zero_bit(id_tbl
->table
, id_tbl
->max
, id_tbl
->next
);
700 if (id
>= id_tbl
->max
) {
702 if (id_tbl
->next
!= 0) {
703 id
= find_first_zero_bit(id_tbl
->table
, id_tbl
->next
);
704 if (id
>= id_tbl
->next
)
709 if (id
< id_tbl
->max
) {
710 set_bit(id
, id_tbl
->table
);
711 id_tbl
->next
= (id
+ 1) & (id_tbl
->max
- 1);
715 spin_unlock(&id_tbl
->lock
);
720 static void cnic_free_id(struct cnic_id_tbl
*id_tbl
, u32 id
)
726 if (id
>= id_tbl
->max
)
729 clear_bit(id
, id_tbl
->table
);
732 static void cnic_free_dma(struct cnic_dev
*dev
, struct cnic_dma
*dma
)
739 for (i
= 0; i
< dma
->num_pages
; i
++) {
740 if (dma
->pg_arr
[i
]) {
741 dma_free_coherent(&dev
->pcidev
->dev
, CNIC_PAGE_SIZE
,
742 dma
->pg_arr
[i
], dma
->pg_map_arr
[i
]);
743 dma
->pg_arr
[i
] = NULL
;
747 dma_free_coherent(&dev
->pcidev
->dev
, dma
->pgtbl_size
,
748 dma
->pgtbl
, dma
->pgtbl_map
);
756 static void cnic_setup_page_tbl(struct cnic_dev
*dev
, struct cnic_dma
*dma
)
759 __le32
*page_table
= (__le32
*) dma
->pgtbl
;
761 for (i
= 0; i
< dma
->num_pages
; i
++) {
762 /* Each entry needs to be in big endian format. */
763 *page_table
= cpu_to_le32((u64
) dma
->pg_map_arr
[i
] >> 32);
765 *page_table
= cpu_to_le32(dma
->pg_map_arr
[i
] & 0xffffffff);
770 static void cnic_setup_page_tbl_le(struct cnic_dev
*dev
, struct cnic_dma
*dma
)
773 __le32
*page_table
= (__le32
*) dma
->pgtbl
;
775 for (i
= 0; i
< dma
->num_pages
; i
++) {
776 /* Each entry needs to be in little endian format. */
777 *page_table
= cpu_to_le32(dma
->pg_map_arr
[i
] & 0xffffffff);
779 *page_table
= cpu_to_le32((u64
) dma
->pg_map_arr
[i
] >> 32);
784 static int cnic_alloc_dma(struct cnic_dev
*dev
, struct cnic_dma
*dma
,
785 int pages
, int use_pg_tbl
)
788 struct cnic_local
*cp
= dev
->cnic_priv
;
790 size
= pages
* (sizeof(void *) + sizeof(dma_addr_t
));
791 dma
->pg_arr
= kzalloc(size
, GFP_ATOMIC
);
792 if (dma
->pg_arr
== NULL
)
795 dma
->pg_map_arr
= (dma_addr_t
*) (dma
->pg_arr
+ pages
);
796 dma
->num_pages
= pages
;
798 for (i
= 0; i
< pages
; i
++) {
799 dma
->pg_arr
[i
] = dma_alloc_coherent(&dev
->pcidev
->dev
,
803 if (dma
->pg_arr
[i
] == NULL
)
809 dma
->pgtbl_size
= ((pages
* 8) + CNIC_PAGE_SIZE
- 1) &
810 ~(CNIC_PAGE_SIZE
- 1);
811 dma
->pgtbl
= dma_alloc_coherent(&dev
->pcidev
->dev
, dma
->pgtbl_size
,
812 &dma
->pgtbl_map
, GFP_ATOMIC
);
813 if (dma
->pgtbl
== NULL
)
816 cp
->setup_pgtbl(dev
, dma
);
821 cnic_free_dma(dev
, dma
);
825 static void cnic_free_context(struct cnic_dev
*dev
)
827 struct cnic_local
*cp
= dev
->cnic_priv
;
830 for (i
= 0; i
< cp
->ctx_blks
; i
++) {
831 if (cp
->ctx_arr
[i
].ctx
) {
832 dma_free_coherent(&dev
->pcidev
->dev
, cp
->ctx_blk_size
,
834 cp
->ctx_arr
[i
].mapping
);
835 cp
->ctx_arr
[i
].ctx
= NULL
;
840 static void __cnic_free_uio_rings(struct cnic_uio_dev
*udev
)
843 dma_free_coherent(&udev
->pdev
->dev
, udev
->l2_buf_size
,
844 udev
->l2_buf
, udev
->l2_buf_map
);
849 dma_free_coherent(&udev
->pdev
->dev
, udev
->l2_ring_size
,
850 udev
->l2_ring
, udev
->l2_ring_map
);
851 udev
->l2_ring
= NULL
;
856 static void __cnic_free_uio(struct cnic_uio_dev
*udev
)
858 uio_unregister_device(&udev
->cnic_uinfo
);
860 __cnic_free_uio_rings(udev
);
862 pci_dev_put(udev
->pdev
);
866 static void cnic_free_uio(struct cnic_uio_dev
*udev
)
871 write_lock(&cnic_dev_lock
);
872 list_del_init(&udev
->list
);
873 write_unlock(&cnic_dev_lock
);
874 __cnic_free_uio(udev
);
877 static void cnic_free_resc(struct cnic_dev
*dev
)
879 struct cnic_local
*cp
= dev
->cnic_priv
;
880 struct cnic_uio_dev
*udev
= cp
->udev
;
885 if (udev
->uio_dev
== -1)
886 __cnic_free_uio_rings(udev
);
889 cnic_free_context(dev
);
894 cnic_free_dma(dev
, &cp
->gbl_buf_info
);
895 cnic_free_dma(dev
, &cp
->kwq_info
);
896 cnic_free_dma(dev
, &cp
->kwq_16_data_info
);
897 cnic_free_dma(dev
, &cp
->kcq2
.dma
);
898 cnic_free_dma(dev
, &cp
->kcq1
.dma
);
899 kfree(cp
->iscsi_tbl
);
900 cp
->iscsi_tbl
= NULL
;
904 cnic_free_id_tbl(&cp
->fcoe_cid_tbl
);
905 cnic_free_id_tbl(&cp
->cid_tbl
);
908 static int cnic_alloc_context(struct cnic_dev
*dev
)
910 struct cnic_local
*cp
= dev
->cnic_priv
;
912 if (BNX2_CHIP(cp
) == BNX2_CHIP_5709
) {
915 cp
->ctx_blk_size
= CNIC_PAGE_SIZE
;
916 cp
->cids_per_blk
= CNIC_PAGE_SIZE
/ 128;
917 arr_size
= BNX2_MAX_CID
/ cp
->cids_per_blk
*
918 sizeof(struct cnic_ctx
);
919 cp
->ctx_arr
= kzalloc(arr_size
, GFP_KERNEL
);
920 if (cp
->ctx_arr
== NULL
)
924 for (i
= 0; i
< 2; i
++) {
925 u32 j
, reg
, off
, lo
, hi
;
928 off
= BNX2_PG_CTX_MAP
;
930 off
= BNX2_ISCSI_CTX_MAP
;
932 reg
= cnic_reg_rd_ind(dev
, off
);
935 for (j
= lo
; j
< hi
; j
+= cp
->cids_per_blk
, k
++)
936 cp
->ctx_arr
[k
].cid
= j
;
940 if (cp
->ctx_blks
>= (BNX2_MAX_CID
/ cp
->cids_per_blk
)) {
945 for (i
= 0; i
< cp
->ctx_blks
; i
++) {
947 dma_alloc_coherent(&dev
->pcidev
->dev
,
949 &cp
->ctx_arr
[i
].mapping
,
951 if (cp
->ctx_arr
[i
].ctx
== NULL
)
958 static u16
cnic_bnx2_next_idx(u16 idx
)
963 static u16
cnic_bnx2_hw_idx(u16 idx
)
968 static u16
cnic_bnx2x_next_idx(u16 idx
)
971 if ((idx
& MAX_KCQE_CNT
) == MAX_KCQE_CNT
)
977 static u16
cnic_bnx2x_hw_idx(u16 idx
)
979 if ((idx
& MAX_KCQE_CNT
) == MAX_KCQE_CNT
)
984 static int cnic_alloc_kcq(struct cnic_dev
*dev
, struct kcq_info
*info
,
987 int err
, i
, use_page_tbl
= 0;
993 err
= cnic_alloc_dma(dev
, &info
->dma
, KCQ_PAGE_CNT
, use_page_tbl
);
997 kcq
= (struct kcqe
**) info
->dma
.pg_arr
;
1000 info
->next_idx
= cnic_bnx2_next_idx
;
1001 info
->hw_idx
= cnic_bnx2_hw_idx
;
1005 info
->next_idx
= cnic_bnx2x_next_idx
;
1006 info
->hw_idx
= cnic_bnx2x_hw_idx
;
1008 for (i
= 0; i
< KCQ_PAGE_CNT
; i
++) {
1009 struct bnx2x_bd_chain_next
*next
=
1010 (struct bnx2x_bd_chain_next
*) &kcq
[i
][MAX_KCQE_CNT
];
1013 if (j
>= KCQ_PAGE_CNT
)
1015 next
->addr_hi
= (u64
) info
->dma
.pg_map_arr
[j
] >> 32;
1016 next
->addr_lo
= info
->dma
.pg_map_arr
[j
] & 0xffffffff;
1021 static int __cnic_alloc_uio_rings(struct cnic_uio_dev
*udev
, int pages
)
1023 struct cnic_local
*cp
= udev
->dev
->cnic_priv
;
1028 udev
->l2_ring_size
= pages
* CNIC_PAGE_SIZE
;
1029 udev
->l2_ring
= dma_alloc_coherent(&udev
->pdev
->dev
, udev
->l2_ring_size
,
1031 GFP_KERNEL
| __GFP_COMP
);
1035 udev
->l2_buf_size
= (cp
->l2_rx_ring_size
+ 1) * cp
->l2_single_buf_size
;
1036 udev
->l2_buf_size
= CNIC_PAGE_ALIGN(udev
->l2_buf_size
);
1037 udev
->l2_buf
= dma_alloc_coherent(&udev
->pdev
->dev
, udev
->l2_buf_size
,
1039 GFP_KERNEL
| __GFP_COMP
);
1040 if (!udev
->l2_buf
) {
1041 __cnic_free_uio_rings(udev
);
1049 static int cnic_alloc_uio_rings(struct cnic_dev
*dev
, int pages
)
1051 struct cnic_local
*cp
= dev
->cnic_priv
;
1052 struct cnic_uio_dev
*udev
;
1054 list_for_each_entry(udev
, &cnic_udev_list
, list
) {
1055 if (udev
->pdev
== dev
->pcidev
) {
1057 if (__cnic_alloc_uio_rings(udev
, pages
)) {
1066 udev
= kzalloc(sizeof(struct cnic_uio_dev
), GFP_ATOMIC
);
1073 udev
->pdev
= dev
->pcidev
;
1075 if (__cnic_alloc_uio_rings(udev
, pages
))
1078 list_add(&udev
->list
, &cnic_udev_list
);
1080 pci_dev_get(udev
->pdev
);
1091 static int cnic_init_uio(struct cnic_dev
*dev
)
1093 struct cnic_local
*cp
= dev
->cnic_priv
;
1094 struct cnic_uio_dev
*udev
= cp
->udev
;
1095 struct uio_info
*uinfo
;
1101 uinfo
= &udev
->cnic_uinfo
;
1103 uinfo
->mem
[0].addr
= pci_resource_start(dev
->pcidev
, 0);
1104 uinfo
->mem
[0].internal_addr
= dev
->regview
;
1105 uinfo
->mem
[0].memtype
= UIO_MEM_PHYS
;
1107 if (test_bit(CNIC_F_BNX2_CLASS
, &dev
->flags
)) {
1108 uinfo
->mem
[0].size
= MB_GET_CID_ADDR(TX_TSS_CID
+
1109 TX_MAX_TSS_RINGS
+ 1);
1110 uinfo
->mem
[1].addr
= (unsigned long) cp
->status_blk
.gen
&
1112 if (cp
->ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
)
1113 uinfo
->mem
[1].size
= BNX2_SBLK_MSIX_ALIGN_SIZE
* 9;
1115 uinfo
->mem
[1].size
= BNX2_SBLK_MSIX_ALIGN_SIZE
;
1117 uinfo
->name
= "bnx2_cnic";
1118 } else if (test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
)) {
1119 uinfo
->mem
[0].size
= pci_resource_len(dev
->pcidev
, 0);
1121 uinfo
->mem
[1].addr
= (unsigned long) cp
->bnx2x_def_status_blk
&
1123 uinfo
->mem
[1].size
= sizeof(*cp
->bnx2x_def_status_blk
);
1125 uinfo
->name
= "bnx2x_cnic";
1128 uinfo
->mem
[1].memtype
= UIO_MEM_LOGICAL
;
1130 uinfo
->mem
[2].addr
= (unsigned long) udev
->l2_ring
;
1131 uinfo
->mem
[2].size
= udev
->l2_ring_size
;
1132 uinfo
->mem
[2].memtype
= UIO_MEM_LOGICAL
;
1134 uinfo
->mem
[3].addr
= (unsigned long) udev
->l2_buf
;
1135 uinfo
->mem
[3].size
= udev
->l2_buf_size
;
1136 uinfo
->mem
[3].memtype
= UIO_MEM_LOGICAL
;
1138 uinfo
->version
= CNIC_MODULE_VERSION
;
1139 uinfo
->irq
= UIO_IRQ_CUSTOM
;
1141 uinfo
->open
= cnic_uio_open
;
1142 uinfo
->release
= cnic_uio_close
;
1144 if (udev
->uio_dev
== -1) {
1148 ret
= uio_register_device(&udev
->pdev
->dev
, uinfo
);
1151 cnic_init_rings(dev
);
1157 static int cnic_alloc_bnx2_resc(struct cnic_dev
*dev
)
1159 struct cnic_local
*cp
= dev
->cnic_priv
;
1162 ret
= cnic_alloc_dma(dev
, &cp
->kwq_info
, KWQ_PAGE_CNT
, 1);
1165 cp
->kwq
= (struct kwqe
**) cp
->kwq_info
.pg_arr
;
1167 ret
= cnic_alloc_kcq(dev
, &cp
->kcq1
, true);
1171 ret
= cnic_alloc_context(dev
);
1175 ret
= cnic_alloc_uio_rings(dev
, 2);
1179 ret
= cnic_init_uio(dev
);
1186 cnic_free_resc(dev
);
1190 static int cnic_alloc_bnx2x_context(struct cnic_dev
*dev
)
1192 struct cnic_local
*cp
= dev
->cnic_priv
;
1193 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
1194 int ctx_blk_size
= cp
->ethdev
->ctx_blk_size
;
1195 int total_mem
, blks
, i
;
1197 total_mem
= BNX2X_CONTEXT_MEM_SIZE
* cp
->max_cid_space
;
1198 blks
= total_mem
/ ctx_blk_size
;
1199 if (total_mem
% ctx_blk_size
)
1202 if (blks
> cp
->ethdev
->ctx_tbl_len
)
1205 cp
->ctx_arr
= kcalloc(blks
, sizeof(struct cnic_ctx
), GFP_KERNEL
);
1206 if (cp
->ctx_arr
== NULL
)
1209 cp
->ctx_blks
= blks
;
1210 cp
->ctx_blk_size
= ctx_blk_size
;
1211 if (!CHIP_IS_E1(bp
))
1214 cp
->ctx_align
= ctx_blk_size
;
1216 cp
->cids_per_blk
= ctx_blk_size
/ BNX2X_CONTEXT_MEM_SIZE
;
1218 for (i
= 0; i
< blks
; i
++) {
1219 cp
->ctx_arr
[i
].ctx
=
1220 dma_alloc_coherent(&dev
->pcidev
->dev
, cp
->ctx_blk_size
,
1221 &cp
->ctx_arr
[i
].mapping
,
1223 if (cp
->ctx_arr
[i
].ctx
== NULL
)
1226 if (cp
->ctx_align
&& cp
->ctx_blk_size
== ctx_blk_size
) {
1227 if (cp
->ctx_arr
[i
].mapping
& (cp
->ctx_align
- 1)) {
1228 cnic_free_context(dev
);
1229 cp
->ctx_blk_size
+= cp
->ctx_align
;
1238 static int cnic_alloc_bnx2x_resc(struct cnic_dev
*dev
)
1240 struct cnic_local
*cp
= dev
->cnic_priv
;
1241 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
1242 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
1243 u32 start_cid
= ethdev
->starting_cid
;
1244 int i
, j
, n
, ret
, pages
;
1245 struct cnic_dma
*kwq_16_dma
= &cp
->kwq_16_data_info
;
1247 cp
->max_cid_space
= MAX_ISCSI_TBL_SZ
;
1248 cp
->iscsi_start_cid
= start_cid
;
1249 cp
->fcoe_start_cid
= start_cid
+ MAX_ISCSI_TBL_SZ
;
1251 if (BNX2X_CHIP_IS_E2_PLUS(bp
)) {
1252 cp
->max_cid_space
+= dev
->max_fcoe_conn
;
1253 cp
->fcoe_init_cid
= ethdev
->fcoe_init_cid
;
1254 if (!cp
->fcoe_init_cid
)
1255 cp
->fcoe_init_cid
= 0x10;
1258 cp
->iscsi_tbl
= kcalloc(MAX_ISCSI_TBL_SZ
, sizeof(struct cnic_iscsi
),
1263 cp
->ctx_tbl
= kcalloc(cp
->max_cid_space
, sizeof(struct cnic_context
),
1268 for (i
= 0; i
< MAX_ISCSI_TBL_SZ
; i
++) {
1269 cp
->ctx_tbl
[i
].proto
.iscsi
= &cp
->iscsi_tbl
[i
];
1270 cp
->ctx_tbl
[i
].ulp_proto_id
= CNIC_ULP_ISCSI
;
1273 for (i
= MAX_ISCSI_TBL_SZ
; i
< cp
->max_cid_space
; i
++)
1274 cp
->ctx_tbl
[i
].ulp_proto_id
= CNIC_ULP_FCOE
;
1276 pages
= CNIC_PAGE_ALIGN(cp
->max_cid_space
* CNIC_KWQ16_DATA_SIZE
) /
1279 ret
= cnic_alloc_dma(dev
, kwq_16_dma
, pages
, 0);
1283 n
= CNIC_PAGE_SIZE
/ CNIC_KWQ16_DATA_SIZE
;
1284 for (i
= 0, j
= 0; i
< cp
->max_cid_space
; i
++) {
1285 long off
= CNIC_KWQ16_DATA_SIZE
* (i
% n
);
1287 cp
->ctx_tbl
[i
].kwqe_data
= kwq_16_dma
->pg_arr
[j
] + off
;
1288 cp
->ctx_tbl
[i
].kwqe_data_mapping
= kwq_16_dma
->pg_map_arr
[j
] +
1291 if ((i
% n
) == (n
- 1))
1295 ret
= cnic_alloc_kcq(dev
, &cp
->kcq1
, false);
1299 if (CNIC_SUPPORTS_FCOE(bp
)) {
1300 ret
= cnic_alloc_kcq(dev
, &cp
->kcq2
, true);
1305 pages
= CNIC_PAGE_ALIGN(BNX2X_ISCSI_GLB_BUF_SIZE
) / CNIC_PAGE_SIZE
;
1306 ret
= cnic_alloc_dma(dev
, &cp
->gbl_buf_info
, pages
, 0);
1310 ret
= cnic_alloc_bnx2x_context(dev
);
1314 if (cp
->ethdev
->drv_state
& CNIC_DRV_STATE_NO_ISCSI
)
1317 cp
->bnx2x_def_status_blk
= cp
->ethdev
->irq_arr
[1].status_blk
;
1319 cp
->l2_rx_ring_size
= 15;
1321 ret
= cnic_alloc_uio_rings(dev
, 4);
1325 ret
= cnic_init_uio(dev
);
1332 cnic_free_resc(dev
);
1336 static inline u32
cnic_kwq_avail(struct cnic_local
*cp
)
1338 return cp
->max_kwq_idx
-
1339 ((cp
->kwq_prod_idx
- cp
->kwq_con_idx
) & cp
->max_kwq_idx
);
1342 static int cnic_submit_bnx2_kwqes(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
1345 struct cnic_local
*cp
= dev
->cnic_priv
;
1346 struct kwqe
*prod_qe
;
1347 u16 prod
, sw_prod
, i
;
1349 if (!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
1350 return -EAGAIN
; /* bnx2 is down */
1352 spin_lock_bh(&cp
->cnic_ulp_lock
);
1353 if (num_wqes
> cnic_kwq_avail(cp
) &&
1354 !test_bit(CNIC_LCL_FL_KWQ_INIT
, &cp
->cnic_local_flags
)) {
1355 spin_unlock_bh(&cp
->cnic_ulp_lock
);
1359 clear_bit(CNIC_LCL_FL_KWQ_INIT
, &cp
->cnic_local_flags
);
1361 prod
= cp
->kwq_prod_idx
;
1362 sw_prod
= prod
& MAX_KWQ_IDX
;
1363 for (i
= 0; i
< num_wqes
; i
++) {
1364 prod_qe
= &cp
->kwq
[KWQ_PG(sw_prod
)][KWQ_IDX(sw_prod
)];
1365 memcpy(prod_qe
, wqes
[i
], sizeof(struct kwqe
));
1367 sw_prod
= prod
& MAX_KWQ_IDX
;
1369 cp
->kwq_prod_idx
= prod
;
1371 CNIC_WR16(dev
, cp
->kwq_io_addr
, cp
->kwq_prod_idx
);
1373 spin_unlock_bh(&cp
->cnic_ulp_lock
);
1377 static void *cnic_get_kwqe_16_data(struct cnic_local
*cp
, u32 l5_cid
,
1378 union l5cm_specific_data
*l5_data
)
1380 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
1383 map
= ctx
->kwqe_data_mapping
;
1384 l5_data
->phy_address
.lo
= (u64
) map
& 0xffffffff;
1385 l5_data
->phy_address
.hi
= (u64
) map
>> 32;
1386 return ctx
->kwqe_data
;
1389 static int cnic_submit_kwqe_16(struct cnic_dev
*dev
, u32 cmd
, u32 cid
,
1390 u32 type
, union l5cm_specific_data
*l5_data
)
1392 struct cnic_local
*cp
= dev
->cnic_priv
;
1393 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
1394 struct l5cm_spe kwqe
;
1395 struct kwqe_16
*kwq
[1];
1399 kwqe
.hdr
.conn_and_cmd_data
=
1400 cpu_to_le32(((cmd
<< SPE_HDR_CMD_ID_SHIFT
) |
1401 BNX2X_HW_CID(bp
, cid
)));
1403 type_16
= (type
<< SPE_HDR_CONN_TYPE_SHIFT
) & SPE_HDR_CONN_TYPE
;
1404 type_16
|= (bp
->pfid
<< SPE_HDR_FUNCTION_ID_SHIFT
) &
1405 SPE_HDR_FUNCTION_ID
;
1407 kwqe
.hdr
.type
= cpu_to_le16(type_16
);
1408 kwqe
.hdr
.reserved1
= 0;
1409 kwqe
.data
.phy_address
.lo
= cpu_to_le32(l5_data
->phy_address
.lo
);
1410 kwqe
.data
.phy_address
.hi
= cpu_to_le32(l5_data
->phy_address
.hi
);
1412 kwq
[0] = (struct kwqe_16
*) &kwqe
;
1414 spin_lock_bh(&cp
->cnic_ulp_lock
);
1415 ret
= cp
->ethdev
->drv_submit_kwqes_16(dev
->netdev
, kwq
, 1);
1416 spin_unlock_bh(&cp
->cnic_ulp_lock
);
1424 static void cnic_reply_bnx2x_kcqes(struct cnic_dev
*dev
, int ulp_type
,
1425 struct kcqe
*cqes
[], u32 num_cqes
)
1427 struct cnic_local
*cp
= dev
->cnic_priv
;
1428 struct cnic_ulp_ops
*ulp_ops
;
1431 ulp_ops
= rcu_dereference(cp
->ulp_ops
[ulp_type
]);
1432 if (likely(ulp_ops
)) {
1433 ulp_ops
->indicate_kcqes(cp
->ulp_handle
[ulp_type
],
1439 static void cnic_bnx2x_set_tcp_options(struct cnic_dev
*dev
, int time_stamps
,
1442 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
1443 u8 xstorm_flags
= XSTORM_L5CM_TCP_FLAGS_WND_SCL_EN
;
1444 u16 tstorm_flags
= 0;
1447 xstorm_flags
|= XSTORM_L5CM_TCP_FLAGS_TS_ENABLED
;
1448 tstorm_flags
|= TSTORM_L5CM_TCP_FLAGS_TS_ENABLED
;
1451 tstorm_flags
|= TSTORM_L5CM_TCP_FLAGS_DELAYED_ACK_EN
;
1453 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
1454 XSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(bp
->pfid
), xstorm_flags
);
1456 CNIC_WR16(dev
, BAR_TSTRORM_INTMEM
+
1457 TSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(bp
->pfid
), tstorm_flags
);
1460 static int cnic_bnx2x_iscsi_init1(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1462 struct cnic_local
*cp
= dev
->cnic_priv
;
1463 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
1464 struct iscsi_kwqe_init1
*req1
= (struct iscsi_kwqe_init1
*) kwqe
;
1466 u32 pfid
= bp
->pfid
;
1468 cp
->num_iscsi_tasks
= req1
->num_tasks_per_conn
;
1469 cp
->num_ccells
= req1
->num_ccells_per_conn
;
1470 cp
->task_array_size
= BNX2X_ISCSI_TASK_CONTEXT_SIZE
*
1471 cp
->num_iscsi_tasks
;
1472 cp
->r2tq_size
= cp
->num_iscsi_tasks
* BNX2X_ISCSI_MAX_PENDING_R2TS
*
1473 BNX2X_ISCSI_R2TQE_SIZE
;
1474 cp
->hq_size
= cp
->num_ccells
* BNX2X_ISCSI_HQ_BD_SIZE
;
1475 pages
= CNIC_PAGE_ALIGN(cp
->hq_size
) / CNIC_PAGE_SIZE
;
1476 hq_bds
= pages
* (CNIC_PAGE_SIZE
/ BNX2X_ISCSI_HQ_BD_SIZE
);
1477 cp
->num_cqs
= req1
->num_cqs
;
1479 if (!dev
->max_iscsi_conn
)
1482 /* init Tstorm RAM */
1483 CNIC_WR16(dev
, BAR_TSTRORM_INTMEM
+ TSTORM_ISCSI_RQ_SIZE_OFFSET(pfid
),
1485 CNIC_WR16(dev
, BAR_TSTRORM_INTMEM
+ TSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid
),
1487 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
1488 TSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid
), CNIC_PAGE_BITS
);
1489 CNIC_WR16(dev
, BAR_TSTRORM_INTMEM
+
1490 TSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid
),
1491 req1
->num_tasks_per_conn
);
1493 /* init Ustorm RAM */
1494 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+
1495 USTORM_ISCSI_RQ_BUFFER_SIZE_OFFSET(pfid
),
1496 req1
->rq_buffer_size
);
1497 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+ USTORM_ISCSI_PAGE_SIZE_OFFSET(pfid
),
1499 CNIC_WR8(dev
, BAR_USTRORM_INTMEM
+
1500 USTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid
), CNIC_PAGE_BITS
);
1501 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+
1502 USTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid
),
1503 req1
->num_tasks_per_conn
);
1504 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+ USTORM_ISCSI_RQ_SIZE_OFFSET(pfid
),
1506 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+ USTORM_ISCSI_CQ_SIZE_OFFSET(pfid
),
1508 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+ USTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid
),
1509 cp
->num_iscsi_tasks
* BNX2X_ISCSI_MAX_PENDING_R2TS
);
1511 /* init Xstorm RAM */
1512 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+ XSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid
),
1514 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
1515 XSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid
), CNIC_PAGE_BITS
);
1516 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+
1517 XSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid
),
1518 req1
->num_tasks_per_conn
);
1519 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+ XSTORM_ISCSI_HQ_SIZE_OFFSET(pfid
),
1521 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+ XSTORM_ISCSI_SQ_SIZE_OFFSET(pfid
),
1522 req1
->num_tasks_per_conn
);
1523 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+ XSTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid
),
1524 cp
->num_iscsi_tasks
* BNX2X_ISCSI_MAX_PENDING_R2TS
);
1526 /* init Cstorm RAM */
1527 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+ CSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid
),
1529 CNIC_WR8(dev
, BAR_CSTRORM_INTMEM
+
1530 CSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid
), CNIC_PAGE_BITS
);
1531 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+
1532 CSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid
),
1533 req1
->num_tasks_per_conn
);
1534 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+ CSTORM_ISCSI_CQ_SIZE_OFFSET(pfid
),
1536 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+ CSTORM_ISCSI_HQ_SIZE_OFFSET(pfid
),
1539 cnic_bnx2x_set_tcp_options(dev
,
1540 req1
->flags
& ISCSI_KWQE_INIT1_TIME_STAMPS_ENABLE
,
1541 req1
->flags
& ISCSI_KWQE_INIT1_DELAYED_ACK_ENABLE
);
1546 static int cnic_bnx2x_iscsi_init2(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1548 struct iscsi_kwqe_init2
*req2
= (struct iscsi_kwqe_init2
*) kwqe
;
1549 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
1550 u32 pfid
= bp
->pfid
;
1551 struct iscsi_kcqe kcqe
;
1552 struct kcqe
*cqes
[1];
1554 memset(&kcqe
, 0, sizeof(kcqe
));
1555 if (!dev
->max_iscsi_conn
) {
1556 kcqe
.completion_status
=
1557 ISCSI_KCQE_COMPLETION_STATUS_ISCSI_NOT_SUPPORTED
;
1561 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+
1562 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid
), req2
->error_bit_map
[0]);
1563 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+
1564 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid
) + 4,
1565 req2
->error_bit_map
[1]);
1567 CNIC_WR16(dev
, BAR_USTRORM_INTMEM
+
1568 USTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid
), req2
->max_cq_sqn
);
1569 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
1570 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid
), req2
->error_bit_map
[0]);
1571 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
1572 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid
) + 4,
1573 req2
->error_bit_map
[1]);
1575 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+
1576 CSTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid
), req2
->max_cq_sqn
);
1578 kcqe
.completion_status
= ISCSI_KCQE_COMPLETION_STATUS_SUCCESS
;
1581 kcqe
.op_code
= ISCSI_KCQE_OPCODE_INIT
;
1582 cqes
[0] = (struct kcqe
*) &kcqe
;
1583 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_ISCSI
, cqes
, 1);
1588 static void cnic_free_bnx2x_conn_resc(struct cnic_dev
*dev
, u32 l5_cid
)
1590 struct cnic_local
*cp
= dev
->cnic_priv
;
1591 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
1593 if (ctx
->ulp_proto_id
== CNIC_ULP_ISCSI
) {
1594 struct cnic_iscsi
*iscsi
= ctx
->proto
.iscsi
;
1596 cnic_free_dma(dev
, &iscsi
->hq_info
);
1597 cnic_free_dma(dev
, &iscsi
->r2tq_info
);
1598 cnic_free_dma(dev
, &iscsi
->task_array_info
);
1599 cnic_free_id(&cp
->cid_tbl
, ctx
->cid
);
1601 cnic_free_id(&cp
->fcoe_cid_tbl
, ctx
->cid
);
1607 static int cnic_alloc_bnx2x_conn_resc(struct cnic_dev
*dev
, u32 l5_cid
)
1611 struct cnic_local
*cp
= dev
->cnic_priv
;
1612 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
1613 struct cnic_iscsi
*iscsi
= ctx
->proto
.iscsi
;
1615 if (ctx
->ulp_proto_id
== CNIC_ULP_FCOE
) {
1616 cid
= cnic_alloc_new_id(&cp
->fcoe_cid_tbl
);
1625 cid
= cnic_alloc_new_id(&cp
->cid_tbl
);
1632 pages
= CNIC_PAGE_ALIGN(cp
->task_array_size
) / CNIC_PAGE_SIZE
;
1634 ret
= cnic_alloc_dma(dev
, &iscsi
->task_array_info
, pages
, 1);
1638 pages
= CNIC_PAGE_ALIGN(cp
->r2tq_size
) / CNIC_PAGE_SIZE
;
1639 ret
= cnic_alloc_dma(dev
, &iscsi
->r2tq_info
, pages
, 1);
1643 pages
= CNIC_PAGE_ALIGN(cp
->hq_size
) / CNIC_PAGE_SIZE
;
1644 ret
= cnic_alloc_dma(dev
, &iscsi
->hq_info
, pages
, 1);
1651 cnic_free_bnx2x_conn_resc(dev
, l5_cid
);
1655 static void *cnic_get_bnx2x_ctx(struct cnic_dev
*dev
, u32 cid
, int init
,
1656 struct regpair
*ctx_addr
)
1658 struct cnic_local
*cp
= dev
->cnic_priv
;
1659 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
1660 int blk
= (cid
- ethdev
->starting_cid
) / cp
->cids_per_blk
;
1661 int off
= (cid
- ethdev
->starting_cid
) % cp
->cids_per_blk
;
1662 unsigned long align_off
= 0;
1666 if (cp
->ctx_align
) {
1667 unsigned long mask
= cp
->ctx_align
- 1;
1669 if (cp
->ctx_arr
[blk
].mapping
& mask
)
1670 align_off
= cp
->ctx_align
-
1671 (cp
->ctx_arr
[blk
].mapping
& mask
);
1673 ctx_map
= cp
->ctx_arr
[blk
].mapping
+ align_off
+
1674 (off
* BNX2X_CONTEXT_MEM_SIZE
);
1675 ctx
= cp
->ctx_arr
[blk
].ctx
+ align_off
+
1676 (off
* BNX2X_CONTEXT_MEM_SIZE
);
1678 memset(ctx
, 0, BNX2X_CONTEXT_MEM_SIZE
);
1680 ctx_addr
->lo
= ctx_map
& 0xffffffff;
1681 ctx_addr
->hi
= (u64
) ctx_map
>> 32;
1685 static int cnic_setup_bnx2x_ctx(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
1688 struct cnic_local
*cp
= dev
->cnic_priv
;
1689 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
1690 struct iscsi_kwqe_conn_offload1
*req1
=
1691 (struct iscsi_kwqe_conn_offload1
*) wqes
[0];
1692 struct iscsi_kwqe_conn_offload2
*req2
=
1693 (struct iscsi_kwqe_conn_offload2
*) wqes
[1];
1694 struct iscsi_kwqe_conn_offload3
*req3
;
1695 struct cnic_context
*ctx
= &cp
->ctx_tbl
[req1
->iscsi_conn_id
];
1696 struct cnic_iscsi
*iscsi
= ctx
->proto
.iscsi
;
1698 u32 hw_cid
= BNX2X_HW_CID(bp
, cid
);
1699 struct iscsi_context
*ictx
;
1700 struct regpair context_addr
;
1701 int i
, j
, n
= 2, n_max
;
1702 u8 port
= BP_PORT(bp
);
1705 if (!req2
->num_additional_wqes
)
1708 n_max
= req2
->num_additional_wqes
+ 2;
1710 ictx
= cnic_get_bnx2x_ctx(dev
, cid
, 1, &context_addr
);
1714 req3
= (struct iscsi_kwqe_conn_offload3
*) wqes
[n
++];
1716 ictx
->xstorm_ag_context
.hq_prod
= 1;
1718 ictx
->xstorm_st_context
.iscsi
.first_burst_length
=
1719 ISCSI_DEF_FIRST_BURST_LEN
;
1720 ictx
->xstorm_st_context
.iscsi
.max_send_pdu_length
=
1721 ISCSI_DEF_MAX_RECV_SEG_LEN
;
1722 ictx
->xstorm_st_context
.iscsi
.sq_pbl_base
.lo
=
1723 req1
->sq_page_table_addr_lo
;
1724 ictx
->xstorm_st_context
.iscsi
.sq_pbl_base
.hi
=
1725 req1
->sq_page_table_addr_hi
;
1726 ictx
->xstorm_st_context
.iscsi
.sq_curr_pbe
.lo
= req2
->sq_first_pte
.hi
;
1727 ictx
->xstorm_st_context
.iscsi
.sq_curr_pbe
.hi
= req2
->sq_first_pte
.lo
;
1728 ictx
->xstorm_st_context
.iscsi
.hq_pbl_base
.lo
=
1729 iscsi
->hq_info
.pgtbl_map
& 0xffffffff;
1730 ictx
->xstorm_st_context
.iscsi
.hq_pbl_base
.hi
=
1731 (u64
) iscsi
->hq_info
.pgtbl_map
>> 32;
1732 ictx
->xstorm_st_context
.iscsi
.hq_curr_pbe_base
.lo
=
1733 iscsi
->hq_info
.pgtbl
[0];
1734 ictx
->xstorm_st_context
.iscsi
.hq_curr_pbe_base
.hi
=
1735 iscsi
->hq_info
.pgtbl
[1];
1736 ictx
->xstorm_st_context
.iscsi
.r2tq_pbl_base
.lo
=
1737 iscsi
->r2tq_info
.pgtbl_map
& 0xffffffff;
1738 ictx
->xstorm_st_context
.iscsi
.r2tq_pbl_base
.hi
=
1739 (u64
) iscsi
->r2tq_info
.pgtbl_map
>> 32;
1740 ictx
->xstorm_st_context
.iscsi
.r2tq_curr_pbe_base
.lo
=
1741 iscsi
->r2tq_info
.pgtbl
[0];
1742 ictx
->xstorm_st_context
.iscsi
.r2tq_curr_pbe_base
.hi
=
1743 iscsi
->r2tq_info
.pgtbl
[1];
1744 ictx
->xstorm_st_context
.iscsi
.task_pbl_base
.lo
=
1745 iscsi
->task_array_info
.pgtbl_map
& 0xffffffff;
1746 ictx
->xstorm_st_context
.iscsi
.task_pbl_base
.hi
=
1747 (u64
) iscsi
->task_array_info
.pgtbl_map
>> 32;
1748 ictx
->xstorm_st_context
.iscsi
.task_pbl_cache_idx
=
1749 BNX2X_ISCSI_PBL_NOT_CACHED
;
1750 ictx
->xstorm_st_context
.iscsi
.flags
.flags
|=
1751 XSTORM_ISCSI_CONTEXT_FLAGS_B_IMMEDIATE_DATA
;
1752 ictx
->xstorm_st_context
.iscsi
.flags
.flags
|=
1753 XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T
;
1754 ictx
->xstorm_st_context
.common
.ethernet
.reserved_vlan_type
=
1756 if (BNX2X_CHIP_IS_E2_PLUS(bp
) &&
1757 bp
->common
.chip_port_mode
== CHIP_2_PORT_MODE
) {
1761 ictx
->xstorm_st_context
.common
.flags
=
1762 1 << XSTORM_COMMON_CONTEXT_SECTION_PHYSQ_INITIALIZED_SHIFT
;
1763 ictx
->xstorm_st_context
.common
.flags
=
1764 port
<< XSTORM_COMMON_CONTEXT_SECTION_PBF_PORT_SHIFT
;
1766 ictx
->tstorm_st_context
.iscsi
.hdr_bytes_2_fetch
= ISCSI_HEADER_SIZE
;
1767 /* TSTORM requires the base address of RQ DB & not PTE */
1768 ictx
->tstorm_st_context
.iscsi
.rq_db_phy_addr
.lo
=
1769 req2
->rq_page_table_addr_lo
& CNIC_PAGE_MASK
;
1770 ictx
->tstorm_st_context
.iscsi
.rq_db_phy_addr
.hi
=
1771 req2
->rq_page_table_addr_hi
;
1772 ictx
->tstorm_st_context
.iscsi
.iscsi_conn_id
= req1
->iscsi_conn_id
;
1773 ictx
->tstorm_st_context
.tcp
.cwnd
= 0x5A8;
1774 ictx
->tstorm_st_context
.tcp
.flags2
|=
1775 TSTORM_TCP_ST_CONTEXT_SECTION_DA_EN
;
1776 ictx
->tstorm_st_context
.tcp
.ooo_support_mode
=
1777 TCP_TSTORM_OOO_DROP_AND_PROC_ACK
;
1779 ictx
->timers_context
.flags
|= TIMERS_BLOCK_CONTEXT_CONN_VALID_FLG
;
1781 ictx
->ustorm_st_context
.ring
.rq
.pbl_base
.lo
=
1782 req2
->rq_page_table_addr_lo
;
1783 ictx
->ustorm_st_context
.ring
.rq
.pbl_base
.hi
=
1784 req2
->rq_page_table_addr_hi
;
1785 ictx
->ustorm_st_context
.ring
.rq
.curr_pbe
.lo
= req3
->qp_first_pte
[0].hi
;
1786 ictx
->ustorm_st_context
.ring
.rq
.curr_pbe
.hi
= req3
->qp_first_pte
[0].lo
;
1787 ictx
->ustorm_st_context
.ring
.r2tq
.pbl_base
.lo
=
1788 iscsi
->r2tq_info
.pgtbl_map
& 0xffffffff;
1789 ictx
->ustorm_st_context
.ring
.r2tq
.pbl_base
.hi
=
1790 (u64
) iscsi
->r2tq_info
.pgtbl_map
>> 32;
1791 ictx
->ustorm_st_context
.ring
.r2tq
.curr_pbe
.lo
=
1792 iscsi
->r2tq_info
.pgtbl
[0];
1793 ictx
->ustorm_st_context
.ring
.r2tq
.curr_pbe
.hi
=
1794 iscsi
->r2tq_info
.pgtbl
[1];
1795 ictx
->ustorm_st_context
.ring
.cq_pbl_base
.lo
=
1796 req1
->cq_page_table_addr_lo
;
1797 ictx
->ustorm_st_context
.ring
.cq_pbl_base
.hi
=
1798 req1
->cq_page_table_addr_hi
;
1799 ictx
->ustorm_st_context
.ring
.cq
[0].cq_sn
= ISCSI_INITIAL_SN
;
1800 ictx
->ustorm_st_context
.ring
.cq
[0].curr_pbe
.lo
= req2
->cq_first_pte
.hi
;
1801 ictx
->ustorm_st_context
.ring
.cq
[0].curr_pbe
.hi
= req2
->cq_first_pte
.lo
;
1802 ictx
->ustorm_st_context
.task_pbe_cache_index
=
1803 BNX2X_ISCSI_PBL_NOT_CACHED
;
1804 ictx
->ustorm_st_context
.task_pdu_cache_index
=
1805 BNX2X_ISCSI_PDU_HEADER_NOT_CACHED
;
1807 for (i
= 1, j
= 1; i
< cp
->num_cqs
; i
++, j
++) {
1811 req3
= (struct iscsi_kwqe_conn_offload3
*) wqes
[n
++];
1814 ictx
->ustorm_st_context
.ring
.cq
[i
].cq_sn
= ISCSI_INITIAL_SN
;
1815 ictx
->ustorm_st_context
.ring
.cq
[i
].curr_pbe
.lo
=
1816 req3
->qp_first_pte
[j
].hi
;
1817 ictx
->ustorm_st_context
.ring
.cq
[i
].curr_pbe
.hi
=
1818 req3
->qp_first_pte
[j
].lo
;
1821 ictx
->ustorm_st_context
.task_pbl_base
.lo
=
1822 iscsi
->task_array_info
.pgtbl_map
& 0xffffffff;
1823 ictx
->ustorm_st_context
.task_pbl_base
.hi
=
1824 (u64
) iscsi
->task_array_info
.pgtbl_map
>> 32;
1825 ictx
->ustorm_st_context
.tce_phy_addr
.lo
=
1826 iscsi
->task_array_info
.pgtbl
[0];
1827 ictx
->ustorm_st_context
.tce_phy_addr
.hi
=
1828 iscsi
->task_array_info
.pgtbl
[1];
1829 ictx
->ustorm_st_context
.iscsi_conn_id
= req1
->iscsi_conn_id
;
1830 ictx
->ustorm_st_context
.num_cqs
= cp
->num_cqs
;
1831 ictx
->ustorm_st_context
.negotiated_rx
|= ISCSI_DEF_MAX_RECV_SEG_LEN
;
1832 ictx
->ustorm_st_context
.negotiated_rx_and_flags
|=
1833 ISCSI_DEF_MAX_BURST_LEN
;
1834 ictx
->ustorm_st_context
.negotiated_rx
|=
1835 ISCSI_DEFAULT_MAX_OUTSTANDING_R2T
<<
1836 USTORM_ISCSI_ST_CONTEXT_MAX_OUTSTANDING_R2TS_SHIFT
;
1838 ictx
->cstorm_st_context
.hq_pbl_base
.lo
=
1839 iscsi
->hq_info
.pgtbl_map
& 0xffffffff;
1840 ictx
->cstorm_st_context
.hq_pbl_base
.hi
=
1841 (u64
) iscsi
->hq_info
.pgtbl_map
>> 32;
1842 ictx
->cstorm_st_context
.hq_curr_pbe
.lo
= iscsi
->hq_info
.pgtbl
[0];
1843 ictx
->cstorm_st_context
.hq_curr_pbe
.hi
= iscsi
->hq_info
.pgtbl
[1];
1844 ictx
->cstorm_st_context
.task_pbl_base
.lo
=
1845 iscsi
->task_array_info
.pgtbl_map
& 0xffffffff;
1846 ictx
->cstorm_st_context
.task_pbl_base
.hi
=
1847 (u64
) iscsi
->task_array_info
.pgtbl_map
>> 32;
1848 /* CSTORM and USTORM initialization is different, CSTORM requires
1849 * CQ DB base & not PTE addr */
1850 ictx
->cstorm_st_context
.cq_db_base
.lo
=
1851 req1
->cq_page_table_addr_lo
& CNIC_PAGE_MASK
;
1852 ictx
->cstorm_st_context
.cq_db_base
.hi
= req1
->cq_page_table_addr_hi
;
1853 ictx
->cstorm_st_context
.iscsi_conn_id
= req1
->iscsi_conn_id
;
1854 ictx
->cstorm_st_context
.cq_proc_en_bit_map
= (1 << cp
->num_cqs
) - 1;
1855 for (i
= 0; i
< cp
->num_cqs
; i
++) {
1856 ictx
->cstorm_st_context
.cq_c_prod_sqn_arr
.sqn
[i
] =
1858 ictx
->cstorm_st_context
.cq_c_sqn_2_notify_arr
.sqn
[i
] =
1862 ictx
->xstorm_ag_context
.cdu_reserved
=
1863 CDU_RSRVD_VALUE_TYPE_A(hw_cid
, CDU_REGION_NUMBER_XCM_AG
,
1864 ISCSI_CONNECTION_TYPE
);
1865 ictx
->ustorm_ag_context
.cdu_usage
=
1866 CDU_RSRVD_VALUE_TYPE_A(hw_cid
, CDU_REGION_NUMBER_UCM_AG
,
1867 ISCSI_CONNECTION_TYPE
);
1872 static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
1875 struct iscsi_kwqe_conn_offload1
*req1
;
1876 struct iscsi_kwqe_conn_offload2
*req2
;
1877 struct cnic_local
*cp
= dev
->cnic_priv
;
1878 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
1879 struct cnic_context
*ctx
;
1880 struct iscsi_kcqe kcqe
;
1881 struct kcqe
*cqes
[1];
1890 req1
= (struct iscsi_kwqe_conn_offload1
*) wqes
[0];
1891 req2
= (struct iscsi_kwqe_conn_offload2
*) wqes
[1];
1892 if ((num
- 2) < req2
->num_additional_wqes
) {
1896 *work
= 2 + req2
->num_additional_wqes
;
1898 l5_cid
= req1
->iscsi_conn_id
;
1899 if (l5_cid
>= MAX_ISCSI_TBL_SZ
)
1902 memset(&kcqe
, 0, sizeof(kcqe
));
1903 kcqe
.op_code
= ISCSI_KCQE_OPCODE_OFFLOAD_CONN
;
1904 kcqe
.iscsi_conn_id
= l5_cid
;
1905 kcqe
.completion_status
= ISCSI_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE
;
1907 ctx
= &cp
->ctx_tbl
[l5_cid
];
1908 if (test_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
)) {
1909 kcqe
.completion_status
=
1910 ISCSI_KCQE_COMPLETION_STATUS_CID_BUSY
;
1914 if (atomic_inc_return(&cp
->iscsi_conn
) > dev
->max_iscsi_conn
) {
1915 atomic_dec(&cp
->iscsi_conn
);
1918 ret
= cnic_alloc_bnx2x_conn_resc(dev
, l5_cid
);
1920 atomic_dec(&cp
->iscsi_conn
);
1924 ret
= cnic_setup_bnx2x_ctx(dev
, wqes
, num
);
1926 cnic_free_bnx2x_conn_resc(dev
, l5_cid
);
1927 atomic_dec(&cp
->iscsi_conn
);
1931 kcqe
.completion_status
= ISCSI_KCQE_COMPLETION_STATUS_SUCCESS
;
1932 kcqe
.iscsi_conn_context_id
= BNX2X_HW_CID(bp
, cp
->ctx_tbl
[l5_cid
].cid
);
1935 cqes
[0] = (struct kcqe
*) &kcqe
;
1936 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_ISCSI
, cqes
, 1);
1941 static int cnic_bnx2x_iscsi_update(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1943 struct cnic_local
*cp
= dev
->cnic_priv
;
1944 struct iscsi_kwqe_conn_update
*req
=
1945 (struct iscsi_kwqe_conn_update
*) kwqe
;
1947 union l5cm_specific_data l5_data
;
1948 u32 l5_cid
, cid
= BNX2X_SW_CID(req
->context_id
);
1951 if (cnic_get_l5_cid(cp
, cid
, &l5_cid
) != 0)
1954 data
= cnic_get_kwqe_16_data(cp
, l5_cid
, &l5_data
);
1958 memcpy(data
, kwqe
, sizeof(struct kwqe
));
1960 ret
= cnic_submit_kwqe_16(dev
, ISCSI_RAMROD_CMD_ID_UPDATE_CONN
,
1961 req
->context_id
, ISCSI_CONNECTION_TYPE
, &l5_data
);
1965 static int cnic_bnx2x_destroy_ramrod(struct cnic_dev
*dev
, u32 l5_cid
)
1967 struct cnic_local
*cp
= dev
->cnic_priv
;
1968 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
1969 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
1970 union l5cm_specific_data l5_data
;
1974 init_waitqueue_head(&ctx
->waitq
);
1976 memset(&l5_data
, 0, sizeof(l5_data
));
1977 hw_cid
= BNX2X_HW_CID(bp
, ctx
->cid
);
1979 ret
= cnic_submit_kwqe_16(dev
, RAMROD_CMD_ID_COMMON_CFC_DEL
,
1980 hw_cid
, NONE_CONNECTION_TYPE
, &l5_data
);
1983 wait_event_timeout(ctx
->waitq
, ctx
->wait_cond
, CNIC_RAMROD_TMO
);
1984 if (unlikely(test_bit(CTX_FL_CID_ERROR
, &ctx
->ctx_flags
)))
1991 static int cnic_bnx2x_iscsi_destroy(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
1993 struct cnic_local
*cp
= dev
->cnic_priv
;
1994 struct iscsi_kwqe_conn_destroy
*req
=
1995 (struct iscsi_kwqe_conn_destroy
*) kwqe
;
1996 u32 l5_cid
= req
->reserved0
;
1997 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
1999 struct iscsi_kcqe kcqe
;
2000 struct kcqe
*cqes
[1];
2002 if (!test_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
))
2003 goto skip_cfc_delete
;
2005 if (!time_after(jiffies
, ctx
->timestamp
+ (2 * HZ
))) {
2006 unsigned long delta
= ctx
->timestamp
+ (2 * HZ
) - jiffies
;
2008 if (delta
> (2 * HZ
))
2011 set_bit(CTX_FL_DELETE_WAIT
, &ctx
->ctx_flags
);
2012 queue_delayed_work(cnic_wq
, &cp
->delete_task
, delta
);
2016 ret
= cnic_bnx2x_destroy_ramrod(dev
, l5_cid
);
2019 cnic_free_bnx2x_conn_resc(dev
, l5_cid
);
2022 atomic_dec(&cp
->iscsi_conn
);
2023 clear_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
);
2027 memset(&kcqe
, 0, sizeof(kcqe
));
2028 kcqe
.op_code
= ISCSI_KCQE_OPCODE_DESTROY_CONN
;
2029 kcqe
.iscsi_conn_id
= l5_cid
;
2030 kcqe
.completion_status
= ISCSI_KCQE_COMPLETION_STATUS_SUCCESS
;
2031 kcqe
.iscsi_conn_context_id
= req
->context_id
;
2033 cqes
[0] = (struct kcqe
*) &kcqe
;
2034 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_ISCSI
, cqes
, 1);
2039 static void cnic_init_storm_conn_bufs(struct cnic_dev
*dev
,
2040 struct l4_kwq_connect_req1
*kwqe1
,
2041 struct l4_kwq_connect_req3
*kwqe3
,
2042 struct l5cm_active_conn_buffer
*conn_buf
)
2044 struct l5cm_conn_addr_params
*conn_addr
= &conn_buf
->conn_addr_buf
;
2045 struct l5cm_xstorm_conn_buffer
*xstorm_buf
=
2046 &conn_buf
->xstorm_conn_buffer
;
2047 struct l5cm_tstorm_conn_buffer
*tstorm_buf
=
2048 &conn_buf
->tstorm_conn_buffer
;
2049 struct regpair context_addr
;
2050 u32 cid
= BNX2X_SW_CID(kwqe1
->cid
);
2051 struct in6_addr src_ip
, dst_ip
;
2055 addrp
= (u32
*) &conn_addr
->local_ip_addr
;
2056 for (i
= 0; i
< 4; i
++, addrp
++)
2057 src_ip
.in6_u
.u6_addr32
[i
] = cpu_to_be32(*addrp
);
2059 addrp
= (u32
*) &conn_addr
->remote_ip_addr
;
2060 for (i
= 0; i
< 4; i
++, addrp
++)
2061 dst_ip
.in6_u
.u6_addr32
[i
] = cpu_to_be32(*addrp
);
2063 cnic_get_bnx2x_ctx(dev
, cid
, 0, &context_addr
);
2065 xstorm_buf
->context_addr
.hi
= context_addr
.hi
;
2066 xstorm_buf
->context_addr
.lo
= context_addr
.lo
;
2067 xstorm_buf
->mss
= 0xffff;
2068 xstorm_buf
->rcv_buf
= kwqe3
->rcv_buf
;
2069 if (kwqe1
->tcp_flags
& L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE
)
2070 xstorm_buf
->params
|= L5CM_XSTORM_CONN_BUFFER_NAGLE_ENABLE
;
2071 xstorm_buf
->pseudo_header_checksum
=
2072 swab16(~csum_ipv6_magic(&src_ip
, &dst_ip
, 0, IPPROTO_TCP
, 0));
2074 if (kwqe3
->ka_timeout
) {
2075 tstorm_buf
->ka_enable
= 1;
2076 tstorm_buf
->ka_timeout
= kwqe3
->ka_timeout
;
2077 tstorm_buf
->ka_interval
= kwqe3
->ka_interval
;
2078 tstorm_buf
->ka_max_probe_count
= kwqe3
->ka_max_probe_count
;
2080 tstorm_buf
->max_rt_time
= 0xffffffff;
2083 static void cnic_init_bnx2x_mac(struct cnic_dev
*dev
)
2085 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
2086 u32 pfid
= bp
->pfid
;
2087 u8
*mac
= dev
->mac_addr
;
2089 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
2090 XSTORM_ISCSI_LOCAL_MAC_ADDR0_OFFSET(pfid
), mac
[0]);
2091 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
2092 XSTORM_ISCSI_LOCAL_MAC_ADDR1_OFFSET(pfid
), mac
[1]);
2093 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
2094 XSTORM_ISCSI_LOCAL_MAC_ADDR2_OFFSET(pfid
), mac
[2]);
2095 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
2096 XSTORM_ISCSI_LOCAL_MAC_ADDR3_OFFSET(pfid
), mac
[3]);
2097 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
2098 XSTORM_ISCSI_LOCAL_MAC_ADDR4_OFFSET(pfid
), mac
[4]);
2099 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
2100 XSTORM_ISCSI_LOCAL_MAC_ADDR5_OFFSET(pfid
), mac
[5]);
2102 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
2103 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid
), mac
[5]);
2104 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
2105 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid
) + 1,
2107 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
2108 TSTORM_ISCSI_TCP_VARS_MID_LOCAL_MAC_ADDR_OFFSET(pfid
), mac
[3]);
2109 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
2110 TSTORM_ISCSI_TCP_VARS_MID_LOCAL_MAC_ADDR_OFFSET(pfid
) + 1,
2112 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
2113 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid
), mac
[1]);
2114 CNIC_WR8(dev
, BAR_TSTRORM_INTMEM
+
2115 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid
) + 1,
2119 static int cnic_bnx2x_connect(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
2122 struct cnic_local
*cp
= dev
->cnic_priv
;
2123 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
2124 struct l4_kwq_connect_req1
*kwqe1
=
2125 (struct l4_kwq_connect_req1
*) wqes
[0];
2126 struct l4_kwq_connect_req3
*kwqe3
;
2127 struct l5cm_active_conn_buffer
*conn_buf
;
2128 struct l5cm_conn_addr_params
*conn_addr
;
2129 union l5cm_specific_data l5_data
;
2130 u32 l5_cid
= kwqe1
->pg_cid
;
2131 struct cnic_sock
*csk
= &cp
->csk_tbl
[l5_cid
];
2132 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
2140 if (kwqe1
->conn_flags
& L4_KWQ_CONNECT_REQ1_IP_V6
)
2150 if (sizeof(*conn_buf
) > CNIC_KWQ16_DATA_SIZE
) {
2151 netdev_err(dev
->netdev
, "conn_buf size too big\n");
2154 conn_buf
= cnic_get_kwqe_16_data(cp
, l5_cid
, &l5_data
);
2158 memset(conn_buf
, 0, sizeof(*conn_buf
));
2160 conn_addr
= &conn_buf
->conn_addr_buf
;
2161 conn_addr
->remote_addr_0
= csk
->ha
[0];
2162 conn_addr
->remote_addr_1
= csk
->ha
[1];
2163 conn_addr
->remote_addr_2
= csk
->ha
[2];
2164 conn_addr
->remote_addr_3
= csk
->ha
[3];
2165 conn_addr
->remote_addr_4
= csk
->ha
[4];
2166 conn_addr
->remote_addr_5
= csk
->ha
[5];
2168 if (kwqe1
->conn_flags
& L4_KWQ_CONNECT_REQ1_IP_V6
) {
2169 struct l4_kwq_connect_req2
*kwqe2
=
2170 (struct l4_kwq_connect_req2
*) wqes
[1];
2172 conn_addr
->local_ip_addr
.ip_addr_hi_hi
= kwqe2
->src_ip_v6_4
;
2173 conn_addr
->local_ip_addr
.ip_addr_hi_lo
= kwqe2
->src_ip_v6_3
;
2174 conn_addr
->local_ip_addr
.ip_addr_lo_hi
= kwqe2
->src_ip_v6_2
;
2176 conn_addr
->remote_ip_addr
.ip_addr_hi_hi
= kwqe2
->dst_ip_v6_4
;
2177 conn_addr
->remote_ip_addr
.ip_addr_hi_lo
= kwqe2
->dst_ip_v6_3
;
2178 conn_addr
->remote_ip_addr
.ip_addr_lo_hi
= kwqe2
->dst_ip_v6_2
;
2179 conn_addr
->params
|= L5CM_CONN_ADDR_PARAMS_IP_VERSION
;
2181 kwqe3
= (struct l4_kwq_connect_req3
*) wqes
[*work
- 1];
2183 conn_addr
->local_ip_addr
.ip_addr_lo_lo
= kwqe1
->src_ip
;
2184 conn_addr
->remote_ip_addr
.ip_addr_lo_lo
= kwqe1
->dst_ip
;
2185 conn_addr
->local_tcp_port
= kwqe1
->src_port
;
2186 conn_addr
->remote_tcp_port
= kwqe1
->dst_port
;
2188 conn_addr
->pmtu
= kwqe3
->pmtu
;
2189 cnic_init_storm_conn_bufs(dev
, kwqe1
, kwqe3
, conn_buf
);
2191 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+
2192 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(bp
->pfid
), csk
->vlan_id
);
2194 ret
= cnic_submit_kwqe_16(dev
, L5CM_RAMROD_CMD_ID_TCP_CONNECT
,
2195 kwqe1
->cid
, ISCSI_CONNECTION_TYPE
, &l5_data
);
2197 set_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
);
2202 static int cnic_bnx2x_close(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
2204 struct l4_kwq_close_req
*req
= (struct l4_kwq_close_req
*) kwqe
;
2205 union l5cm_specific_data l5_data
;
2208 memset(&l5_data
, 0, sizeof(l5_data
));
2209 ret
= cnic_submit_kwqe_16(dev
, L5CM_RAMROD_CMD_ID_CLOSE
,
2210 req
->cid
, ISCSI_CONNECTION_TYPE
, &l5_data
);
2214 static int cnic_bnx2x_reset(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
2216 struct l4_kwq_reset_req
*req
= (struct l4_kwq_reset_req
*) kwqe
;
2217 union l5cm_specific_data l5_data
;
2220 memset(&l5_data
, 0, sizeof(l5_data
));
2221 ret
= cnic_submit_kwqe_16(dev
, L5CM_RAMROD_CMD_ID_ABORT
,
2222 req
->cid
, ISCSI_CONNECTION_TYPE
, &l5_data
);
2225 static int cnic_bnx2x_offload_pg(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
2227 struct l4_kwq_offload_pg
*req
= (struct l4_kwq_offload_pg
*) kwqe
;
2229 struct kcqe
*cqes
[1];
2231 memset(&kcqe
, 0, sizeof(kcqe
));
2232 kcqe
.pg_host_opaque
= req
->host_opaque
;
2233 kcqe
.pg_cid
= req
->host_opaque
;
2234 kcqe
.op_code
= L4_KCQE_OPCODE_VALUE_OFFLOAD_PG
;
2235 cqes
[0] = (struct kcqe
*) &kcqe
;
2236 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_L4
, cqes
, 1);
2240 static int cnic_bnx2x_update_pg(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
2242 struct l4_kwq_update_pg
*req
= (struct l4_kwq_update_pg
*) kwqe
;
2244 struct kcqe
*cqes
[1];
2246 memset(&kcqe
, 0, sizeof(kcqe
));
2247 kcqe
.pg_host_opaque
= req
->pg_host_opaque
;
2248 kcqe
.pg_cid
= req
->pg_cid
;
2249 kcqe
.op_code
= L4_KCQE_OPCODE_VALUE_UPDATE_PG
;
2250 cqes
[0] = (struct kcqe
*) &kcqe
;
2251 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_L4
, cqes
, 1);
2255 static int cnic_bnx2x_fcoe_stat(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
2257 struct fcoe_kwqe_stat
*req
;
2258 struct fcoe_stat_ramrod_params
*fcoe_stat
;
2259 union l5cm_specific_data l5_data
;
2260 struct cnic_local
*cp
= dev
->cnic_priv
;
2261 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
2265 req
= (struct fcoe_kwqe_stat
*) kwqe
;
2266 cid
= BNX2X_HW_CID(bp
, cp
->fcoe_init_cid
);
2268 fcoe_stat
= cnic_get_kwqe_16_data(cp
, BNX2X_FCOE_L5_CID_BASE
, &l5_data
);
2272 memset(fcoe_stat
, 0, sizeof(*fcoe_stat
));
2273 memcpy(&fcoe_stat
->stat_kwqe
, req
, sizeof(*req
));
2275 ret
= cnic_submit_kwqe_16(dev
, FCOE_RAMROD_CMD_ID_STAT_FUNC
, cid
,
2276 FCOE_CONNECTION_TYPE
, &l5_data
);
2280 static int cnic_bnx2x_fcoe_init1(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
2284 struct cnic_local
*cp
= dev
->cnic_priv
;
2285 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
2287 struct fcoe_init_ramrod_params
*fcoe_init
;
2288 struct fcoe_kwqe_init1
*req1
;
2289 struct fcoe_kwqe_init2
*req2
;
2290 struct fcoe_kwqe_init3
*req3
;
2291 union l5cm_specific_data l5_data
;
2297 req1
= (struct fcoe_kwqe_init1
*) wqes
[0];
2298 req2
= (struct fcoe_kwqe_init2
*) wqes
[1];
2299 req3
= (struct fcoe_kwqe_init3
*) wqes
[2];
2300 if (req2
->hdr
.op_code
!= FCOE_KWQE_OPCODE_INIT2
) {
2304 if (req3
->hdr
.op_code
!= FCOE_KWQE_OPCODE_INIT3
) {
2309 if (sizeof(*fcoe_init
) > CNIC_KWQ16_DATA_SIZE
) {
2310 netdev_err(dev
->netdev
, "fcoe_init size too big\n");
2313 fcoe_init
= cnic_get_kwqe_16_data(cp
, BNX2X_FCOE_L5_CID_BASE
, &l5_data
);
2317 memset(fcoe_init
, 0, sizeof(*fcoe_init
));
2318 memcpy(&fcoe_init
->init_kwqe1
, req1
, sizeof(*req1
));
2319 memcpy(&fcoe_init
->init_kwqe2
, req2
, sizeof(*req2
));
2320 memcpy(&fcoe_init
->init_kwqe3
, req3
, sizeof(*req3
));
2321 fcoe_init
->eq_pbl_base
.lo
= cp
->kcq2
.dma
.pgtbl_map
& 0xffffffff;
2322 fcoe_init
->eq_pbl_base
.hi
= (u64
) cp
->kcq2
.dma
.pgtbl_map
>> 32;
2323 fcoe_init
->eq_pbl_size
= cp
->kcq2
.dma
.num_pages
;
2325 fcoe_init
->sb_num
= cp
->status_blk_num
;
2326 fcoe_init
->eq_prod
= MAX_KCQ_IDX
;
2327 fcoe_init
->sb_id
= HC_INDEX_FCOE_EQ_CONS
;
2328 cp
->kcq2
.sw_prod_idx
= 0;
2330 cid
= BNX2X_HW_CID(bp
, cp
->fcoe_init_cid
);
2331 ret
= cnic_submit_kwqe_16(dev
, FCOE_RAMROD_CMD_ID_INIT_FUNC
, cid
,
2332 FCOE_CONNECTION_TYPE
, &l5_data
);
2337 static int cnic_bnx2x_fcoe_ofld1(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
2341 u32 cid
= -1, l5_cid
;
2342 struct cnic_local
*cp
= dev
->cnic_priv
;
2343 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
2344 struct fcoe_kwqe_conn_offload1
*req1
;
2345 struct fcoe_kwqe_conn_offload2
*req2
;
2346 struct fcoe_kwqe_conn_offload3
*req3
;
2347 struct fcoe_kwqe_conn_offload4
*req4
;
2348 struct fcoe_conn_offload_ramrod_params
*fcoe_offload
;
2349 struct cnic_context
*ctx
;
2350 struct fcoe_context
*fctx
;
2351 struct regpair ctx_addr
;
2352 union l5cm_specific_data l5_data
;
2353 struct fcoe_kcqe kcqe
;
2354 struct kcqe
*cqes
[1];
2360 req1
= (struct fcoe_kwqe_conn_offload1
*) wqes
[0];
2361 req2
= (struct fcoe_kwqe_conn_offload2
*) wqes
[1];
2362 req3
= (struct fcoe_kwqe_conn_offload3
*) wqes
[2];
2363 req4
= (struct fcoe_kwqe_conn_offload4
*) wqes
[3];
2367 l5_cid
= req1
->fcoe_conn_id
;
2368 if (l5_cid
>= dev
->max_fcoe_conn
)
2371 l5_cid
+= BNX2X_FCOE_L5_CID_BASE
;
2373 ctx
= &cp
->ctx_tbl
[l5_cid
];
2374 if (test_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
))
2377 ret
= cnic_alloc_bnx2x_conn_resc(dev
, l5_cid
);
2384 fctx
= cnic_get_bnx2x_ctx(dev
, cid
, 1, &ctx_addr
);
2386 u32 hw_cid
= BNX2X_HW_CID(bp
, cid
);
2389 val
= CDU_RSRVD_VALUE_TYPE_A(hw_cid
, CDU_REGION_NUMBER_XCM_AG
,
2390 FCOE_CONNECTION_TYPE
);
2391 fctx
->xstorm_ag_context
.cdu_reserved
= val
;
2392 val
= CDU_RSRVD_VALUE_TYPE_A(hw_cid
, CDU_REGION_NUMBER_UCM_AG
,
2393 FCOE_CONNECTION_TYPE
);
2394 fctx
->ustorm_ag_context
.cdu_usage
= val
;
2396 if (sizeof(*fcoe_offload
) > CNIC_KWQ16_DATA_SIZE
) {
2397 netdev_err(dev
->netdev
, "fcoe_offload size too big\n");
2400 fcoe_offload
= cnic_get_kwqe_16_data(cp
, l5_cid
, &l5_data
);
2404 memset(fcoe_offload
, 0, sizeof(*fcoe_offload
));
2405 memcpy(&fcoe_offload
->offload_kwqe1
, req1
, sizeof(*req1
));
2406 memcpy(&fcoe_offload
->offload_kwqe2
, req2
, sizeof(*req2
));
2407 memcpy(&fcoe_offload
->offload_kwqe3
, req3
, sizeof(*req3
));
2408 memcpy(&fcoe_offload
->offload_kwqe4
, req4
, sizeof(*req4
));
2410 cid
= BNX2X_HW_CID(bp
, cid
);
2411 ret
= cnic_submit_kwqe_16(dev
, FCOE_RAMROD_CMD_ID_OFFLOAD_CONN
, cid
,
2412 FCOE_CONNECTION_TYPE
, &l5_data
);
2414 set_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
);
2420 cnic_free_bnx2x_conn_resc(dev
, l5_cid
);
2422 memset(&kcqe
, 0, sizeof(kcqe
));
2423 kcqe
.op_code
= FCOE_KCQE_OPCODE_OFFLOAD_CONN
;
2424 kcqe
.fcoe_conn_id
= req1
->fcoe_conn_id
;
2425 kcqe
.completion_status
= FCOE_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE
;
2427 cqes
[0] = (struct kcqe
*) &kcqe
;
2428 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_FCOE
, cqes
, 1);
2432 static int cnic_bnx2x_fcoe_enable(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
2434 struct fcoe_kwqe_conn_enable_disable
*req
;
2435 struct fcoe_conn_enable_disable_ramrod_params
*fcoe_enable
;
2436 union l5cm_specific_data l5_data
;
2439 struct cnic_local
*cp
= dev
->cnic_priv
;
2441 req
= (struct fcoe_kwqe_conn_enable_disable
*) kwqe
;
2442 cid
= req
->context_id
;
2443 l5_cid
= req
->conn_id
+ BNX2X_FCOE_L5_CID_BASE
;
2445 if (sizeof(*fcoe_enable
) > CNIC_KWQ16_DATA_SIZE
) {
2446 netdev_err(dev
->netdev
, "fcoe_enable size too big\n");
2449 fcoe_enable
= cnic_get_kwqe_16_data(cp
, l5_cid
, &l5_data
);
2453 memset(fcoe_enable
, 0, sizeof(*fcoe_enable
));
2454 memcpy(&fcoe_enable
->enable_disable_kwqe
, req
, sizeof(*req
));
2455 ret
= cnic_submit_kwqe_16(dev
, FCOE_RAMROD_CMD_ID_ENABLE_CONN
, cid
,
2456 FCOE_CONNECTION_TYPE
, &l5_data
);
2460 static int cnic_bnx2x_fcoe_disable(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
2462 struct fcoe_kwqe_conn_enable_disable
*req
;
2463 struct fcoe_conn_enable_disable_ramrod_params
*fcoe_disable
;
2464 union l5cm_specific_data l5_data
;
2467 struct cnic_local
*cp
= dev
->cnic_priv
;
2469 req
= (struct fcoe_kwqe_conn_enable_disable
*) kwqe
;
2470 cid
= req
->context_id
;
2471 l5_cid
= req
->conn_id
;
2472 if (l5_cid
>= dev
->max_fcoe_conn
)
2475 l5_cid
+= BNX2X_FCOE_L5_CID_BASE
;
2477 if (sizeof(*fcoe_disable
) > CNIC_KWQ16_DATA_SIZE
) {
2478 netdev_err(dev
->netdev
, "fcoe_disable size too big\n");
2481 fcoe_disable
= cnic_get_kwqe_16_data(cp
, l5_cid
, &l5_data
);
2485 memset(fcoe_disable
, 0, sizeof(*fcoe_disable
));
2486 memcpy(&fcoe_disable
->enable_disable_kwqe
, req
, sizeof(*req
));
2487 ret
= cnic_submit_kwqe_16(dev
, FCOE_RAMROD_CMD_ID_DISABLE_CONN
, cid
,
2488 FCOE_CONNECTION_TYPE
, &l5_data
);
2492 static int cnic_bnx2x_fcoe_destroy(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
2494 struct fcoe_kwqe_conn_destroy
*req
;
2495 union l5cm_specific_data l5_data
;
2498 struct cnic_local
*cp
= dev
->cnic_priv
;
2499 struct cnic_context
*ctx
;
2500 struct fcoe_kcqe kcqe
;
2501 struct kcqe
*cqes
[1];
2503 req
= (struct fcoe_kwqe_conn_destroy
*) kwqe
;
2504 cid
= req
->context_id
;
2505 l5_cid
= req
->conn_id
;
2506 if (l5_cid
>= dev
->max_fcoe_conn
)
2509 l5_cid
+= BNX2X_FCOE_L5_CID_BASE
;
2511 ctx
= &cp
->ctx_tbl
[l5_cid
];
2513 init_waitqueue_head(&ctx
->waitq
);
2516 memset(&kcqe
, 0, sizeof(kcqe
));
2517 kcqe
.completion_status
= FCOE_KCQE_COMPLETION_STATUS_ERROR
;
2518 memset(&l5_data
, 0, sizeof(l5_data
));
2519 ret
= cnic_submit_kwqe_16(dev
, FCOE_RAMROD_CMD_ID_TERMINATE_CONN
, cid
,
2520 FCOE_CONNECTION_TYPE
, &l5_data
);
2522 wait_event_timeout(ctx
->waitq
, ctx
->wait_cond
, CNIC_RAMROD_TMO
);
2524 kcqe
.completion_status
= 0;
2527 set_bit(CTX_FL_DELETE_WAIT
, &ctx
->ctx_flags
);
2528 queue_delayed_work(cnic_wq
, &cp
->delete_task
, msecs_to_jiffies(2000));
2530 kcqe
.op_code
= FCOE_KCQE_OPCODE_DESTROY_CONN
;
2531 kcqe
.fcoe_conn_id
= req
->conn_id
;
2532 kcqe
.fcoe_conn_context_id
= cid
;
2534 cqes
[0] = (struct kcqe
*) &kcqe
;
2535 cnic_reply_bnx2x_kcqes(dev
, CNIC_ULP_FCOE
, cqes
, 1);
2539 static void cnic_bnx2x_delete_wait(struct cnic_dev
*dev
, u32 start_cid
)
2541 struct cnic_local
*cp
= dev
->cnic_priv
;
2544 for (i
= start_cid
; i
< cp
->max_cid_space
; i
++) {
2545 struct cnic_context
*ctx
= &cp
->ctx_tbl
[i
];
2548 while (test_bit(CTX_FL_DELETE_WAIT
, &ctx
->ctx_flags
))
2551 for (j
= 0; j
< 5; j
++) {
2552 if (!test_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
))
2557 if (test_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
))
2558 netdev_warn(dev
->netdev
, "CID %x not deleted\n",
2563 static int cnic_bnx2x_fcoe_fw_destroy(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
2565 union l5cm_specific_data l5_data
;
2566 struct cnic_local
*cp
= dev
->cnic_priv
;
2567 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
2571 cnic_bnx2x_delete_wait(dev
, MAX_ISCSI_TBL_SZ
);
2573 cid
= BNX2X_HW_CID(bp
, cp
->fcoe_init_cid
);
2575 memset(&l5_data
, 0, sizeof(l5_data
));
2576 ret
= cnic_submit_kwqe_16(dev
, FCOE_RAMROD_CMD_ID_DESTROY_FUNC
, cid
,
2577 FCOE_CONNECTION_TYPE
, &l5_data
);
2581 static void cnic_bnx2x_kwqe_err(struct cnic_dev
*dev
, struct kwqe
*kwqe
)
2583 struct cnic_local
*cp
= dev
->cnic_priv
;
2585 struct kcqe
*cqes
[1];
2587 u32 opcode
= KWQE_OPCODE(kwqe
->kwqe_op_flag
);
2588 u32 layer_code
= kwqe
->kwqe_op_flag
& KWQE_LAYER_MASK
;
2592 cid
= kwqe
->kwqe_info0
;
2593 memset(&kcqe
, 0, sizeof(kcqe
));
2595 if (layer_code
== KWQE_FLAGS_LAYER_MASK_L5_FCOE
) {
2598 ulp_type
= CNIC_ULP_FCOE
;
2599 if (opcode
== FCOE_KWQE_OPCODE_DISABLE_CONN
) {
2600 struct fcoe_kwqe_conn_enable_disable
*req
;
2602 req
= (struct fcoe_kwqe_conn_enable_disable
*) kwqe
;
2603 kcqe_op
= FCOE_KCQE_OPCODE_DISABLE_CONN
;
2604 cid
= req
->context_id
;
2605 l5_cid
= req
->conn_id
;
2606 } else if (opcode
== FCOE_KWQE_OPCODE_DESTROY
) {
2607 kcqe_op
= FCOE_KCQE_OPCODE_DESTROY_FUNC
;
2611 kcqe
.kcqe_op_flag
= kcqe_op
<< KCQE_FLAGS_OPCODE_SHIFT
;
2612 kcqe
.kcqe_op_flag
|= KCQE_FLAGS_LAYER_MASK_L5_FCOE
;
2613 kcqe
.kcqe_info1
= FCOE_KCQE_COMPLETION_STATUS_PARITY_ERROR
;
2614 kcqe
.kcqe_info2
= cid
;
2615 kcqe
.kcqe_info0
= l5_cid
;
2617 } else if (layer_code
== KWQE_FLAGS_LAYER_MASK_L5_ISCSI
) {
2618 ulp_type
= CNIC_ULP_ISCSI
;
2619 if (opcode
== ISCSI_KWQE_OPCODE_UPDATE_CONN
)
2620 cid
= kwqe
->kwqe_info1
;
2622 kcqe
.kcqe_op_flag
= (opcode
+ 0x10) << KCQE_FLAGS_OPCODE_SHIFT
;
2623 kcqe
.kcqe_op_flag
|= KCQE_FLAGS_LAYER_MASK_L5_ISCSI
;
2624 kcqe
.kcqe_info1
= ISCSI_KCQE_COMPLETION_STATUS_PARITY_ERR
;
2625 kcqe
.kcqe_info2
= cid
;
2626 cnic_get_l5_cid(cp
, BNX2X_SW_CID(cid
), &kcqe
.kcqe_info0
);
2628 } else if (layer_code
== KWQE_FLAGS_LAYER_MASK_L4
) {
2629 struct l4_kcq
*l4kcqe
= (struct l4_kcq
*) &kcqe
;
2631 ulp_type
= CNIC_ULP_L4
;
2632 if (opcode
== L4_KWQE_OPCODE_VALUE_CONNECT1
)
2633 kcqe_op
= L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE
;
2634 else if (opcode
== L4_KWQE_OPCODE_VALUE_RESET
)
2635 kcqe_op
= L4_KCQE_OPCODE_VALUE_RESET_COMP
;
2636 else if (opcode
== L4_KWQE_OPCODE_VALUE_CLOSE
)
2637 kcqe_op
= L4_KCQE_OPCODE_VALUE_CLOSE_COMP
;
2641 kcqe
.kcqe_op_flag
= (kcqe_op
<< KCQE_FLAGS_OPCODE_SHIFT
) |
2642 KCQE_FLAGS_LAYER_MASK_L4
;
2643 l4kcqe
->status
= L4_KCQE_COMPLETION_STATUS_PARITY_ERROR
;
2645 cnic_get_l5_cid(cp
, BNX2X_SW_CID(cid
), &l4kcqe
->conn_id
);
2651 cnic_reply_bnx2x_kcqes(dev
, ulp_type
, cqes
, 1);
2654 static int cnic_submit_bnx2x_iscsi_kwqes(struct cnic_dev
*dev
,
2655 struct kwqe
*wqes
[], u32 num_wqes
)
2661 if (!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
2662 return -EAGAIN
; /* bnx2 is down */
2664 for (i
= 0; i
< num_wqes
; ) {
2666 opcode
= KWQE_OPCODE(kwqe
->kwqe_op_flag
);
2670 case ISCSI_KWQE_OPCODE_INIT1
:
2671 ret
= cnic_bnx2x_iscsi_init1(dev
, kwqe
);
2673 case ISCSI_KWQE_OPCODE_INIT2
:
2674 ret
= cnic_bnx2x_iscsi_init2(dev
, kwqe
);
2676 case ISCSI_KWQE_OPCODE_OFFLOAD_CONN1
:
2677 ret
= cnic_bnx2x_iscsi_ofld1(dev
, &wqes
[i
],
2678 num_wqes
- i
, &work
);
2680 case ISCSI_KWQE_OPCODE_UPDATE_CONN
:
2681 ret
= cnic_bnx2x_iscsi_update(dev
, kwqe
);
2683 case ISCSI_KWQE_OPCODE_DESTROY_CONN
:
2684 ret
= cnic_bnx2x_iscsi_destroy(dev
, kwqe
);
2686 case L4_KWQE_OPCODE_VALUE_CONNECT1
:
2687 ret
= cnic_bnx2x_connect(dev
, &wqes
[i
], num_wqes
- i
,
2690 case L4_KWQE_OPCODE_VALUE_CLOSE
:
2691 ret
= cnic_bnx2x_close(dev
, kwqe
);
2693 case L4_KWQE_OPCODE_VALUE_RESET
:
2694 ret
= cnic_bnx2x_reset(dev
, kwqe
);
2696 case L4_KWQE_OPCODE_VALUE_OFFLOAD_PG
:
2697 ret
= cnic_bnx2x_offload_pg(dev
, kwqe
);
2699 case L4_KWQE_OPCODE_VALUE_UPDATE_PG
:
2700 ret
= cnic_bnx2x_update_pg(dev
, kwqe
);
2702 case L4_KWQE_OPCODE_VALUE_UPLOAD_PG
:
2707 netdev_err(dev
->netdev
, "Unknown type of KWQE(0x%x)\n",
2712 netdev_err(dev
->netdev
, "KWQE(0x%x) failed\n",
2715 /* Possibly bnx2x parity error, send completion
2716 * to ulp drivers with error code to speed up
2717 * cleanup and reset recovery.
2719 if (ret
== -EIO
|| ret
== -EAGAIN
)
2720 cnic_bnx2x_kwqe_err(dev
, kwqe
);
2727 static int cnic_submit_bnx2x_fcoe_kwqes(struct cnic_dev
*dev
,
2728 struct kwqe
*wqes
[], u32 num_wqes
)
2730 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
2735 if (!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
2736 return -EAGAIN
; /* bnx2 is down */
2738 if (!BNX2X_CHIP_IS_E2_PLUS(bp
))
2741 for (i
= 0; i
< num_wqes
; ) {
2743 opcode
= KWQE_OPCODE(kwqe
->kwqe_op_flag
);
2747 case FCOE_KWQE_OPCODE_INIT1
:
2748 ret
= cnic_bnx2x_fcoe_init1(dev
, &wqes
[i
],
2749 num_wqes
- i
, &work
);
2751 case FCOE_KWQE_OPCODE_OFFLOAD_CONN1
:
2752 ret
= cnic_bnx2x_fcoe_ofld1(dev
, &wqes
[i
],
2753 num_wqes
- i
, &work
);
2755 case FCOE_KWQE_OPCODE_ENABLE_CONN
:
2756 ret
= cnic_bnx2x_fcoe_enable(dev
, kwqe
);
2758 case FCOE_KWQE_OPCODE_DISABLE_CONN
:
2759 ret
= cnic_bnx2x_fcoe_disable(dev
, kwqe
);
2761 case FCOE_KWQE_OPCODE_DESTROY_CONN
:
2762 ret
= cnic_bnx2x_fcoe_destroy(dev
, kwqe
);
2764 case FCOE_KWQE_OPCODE_DESTROY
:
2765 ret
= cnic_bnx2x_fcoe_fw_destroy(dev
, kwqe
);
2767 case FCOE_KWQE_OPCODE_STAT
:
2768 ret
= cnic_bnx2x_fcoe_stat(dev
, kwqe
);
2772 netdev_err(dev
->netdev
, "Unknown type of KWQE(0x%x)\n",
2777 netdev_err(dev
->netdev
, "KWQE(0x%x) failed\n",
2780 /* Possibly bnx2x parity error, send completion
2781 * to ulp drivers with error code to speed up
2782 * cleanup and reset recovery.
2784 if (ret
== -EIO
|| ret
== -EAGAIN
)
2785 cnic_bnx2x_kwqe_err(dev
, kwqe
);
2792 static int cnic_submit_bnx2x_kwqes(struct cnic_dev
*dev
, struct kwqe
*wqes
[],
2798 if (!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
2799 return -EAGAIN
; /* bnx2x is down */
2804 layer_code
= wqes
[0]->kwqe_op_flag
& KWQE_LAYER_MASK
;
2805 switch (layer_code
) {
2806 case KWQE_FLAGS_LAYER_MASK_L5_ISCSI
:
2807 case KWQE_FLAGS_LAYER_MASK_L4
:
2808 case KWQE_FLAGS_LAYER_MASK_L2
:
2809 ret
= cnic_submit_bnx2x_iscsi_kwqes(dev
, wqes
, num_wqes
);
2812 case KWQE_FLAGS_LAYER_MASK_L5_FCOE
:
2813 ret
= cnic_submit_bnx2x_fcoe_kwqes(dev
, wqes
, num_wqes
);
2819 static inline u32
cnic_get_kcqe_layer_mask(u32 opflag
)
2821 if (unlikely(KCQE_OPCODE(opflag
) == FCOE_RAMROD_CMD_ID_TERMINATE_CONN
))
2822 return KCQE_FLAGS_LAYER_MASK_L4
;
2824 return opflag
& KCQE_FLAGS_LAYER_MASK
;
2827 static void service_kcqes(struct cnic_dev
*dev
, int num_cqes
)
2829 struct cnic_local
*cp
= dev
->cnic_priv
;
2835 struct cnic_ulp_ops
*ulp_ops
;
2837 u32 kcqe_op_flag
= cp
->completed_kcq
[i
]->kcqe_op_flag
;
2838 u32 kcqe_layer
= cnic_get_kcqe_layer_mask(kcqe_op_flag
);
2840 if (unlikely(kcqe_op_flag
& KCQE_RAMROD_COMPLETION
))
2843 while (j
< num_cqes
) {
2844 u32 next_op
= cp
->completed_kcq
[i
+ j
]->kcqe_op_flag
;
2846 if (cnic_get_kcqe_layer_mask(next_op
) != kcqe_layer
)
2849 if (unlikely(next_op
& KCQE_RAMROD_COMPLETION
))
2854 if (kcqe_layer
== KCQE_FLAGS_LAYER_MASK_L5_RDMA
)
2855 ulp_type
= CNIC_ULP_RDMA
;
2856 else if (kcqe_layer
== KCQE_FLAGS_LAYER_MASK_L5_ISCSI
)
2857 ulp_type
= CNIC_ULP_ISCSI
;
2858 else if (kcqe_layer
== KCQE_FLAGS_LAYER_MASK_L5_FCOE
)
2859 ulp_type
= CNIC_ULP_FCOE
;
2860 else if (kcqe_layer
== KCQE_FLAGS_LAYER_MASK_L4
)
2861 ulp_type
= CNIC_ULP_L4
;
2862 else if (kcqe_layer
== KCQE_FLAGS_LAYER_MASK_L2
)
2865 netdev_err(dev
->netdev
, "Unknown type of KCQE(0x%x)\n",
2871 ulp_ops
= rcu_dereference(cp
->ulp_ops
[ulp_type
]);
2872 if (likely(ulp_ops
)) {
2873 ulp_ops
->indicate_kcqes(cp
->ulp_handle
[ulp_type
],
2874 cp
->completed_kcq
+ i
, j
);
2883 cnic_spq_completion(dev
, DRV_CTL_RET_L5_SPQ_CREDIT_CMD
, comp
);
2886 static int cnic_get_kcqes(struct cnic_dev
*dev
, struct kcq_info
*info
)
2888 struct cnic_local
*cp
= dev
->cnic_priv
;
2889 u16 i
, ri
, hw_prod
, last
;
2891 int kcqe_cnt
= 0, last_cnt
= 0;
2893 i
= ri
= last
= info
->sw_prod_idx
;
2895 hw_prod
= *info
->hw_prod_idx_ptr
;
2896 hw_prod
= info
->hw_idx(hw_prod
);
2898 while ((i
!= hw_prod
) && (kcqe_cnt
< MAX_COMPLETED_KCQE
)) {
2899 kcqe
= &info
->kcq
[KCQ_PG(ri
)][KCQ_IDX(ri
)];
2900 cp
->completed_kcq
[kcqe_cnt
++] = kcqe
;
2901 i
= info
->next_idx(i
);
2902 ri
= i
& MAX_KCQ_IDX
;
2903 if (likely(!(kcqe
->kcqe_op_flag
& KCQE_FLAGS_NEXT
))) {
2904 last_cnt
= kcqe_cnt
;
2909 info
->sw_prod_idx
= last
;
2913 static int cnic_l2_completion(struct cnic_local
*cp
)
2915 u16 hw_cons
, sw_cons
;
2916 struct cnic_uio_dev
*udev
= cp
->udev
;
2917 union eth_rx_cqe
*cqe
, *cqe_ring
= (union eth_rx_cqe
*)
2918 (udev
->l2_ring
+ (2 * CNIC_PAGE_SIZE
));
2922 if (!test_bit(CNIC_F_BNX2X_CLASS
, &cp
->dev
->flags
))
2925 hw_cons
= *cp
->rx_cons_ptr
;
2926 if ((hw_cons
& BNX2X_MAX_RCQ_DESC_CNT
) == BNX2X_MAX_RCQ_DESC_CNT
)
2929 sw_cons
= cp
->rx_cons
;
2930 while (sw_cons
!= hw_cons
) {
2933 cqe
= &cqe_ring
[sw_cons
& BNX2X_MAX_RCQ_DESC_CNT
];
2934 cqe_fp_flags
= cqe
->fast_path_cqe
.type_error_flags
;
2935 if (cqe_fp_flags
& ETH_FAST_PATH_RX_CQE_TYPE
) {
2936 cmd
= le32_to_cpu(cqe
->ramrod_cqe
.conn_and_cmd_data
);
2937 cmd
>>= COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT
;
2938 if (cmd
== RAMROD_CMD_ID_ETH_CLIENT_SETUP
||
2939 cmd
== RAMROD_CMD_ID_ETH_HALT
)
2942 sw_cons
= BNX2X_NEXT_RCQE(sw_cons
);
2947 static void cnic_chk_pkt_rings(struct cnic_local
*cp
)
2949 u16 rx_cons
, tx_cons
;
2952 if (!test_bit(CNIC_LCL_FL_RINGS_INITED
, &cp
->cnic_local_flags
))
2955 rx_cons
= *cp
->rx_cons_ptr
;
2956 tx_cons
= *cp
->tx_cons_ptr
;
2957 if (cp
->tx_cons
!= tx_cons
|| cp
->rx_cons
!= rx_cons
) {
2958 if (test_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
))
2959 comp
= cnic_l2_completion(cp
);
2961 cp
->tx_cons
= tx_cons
;
2962 cp
->rx_cons
= rx_cons
;
2965 uio_event_notify(&cp
->udev
->cnic_uinfo
);
2968 clear_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
);
2971 static u32
cnic_service_bnx2_queues(struct cnic_dev
*dev
)
2973 struct cnic_local
*cp
= dev
->cnic_priv
;
2974 u32 status_idx
= (u16
) *cp
->kcq1
.status_idx_ptr
;
2977 /* status block index must be read before reading other fields */
2979 cp
->kwq_con_idx
= *cp
->kwq_con_idx_ptr
;
2981 while ((kcqe_cnt
= cnic_get_kcqes(dev
, &cp
->kcq1
))) {
2983 service_kcqes(dev
, kcqe_cnt
);
2985 /* Tell compiler that status_blk fields can change. */
2987 status_idx
= (u16
) *cp
->kcq1
.status_idx_ptr
;
2988 /* status block index must be read first */
2990 cp
->kwq_con_idx
= *cp
->kwq_con_idx_ptr
;
2993 CNIC_WR16(dev
, cp
->kcq1
.io_addr
, cp
->kcq1
.sw_prod_idx
);
2995 cnic_chk_pkt_rings(cp
);
3000 static int cnic_service_bnx2(void *data
, void *status_blk
)
3002 struct cnic_dev
*dev
= data
;
3004 if (unlikely(!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))) {
3005 struct status_block
*sblk
= status_blk
;
3007 return sblk
->status_idx
;
3010 return cnic_service_bnx2_queues(dev
);
3013 static void cnic_service_bnx2_msix(unsigned long data
)
3015 struct cnic_dev
*dev
= (struct cnic_dev
*) data
;
3016 struct cnic_local
*cp
= dev
->cnic_priv
;
3018 cp
->last_status_idx
= cnic_service_bnx2_queues(dev
);
3020 CNIC_WR(dev
, BNX2_PCICFG_INT_ACK_CMD
, cp
->int_num
|
3021 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID
| cp
->last_status_idx
);
3024 static void cnic_doirq(struct cnic_dev
*dev
)
3026 struct cnic_local
*cp
= dev
->cnic_priv
;
3028 if (likely(test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))) {
3029 u16 prod
= cp
->kcq1
.sw_prod_idx
& MAX_KCQ_IDX
;
3031 prefetch(cp
->status_blk
.gen
);
3032 prefetch(&cp
->kcq1
.kcq
[KCQ_PG(prod
)][KCQ_IDX(prod
)]);
3034 tasklet_schedule(&cp
->cnic_irq_task
);
3038 static irqreturn_t
cnic_irq(int irq
, void *dev_instance
)
3040 struct cnic_dev
*dev
= dev_instance
;
3041 struct cnic_local
*cp
= dev
->cnic_priv
;
3051 static inline void cnic_ack_bnx2x_int(struct cnic_dev
*dev
, u8 id
, u8 storm
,
3052 u16 index
, u8 op
, u8 update
)
3054 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
3055 u32 hc_addr
= (HC_REG_COMMAND_REG
+ BP_PORT(bp
) * 32 +
3056 COMMAND_REG_INT_ACK
);
3057 struct igu_ack_register igu_ack
;
3059 igu_ack
.status_block_index
= index
;
3060 igu_ack
.sb_id_and_flags
=
3061 ((id
<< IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT
) |
3062 (storm
<< IGU_ACK_REGISTER_STORM_ID_SHIFT
) |
3063 (update
<< IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT
) |
3064 (op
<< IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT
));
3066 CNIC_WR(dev
, hc_addr
, (*(u32
*)&igu_ack
));
3069 static void cnic_ack_igu_sb(struct cnic_dev
*dev
, u8 igu_sb_id
, u8 segment
,
3070 u16 index
, u8 op
, u8 update
)
3072 struct igu_regular cmd_data
;
3073 u32 igu_addr
= BAR_IGU_INTMEM
+ (IGU_CMD_INT_ACK_BASE
+ igu_sb_id
) * 8;
3075 cmd_data
.sb_id_and_flags
=
3076 (index
<< IGU_REGULAR_SB_INDEX_SHIFT
) |
3077 (segment
<< IGU_REGULAR_SEGMENT_ACCESS_SHIFT
) |
3078 (update
<< IGU_REGULAR_BUPDATE_SHIFT
) |
3079 (op
<< IGU_REGULAR_ENABLE_INT_SHIFT
);
3082 CNIC_WR(dev
, igu_addr
, cmd_data
.sb_id_and_flags
);
3085 static void cnic_ack_bnx2x_msix(struct cnic_dev
*dev
)
3087 struct cnic_local
*cp
= dev
->cnic_priv
;
3089 cnic_ack_bnx2x_int(dev
, cp
->bnx2x_igu_sb_id
, CSTORM_ID
, 0,
3090 IGU_INT_DISABLE
, 0);
3093 static void cnic_ack_bnx2x_e2_msix(struct cnic_dev
*dev
)
3095 struct cnic_local
*cp
= dev
->cnic_priv
;
3097 cnic_ack_igu_sb(dev
, cp
->bnx2x_igu_sb_id
, IGU_SEG_ACCESS_DEF
, 0,
3098 IGU_INT_DISABLE
, 0);
3101 static void cnic_arm_bnx2x_msix(struct cnic_dev
*dev
, u32 idx
)
3103 struct cnic_local
*cp
= dev
->cnic_priv
;
3105 cnic_ack_bnx2x_int(dev
, cp
->bnx2x_igu_sb_id
, CSTORM_ID
, idx
,
3109 static void cnic_arm_bnx2x_e2_msix(struct cnic_dev
*dev
, u32 idx
)
3111 struct cnic_local
*cp
= dev
->cnic_priv
;
3113 cnic_ack_igu_sb(dev
, cp
->bnx2x_igu_sb_id
, IGU_SEG_ACCESS_DEF
, idx
,
3117 static u32
cnic_service_bnx2x_kcq(struct cnic_dev
*dev
, struct kcq_info
*info
)
3119 u32 last_status
= *info
->status_idx_ptr
;
3122 /* status block index must be read before reading the KCQ */
3124 while ((kcqe_cnt
= cnic_get_kcqes(dev
, info
))) {
3126 service_kcqes(dev
, kcqe_cnt
);
3128 /* Tell compiler that sblk fields can change. */
3131 last_status
= *info
->status_idx_ptr
;
3132 /* status block index must be read before reading the KCQ */
3138 static void cnic_service_bnx2x_bh(unsigned long data
)
3140 struct cnic_dev
*dev
= (struct cnic_dev
*) data
;
3141 struct cnic_local
*cp
= dev
->cnic_priv
;
3142 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
3143 u32 status_idx
, new_status_idx
;
3145 if (unlikely(!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
)))
3149 status_idx
= cnic_service_bnx2x_kcq(dev
, &cp
->kcq1
);
3151 CNIC_WR16(dev
, cp
->kcq1
.io_addr
,
3152 cp
->kcq1
.sw_prod_idx
+ MAX_KCQ_IDX
);
3154 if (!CNIC_SUPPORTS_FCOE(bp
)) {
3155 cp
->arm_int(dev
, status_idx
);
3159 new_status_idx
= cnic_service_bnx2x_kcq(dev
, &cp
->kcq2
);
3161 if (new_status_idx
!= status_idx
)
3164 CNIC_WR16(dev
, cp
->kcq2
.io_addr
, cp
->kcq2
.sw_prod_idx
+
3167 cnic_ack_igu_sb(dev
, cp
->bnx2x_igu_sb_id
, IGU_SEG_ACCESS_DEF
,
3168 status_idx
, IGU_INT_ENABLE
, 1);
3174 static int cnic_service_bnx2x(void *data
, void *status_blk
)
3176 struct cnic_dev
*dev
= data
;
3177 struct cnic_local
*cp
= dev
->cnic_priv
;
3179 if (!(cp
->ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
))
3182 cnic_chk_pkt_rings(cp
);
3187 static void cnic_ulp_stop_one(struct cnic_local
*cp
, int if_type
)
3189 struct cnic_ulp_ops
*ulp_ops
;
3191 if (if_type
== CNIC_ULP_ISCSI
)
3192 cnic_send_nlmsg(cp
, ISCSI_KEVENT_IF_DOWN
, NULL
);
3194 mutex_lock(&cnic_lock
);
3195 ulp_ops
= rcu_dereference_protected(cp
->ulp_ops
[if_type
],
3196 lockdep_is_held(&cnic_lock
));
3198 mutex_unlock(&cnic_lock
);
3201 set_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[if_type
]);
3202 mutex_unlock(&cnic_lock
);
3204 if (test_and_clear_bit(ULP_F_START
, &cp
->ulp_flags
[if_type
]))
3205 ulp_ops
->cnic_stop(cp
->ulp_handle
[if_type
]);
3207 clear_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[if_type
]);
3210 static void cnic_ulp_stop(struct cnic_dev
*dev
)
3212 struct cnic_local
*cp
= dev
->cnic_priv
;
3215 for (if_type
= 0; if_type
< MAX_CNIC_ULP_TYPE
; if_type
++)
3216 cnic_ulp_stop_one(cp
, if_type
);
3219 static void cnic_ulp_start(struct cnic_dev
*dev
)
3221 struct cnic_local
*cp
= dev
->cnic_priv
;
3224 for (if_type
= 0; if_type
< MAX_CNIC_ULP_TYPE
; if_type
++) {
3225 struct cnic_ulp_ops
*ulp_ops
;
3227 mutex_lock(&cnic_lock
);
3228 ulp_ops
= rcu_dereference_protected(cp
->ulp_ops
[if_type
],
3229 lockdep_is_held(&cnic_lock
));
3230 if (!ulp_ops
|| !ulp_ops
->cnic_start
) {
3231 mutex_unlock(&cnic_lock
);
3234 set_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[if_type
]);
3235 mutex_unlock(&cnic_lock
);
3237 if (!test_and_set_bit(ULP_F_START
, &cp
->ulp_flags
[if_type
]))
3238 ulp_ops
->cnic_start(cp
->ulp_handle
[if_type
]);
3240 clear_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[if_type
]);
3244 static int cnic_copy_ulp_stats(struct cnic_dev
*dev
, int ulp_type
)
3246 struct cnic_local
*cp
= dev
->cnic_priv
;
3247 struct cnic_ulp_ops
*ulp_ops
;
3250 mutex_lock(&cnic_lock
);
3251 ulp_ops
= rcu_dereference_protected(cp
->ulp_ops
[ulp_type
],
3252 lockdep_is_held(&cnic_lock
));
3253 if (ulp_ops
&& ulp_ops
->cnic_get_stats
)
3254 rc
= ulp_ops
->cnic_get_stats(cp
->ulp_handle
[ulp_type
]);
3257 mutex_unlock(&cnic_lock
);
3261 static int cnic_ctl(void *data
, struct cnic_ctl_info
*info
)
3263 struct cnic_dev
*dev
= data
;
3264 int ulp_type
= CNIC_ULP_ISCSI
;
3266 switch (info
->cmd
) {
3267 case CNIC_CTL_STOP_CMD
:
3275 case CNIC_CTL_START_CMD
:
3278 if (!cnic_start_hw(dev
))
3279 cnic_ulp_start(dev
);
3283 case CNIC_CTL_STOP_ISCSI_CMD
: {
3284 struct cnic_local
*cp
= dev
->cnic_priv
;
3285 set_bit(CNIC_LCL_FL_STOP_ISCSI
, &cp
->cnic_local_flags
);
3286 queue_delayed_work(cnic_wq
, &cp
->delete_task
, 0);
3289 case CNIC_CTL_COMPLETION_CMD
: {
3290 struct cnic_ctl_completion
*comp
= &info
->data
.comp
;
3291 u32 cid
= BNX2X_SW_CID(comp
->cid
);
3293 struct cnic_local
*cp
= dev
->cnic_priv
;
3295 if (!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
3298 if (cnic_get_l5_cid(cp
, cid
, &l5_cid
) == 0) {
3299 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
3301 if (unlikely(comp
->error
)) {
3302 set_bit(CTX_FL_CID_ERROR
, &ctx
->ctx_flags
);
3303 netdev_err(dev
->netdev
,
3304 "CID %x CFC delete comp error %x\n",
3309 wake_up(&ctx
->waitq
);
3313 case CNIC_CTL_FCOE_STATS_GET_CMD
:
3314 ulp_type
= CNIC_ULP_FCOE
;
3316 case CNIC_CTL_ISCSI_STATS_GET_CMD
:
3318 cnic_copy_ulp_stats(dev
, ulp_type
);
3328 static void cnic_ulp_init(struct cnic_dev
*dev
)
3331 struct cnic_local
*cp
= dev
->cnic_priv
;
3333 for (i
= 0; i
< MAX_CNIC_ULP_TYPE_EXT
; i
++) {
3334 struct cnic_ulp_ops
*ulp_ops
;
3336 mutex_lock(&cnic_lock
);
3337 ulp_ops
= cnic_ulp_tbl_prot(i
);
3338 if (!ulp_ops
|| !ulp_ops
->cnic_init
) {
3339 mutex_unlock(&cnic_lock
);
3343 mutex_unlock(&cnic_lock
);
3345 if (!test_and_set_bit(ULP_F_INIT
, &cp
->ulp_flags
[i
]))
3346 ulp_ops
->cnic_init(dev
);
3352 static void cnic_ulp_exit(struct cnic_dev
*dev
)
3355 struct cnic_local
*cp
= dev
->cnic_priv
;
3357 for (i
= 0; i
< MAX_CNIC_ULP_TYPE_EXT
; i
++) {
3358 struct cnic_ulp_ops
*ulp_ops
;
3360 mutex_lock(&cnic_lock
);
3361 ulp_ops
= cnic_ulp_tbl_prot(i
);
3362 if (!ulp_ops
|| !ulp_ops
->cnic_exit
) {
3363 mutex_unlock(&cnic_lock
);
3367 mutex_unlock(&cnic_lock
);
3369 if (test_and_clear_bit(ULP_F_INIT
, &cp
->ulp_flags
[i
]))
3370 ulp_ops
->cnic_exit(dev
);
3376 static int cnic_cm_offload_pg(struct cnic_sock
*csk
)
3378 struct cnic_dev
*dev
= csk
->dev
;
3379 struct l4_kwq_offload_pg
*l4kwqe
;
3380 struct kwqe
*wqes
[1];
3382 l4kwqe
= (struct l4_kwq_offload_pg
*) &csk
->kwqe1
;
3383 memset(l4kwqe
, 0, sizeof(*l4kwqe
));
3384 wqes
[0] = (struct kwqe
*) l4kwqe
;
3386 l4kwqe
->op_code
= L4_KWQE_OPCODE_VALUE_OFFLOAD_PG
;
3388 L4_LAYER_CODE
<< L4_KWQ_OFFLOAD_PG_LAYER_CODE_SHIFT
;
3389 l4kwqe
->l2hdr_nbytes
= ETH_HLEN
;
3391 l4kwqe
->da0
= csk
->ha
[0];
3392 l4kwqe
->da1
= csk
->ha
[1];
3393 l4kwqe
->da2
= csk
->ha
[2];
3394 l4kwqe
->da3
= csk
->ha
[3];
3395 l4kwqe
->da4
= csk
->ha
[4];
3396 l4kwqe
->da5
= csk
->ha
[5];
3398 l4kwqe
->sa0
= dev
->mac_addr
[0];
3399 l4kwqe
->sa1
= dev
->mac_addr
[1];
3400 l4kwqe
->sa2
= dev
->mac_addr
[2];
3401 l4kwqe
->sa3
= dev
->mac_addr
[3];
3402 l4kwqe
->sa4
= dev
->mac_addr
[4];
3403 l4kwqe
->sa5
= dev
->mac_addr
[5];
3405 l4kwqe
->etype
= ETH_P_IP
;
3406 l4kwqe
->ipid_start
= DEF_IPID_START
;
3407 l4kwqe
->host_opaque
= csk
->l5_cid
;
3410 l4kwqe
->pg_flags
|= L4_KWQ_OFFLOAD_PG_VLAN_TAGGING
;
3411 l4kwqe
->vlan_tag
= csk
->vlan_id
;
3412 l4kwqe
->l2hdr_nbytes
+= 4;
3415 return dev
->submit_kwqes(dev
, wqes
, 1);
3418 static int cnic_cm_update_pg(struct cnic_sock
*csk
)
3420 struct cnic_dev
*dev
= csk
->dev
;
3421 struct l4_kwq_update_pg
*l4kwqe
;
3422 struct kwqe
*wqes
[1];
3424 l4kwqe
= (struct l4_kwq_update_pg
*) &csk
->kwqe1
;
3425 memset(l4kwqe
, 0, sizeof(*l4kwqe
));
3426 wqes
[0] = (struct kwqe
*) l4kwqe
;
3428 l4kwqe
->opcode
= L4_KWQE_OPCODE_VALUE_UPDATE_PG
;
3430 L4_LAYER_CODE
<< L4_KWQ_UPDATE_PG_LAYER_CODE_SHIFT
;
3431 l4kwqe
->pg_cid
= csk
->pg_cid
;
3433 l4kwqe
->da0
= csk
->ha
[0];
3434 l4kwqe
->da1
= csk
->ha
[1];
3435 l4kwqe
->da2
= csk
->ha
[2];
3436 l4kwqe
->da3
= csk
->ha
[3];
3437 l4kwqe
->da4
= csk
->ha
[4];
3438 l4kwqe
->da5
= csk
->ha
[5];
3440 l4kwqe
->pg_host_opaque
= csk
->l5_cid
;
3441 l4kwqe
->pg_valids
= L4_KWQ_UPDATE_PG_VALIDS_DA
;
3443 return dev
->submit_kwqes(dev
, wqes
, 1);
3446 static int cnic_cm_upload_pg(struct cnic_sock
*csk
)
3448 struct cnic_dev
*dev
= csk
->dev
;
3449 struct l4_kwq_upload
*l4kwqe
;
3450 struct kwqe
*wqes
[1];
3452 l4kwqe
= (struct l4_kwq_upload
*) &csk
->kwqe1
;
3453 memset(l4kwqe
, 0, sizeof(*l4kwqe
));
3454 wqes
[0] = (struct kwqe
*) l4kwqe
;
3456 l4kwqe
->opcode
= L4_KWQE_OPCODE_VALUE_UPLOAD_PG
;
3458 L4_LAYER_CODE
<< L4_KWQ_UPLOAD_LAYER_CODE_SHIFT
;
3459 l4kwqe
->cid
= csk
->pg_cid
;
3461 return dev
->submit_kwqes(dev
, wqes
, 1);
3464 static int cnic_cm_conn_req(struct cnic_sock
*csk
)
3466 struct cnic_dev
*dev
= csk
->dev
;
3467 struct l4_kwq_connect_req1
*l4kwqe1
;
3468 struct l4_kwq_connect_req2
*l4kwqe2
;
3469 struct l4_kwq_connect_req3
*l4kwqe3
;
3470 struct kwqe
*wqes
[3];
3474 l4kwqe1
= (struct l4_kwq_connect_req1
*) &csk
->kwqe1
;
3475 l4kwqe2
= (struct l4_kwq_connect_req2
*) &csk
->kwqe2
;
3476 l4kwqe3
= (struct l4_kwq_connect_req3
*) &csk
->kwqe3
;
3477 memset(l4kwqe1
, 0, sizeof(*l4kwqe1
));
3478 memset(l4kwqe2
, 0, sizeof(*l4kwqe2
));
3479 memset(l4kwqe3
, 0, sizeof(*l4kwqe3
));
3481 l4kwqe3
->op_code
= L4_KWQE_OPCODE_VALUE_CONNECT3
;
3483 L4_LAYER_CODE
<< L4_KWQ_CONNECT_REQ3_LAYER_CODE_SHIFT
;
3484 l4kwqe3
->ka_timeout
= csk
->ka_timeout
;
3485 l4kwqe3
->ka_interval
= csk
->ka_interval
;
3486 l4kwqe3
->ka_max_probe_count
= csk
->ka_max_probe_count
;
3487 l4kwqe3
->tos
= csk
->tos
;
3488 l4kwqe3
->ttl
= csk
->ttl
;
3489 l4kwqe3
->snd_seq_scale
= csk
->snd_seq_scale
;
3490 l4kwqe3
->pmtu
= csk
->mtu
;
3491 l4kwqe3
->rcv_buf
= csk
->rcv_buf
;
3492 l4kwqe3
->snd_buf
= csk
->snd_buf
;
3493 l4kwqe3
->seed
= csk
->seed
;
3495 wqes
[0] = (struct kwqe
*) l4kwqe1
;
3496 if (test_bit(SK_F_IPV6
, &csk
->flags
)) {
3497 wqes
[1] = (struct kwqe
*) l4kwqe2
;
3498 wqes
[2] = (struct kwqe
*) l4kwqe3
;
3501 l4kwqe1
->conn_flags
= L4_KWQ_CONNECT_REQ1_IP_V6
;
3502 l4kwqe2
->op_code
= L4_KWQE_OPCODE_VALUE_CONNECT2
;
3504 L4_KWQ_CONNECT_REQ2_LINKED_WITH_NEXT
|
3505 L4_LAYER_CODE
<< L4_KWQ_CONNECT_REQ2_LAYER_CODE_SHIFT
;
3506 l4kwqe2
->src_ip_v6_2
= be32_to_cpu(csk
->src_ip
[1]);
3507 l4kwqe2
->src_ip_v6_3
= be32_to_cpu(csk
->src_ip
[2]);
3508 l4kwqe2
->src_ip_v6_4
= be32_to_cpu(csk
->src_ip
[3]);
3509 l4kwqe2
->dst_ip_v6_2
= be32_to_cpu(csk
->dst_ip
[1]);
3510 l4kwqe2
->dst_ip_v6_3
= be32_to_cpu(csk
->dst_ip
[2]);
3511 l4kwqe2
->dst_ip_v6_4
= be32_to_cpu(csk
->dst_ip
[3]);
3512 l4kwqe3
->mss
= l4kwqe3
->pmtu
- sizeof(struct ipv6hdr
) -
3513 sizeof(struct tcphdr
);
3515 wqes
[1] = (struct kwqe
*) l4kwqe3
;
3516 l4kwqe3
->mss
= l4kwqe3
->pmtu
- sizeof(struct iphdr
) -
3517 sizeof(struct tcphdr
);
3520 l4kwqe1
->op_code
= L4_KWQE_OPCODE_VALUE_CONNECT1
;
3522 (L4_LAYER_CODE
<< L4_KWQ_CONNECT_REQ1_LAYER_CODE_SHIFT
) |
3523 L4_KWQ_CONNECT_REQ3_LINKED_WITH_NEXT
;
3524 l4kwqe1
->cid
= csk
->cid
;
3525 l4kwqe1
->pg_cid
= csk
->pg_cid
;
3526 l4kwqe1
->src_ip
= be32_to_cpu(csk
->src_ip
[0]);
3527 l4kwqe1
->dst_ip
= be32_to_cpu(csk
->dst_ip
[0]);
3528 l4kwqe1
->src_port
= be16_to_cpu(csk
->src_port
);
3529 l4kwqe1
->dst_port
= be16_to_cpu(csk
->dst_port
);
3530 if (csk
->tcp_flags
& SK_TCP_NO_DELAY_ACK
)
3531 tcp_flags
|= L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK
;
3532 if (csk
->tcp_flags
& SK_TCP_KEEP_ALIVE
)
3533 tcp_flags
|= L4_KWQ_CONNECT_REQ1_KEEP_ALIVE
;
3534 if (csk
->tcp_flags
& SK_TCP_NAGLE
)
3535 tcp_flags
|= L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE
;
3536 if (csk
->tcp_flags
& SK_TCP_TIMESTAMP
)
3537 tcp_flags
|= L4_KWQ_CONNECT_REQ1_TIME_STAMP
;
3538 if (csk
->tcp_flags
& SK_TCP_SACK
)
3539 tcp_flags
|= L4_KWQ_CONNECT_REQ1_SACK
;
3540 if (csk
->tcp_flags
& SK_TCP_SEG_SCALING
)
3541 tcp_flags
|= L4_KWQ_CONNECT_REQ1_SEG_SCALING
;
3543 l4kwqe1
->tcp_flags
= tcp_flags
;
3545 return dev
->submit_kwqes(dev
, wqes
, num_wqes
);
3548 static int cnic_cm_close_req(struct cnic_sock
*csk
)
3550 struct cnic_dev
*dev
= csk
->dev
;
3551 struct l4_kwq_close_req
*l4kwqe
;
3552 struct kwqe
*wqes
[1];
3554 l4kwqe
= (struct l4_kwq_close_req
*) &csk
->kwqe2
;
3555 memset(l4kwqe
, 0, sizeof(*l4kwqe
));
3556 wqes
[0] = (struct kwqe
*) l4kwqe
;
3558 l4kwqe
->op_code
= L4_KWQE_OPCODE_VALUE_CLOSE
;
3559 l4kwqe
->flags
= L4_LAYER_CODE
<< L4_KWQ_CLOSE_REQ_LAYER_CODE_SHIFT
;
3560 l4kwqe
->cid
= csk
->cid
;
3562 return dev
->submit_kwqes(dev
, wqes
, 1);
3565 static int cnic_cm_abort_req(struct cnic_sock
*csk
)
3567 struct cnic_dev
*dev
= csk
->dev
;
3568 struct l4_kwq_reset_req
*l4kwqe
;
3569 struct kwqe
*wqes
[1];
3571 l4kwqe
= (struct l4_kwq_reset_req
*) &csk
->kwqe2
;
3572 memset(l4kwqe
, 0, sizeof(*l4kwqe
));
3573 wqes
[0] = (struct kwqe
*) l4kwqe
;
3575 l4kwqe
->op_code
= L4_KWQE_OPCODE_VALUE_RESET
;
3576 l4kwqe
->flags
= L4_LAYER_CODE
<< L4_KWQ_RESET_REQ_LAYER_CODE_SHIFT
;
3577 l4kwqe
->cid
= csk
->cid
;
3579 return dev
->submit_kwqes(dev
, wqes
, 1);
3582 static int cnic_cm_create(struct cnic_dev
*dev
, int ulp_type
, u32 cid
,
3583 u32 l5_cid
, struct cnic_sock
**csk
, void *context
)
3585 struct cnic_local
*cp
= dev
->cnic_priv
;
3586 struct cnic_sock
*csk1
;
3588 if (l5_cid
>= MAX_CM_SK_TBL_SZ
)
3592 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
3594 if (test_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
))
3598 csk1
= &cp
->csk_tbl
[l5_cid
];
3599 if (atomic_read(&csk1
->ref_count
))
3602 if (test_and_set_bit(SK_F_INUSE
, &csk1
->flags
))
3607 csk1
->l5_cid
= l5_cid
;
3608 csk1
->ulp_type
= ulp_type
;
3609 csk1
->context
= context
;
3611 csk1
->ka_timeout
= DEF_KA_TIMEOUT
;
3612 csk1
->ka_interval
= DEF_KA_INTERVAL
;
3613 csk1
->ka_max_probe_count
= DEF_KA_MAX_PROBE_COUNT
;
3614 csk1
->tos
= DEF_TOS
;
3615 csk1
->ttl
= DEF_TTL
;
3616 csk1
->snd_seq_scale
= DEF_SND_SEQ_SCALE
;
3617 csk1
->rcv_buf
= DEF_RCV_BUF
;
3618 csk1
->snd_buf
= DEF_SND_BUF
;
3619 csk1
->seed
= DEF_SEED
;
3620 csk1
->tcp_flags
= 0;
3626 static void cnic_cm_cleanup(struct cnic_sock
*csk
)
3628 if (csk
->src_port
) {
3629 struct cnic_dev
*dev
= csk
->dev
;
3630 struct cnic_local
*cp
= dev
->cnic_priv
;
3632 cnic_free_id(&cp
->csk_port_tbl
, be16_to_cpu(csk
->src_port
));
3637 static void cnic_close_conn(struct cnic_sock
*csk
)
3639 if (test_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
)) {
3640 cnic_cm_upload_pg(csk
);
3641 clear_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
);
3643 cnic_cm_cleanup(csk
);
3646 static int cnic_cm_destroy(struct cnic_sock
*csk
)
3648 if (!cnic_in_use(csk
))
3652 clear_bit(SK_F_INUSE
, &csk
->flags
);
3653 smp_mb__after_atomic();
3654 while (atomic_read(&csk
->ref_count
) != 1)
3656 cnic_cm_cleanup(csk
);
3663 static inline u16
cnic_get_vlan(struct net_device
*dev
,
3664 struct net_device
**vlan_dev
)
3666 if (is_vlan_dev(dev
)) {
3667 *vlan_dev
= vlan_dev_real_dev(dev
);
3668 return vlan_dev_vlan_id(dev
);
3674 static int cnic_get_v4_route(struct sockaddr_in
*dst_addr
,
3675 struct dst_entry
**dst
)
3677 #if defined(CONFIG_INET)
3680 rt
= ip_route_output(&init_net
, dst_addr
->sin_addr
.s_addr
, 0, 0, 0);
3687 return -ENETUNREACH
;
3691 static int cnic_get_v6_route(struct sockaddr_in6
*dst_addr
,
3692 struct dst_entry
**dst
)
3694 #if IS_ENABLED(CONFIG_IPV6)
3697 memset(&fl6
, 0, sizeof(fl6
));
3698 fl6
.daddr
= dst_addr
->sin6_addr
;
3699 if (ipv6_addr_type(&fl6
.daddr
) & IPV6_ADDR_LINKLOCAL
)
3700 fl6
.flowi6_oif
= dst_addr
->sin6_scope_id
;
3702 *dst
= ip6_route_output(&init_net
, NULL
, &fl6
);
3703 if ((*dst
)->error
) {
3706 return -ENETUNREACH
;
3711 return -ENETUNREACH
;
3714 static struct cnic_dev
*cnic_cm_select_dev(struct sockaddr_in
*dst_addr
,
3717 struct cnic_dev
*dev
= NULL
;
3718 struct dst_entry
*dst
;
3719 struct net_device
*netdev
= NULL
;
3720 int err
= -ENETUNREACH
;
3722 if (dst_addr
->sin_family
== AF_INET
)
3723 err
= cnic_get_v4_route(dst_addr
, &dst
);
3724 else if (dst_addr
->sin_family
== AF_INET6
) {
3725 struct sockaddr_in6
*dst_addr6
=
3726 (struct sockaddr_in6
*) dst_addr
;
3728 err
= cnic_get_v6_route(dst_addr6
, &dst
);
3738 cnic_get_vlan(dst
->dev
, &netdev
);
3740 dev
= cnic_from_netdev(netdev
);
3749 static int cnic_resolve_addr(struct cnic_sock
*csk
, struct cnic_sockaddr
*saddr
)
3751 struct cnic_dev
*dev
= csk
->dev
;
3752 struct cnic_local
*cp
= dev
->cnic_priv
;
3754 return cnic_send_nlmsg(cp
, ISCSI_KEVENT_PATH_REQ
, csk
);
3757 static int cnic_get_route(struct cnic_sock
*csk
, struct cnic_sockaddr
*saddr
)
3759 struct cnic_dev
*dev
= csk
->dev
;
3760 struct cnic_local
*cp
= dev
->cnic_priv
;
3762 struct dst_entry
*dst
= NULL
;
3763 struct net_device
*realdev
;
3767 if (saddr
->local
.v6
.sin6_family
== AF_INET6
&&
3768 saddr
->remote
.v6
.sin6_family
== AF_INET6
)
3770 else if (saddr
->local
.v4
.sin_family
== AF_INET
&&
3771 saddr
->remote
.v4
.sin_family
== AF_INET
)
3776 clear_bit(SK_F_IPV6
, &csk
->flags
);
3779 set_bit(SK_F_IPV6
, &csk
->flags
);
3780 cnic_get_v6_route(&saddr
->remote
.v6
, &dst
);
3782 memcpy(&csk
->dst_ip
[0], &saddr
->remote
.v6
.sin6_addr
,
3783 sizeof(struct in6_addr
));
3784 csk
->dst_port
= saddr
->remote
.v6
.sin6_port
;
3785 local_port
= saddr
->local
.v6
.sin6_port
;
3788 cnic_get_v4_route(&saddr
->remote
.v4
, &dst
);
3790 csk
->dst_ip
[0] = saddr
->remote
.v4
.sin_addr
.s_addr
;
3791 csk
->dst_port
= saddr
->remote
.v4
.sin_port
;
3792 local_port
= saddr
->local
.v4
.sin_port
;
3796 csk
->mtu
= dev
->netdev
->mtu
;
3797 if (dst
&& dst
->dev
) {
3798 u16 vlan
= cnic_get_vlan(dst
->dev
, &realdev
);
3799 if (realdev
== dev
->netdev
) {
3800 csk
->vlan_id
= vlan
;
3801 csk
->mtu
= dst_mtu(dst
);
3805 port_id
= be16_to_cpu(local_port
);
3806 if (port_id
>= CNIC_LOCAL_PORT_MIN
&&
3807 port_id
< CNIC_LOCAL_PORT_MAX
) {
3808 if (cnic_alloc_id(&cp
->csk_port_tbl
, port_id
))
3814 port_id
= cnic_alloc_new_id(&cp
->csk_port_tbl
);
3815 if (port_id
== -1) {
3819 local_port
= cpu_to_be16(port_id
);
3821 csk
->src_port
= local_port
;
3828 static void cnic_init_csk_state(struct cnic_sock
*csk
)
3831 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
3832 clear_bit(SK_F_CLOSING
, &csk
->flags
);
3835 static int cnic_cm_connect(struct cnic_sock
*csk
, struct cnic_sockaddr
*saddr
)
3837 struct cnic_local
*cp
= csk
->dev
->cnic_priv
;
3840 if (cp
->ethdev
->drv_state
& CNIC_DRV_STATE_NO_ISCSI
)
3843 if (!cnic_in_use(csk
))
3846 if (test_and_set_bit(SK_F_CONNECT_START
, &csk
->flags
))
3849 cnic_init_csk_state(csk
);
3851 err
= cnic_get_route(csk
, saddr
);
3855 err
= cnic_resolve_addr(csk
, saddr
);
3860 clear_bit(SK_F_CONNECT_START
, &csk
->flags
);
3864 static int cnic_cm_abort(struct cnic_sock
*csk
)
3866 struct cnic_local
*cp
= csk
->dev
->cnic_priv
;
3867 u32 opcode
= L4_KCQE_OPCODE_VALUE_RESET_COMP
;
3869 if (!cnic_in_use(csk
))
3872 if (cnic_abort_prep(csk
))
3873 return cnic_cm_abort_req(csk
);
3875 /* Getting here means that we haven't started connect, or
3876 * connect was not successful, or it has been reset by the target.
3879 cp
->close_conn(csk
, opcode
);
3880 if (csk
->state
!= opcode
) {
3881 /* Wait for remote reset sequence to complete */
3882 while (test_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
))
3891 static int cnic_cm_close(struct cnic_sock
*csk
)
3893 if (!cnic_in_use(csk
))
3896 if (cnic_close_prep(csk
)) {
3897 csk
->state
= L4_KCQE_OPCODE_VALUE_CLOSE_COMP
;
3898 return cnic_cm_close_req(csk
);
3900 /* Wait for remote reset sequence to complete */
3901 while (test_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
))
3909 static void cnic_cm_upcall(struct cnic_local
*cp
, struct cnic_sock
*csk
,
3912 struct cnic_ulp_ops
*ulp_ops
;
3913 int ulp_type
= csk
->ulp_type
;
3916 ulp_ops
= rcu_dereference(cp
->ulp_ops
[ulp_type
]);
3918 if (opcode
== L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE
)
3919 ulp_ops
->cm_connect_complete(csk
);
3920 else if (opcode
== L4_KCQE_OPCODE_VALUE_CLOSE_COMP
)
3921 ulp_ops
->cm_close_complete(csk
);
3922 else if (opcode
== L4_KCQE_OPCODE_VALUE_RESET_RECEIVED
)
3923 ulp_ops
->cm_remote_abort(csk
);
3924 else if (opcode
== L4_KCQE_OPCODE_VALUE_RESET_COMP
)
3925 ulp_ops
->cm_abort_complete(csk
);
3926 else if (opcode
== L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED
)
3927 ulp_ops
->cm_remote_close(csk
);
3932 static int cnic_cm_set_pg(struct cnic_sock
*csk
)
3934 if (cnic_offld_prep(csk
)) {
3935 if (test_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
))
3936 cnic_cm_update_pg(csk
);
3938 cnic_cm_offload_pg(csk
);
3943 static void cnic_cm_process_offld_pg(struct cnic_dev
*dev
, struct l4_kcq
*kcqe
)
3945 struct cnic_local
*cp
= dev
->cnic_priv
;
3946 u32 l5_cid
= kcqe
->pg_host_opaque
;
3947 u8 opcode
= kcqe
->op_code
;
3948 struct cnic_sock
*csk
= &cp
->csk_tbl
[l5_cid
];
3951 if (!cnic_in_use(csk
))
3954 if (opcode
== L4_KCQE_OPCODE_VALUE_UPDATE_PG
) {
3955 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
3958 /* Possible PG kcqe status: SUCCESS, OFFLOADED_PG, or CTX_ALLOC_FAIL */
3959 if (kcqe
->status
== L4_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAIL
) {
3960 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
3961 cnic_cm_upcall(cp
, csk
,
3962 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE
);
3966 csk
->pg_cid
= kcqe
->pg_cid
;
3967 set_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
);
3968 cnic_cm_conn_req(csk
);
3974 static void cnic_process_fcoe_term_conn(struct cnic_dev
*dev
, struct kcqe
*kcqe
)
3976 struct cnic_local
*cp
= dev
->cnic_priv
;
3977 struct fcoe_kcqe
*fc_kcqe
= (struct fcoe_kcqe
*) kcqe
;
3978 u32 l5_cid
= fc_kcqe
->fcoe_conn_id
+ BNX2X_FCOE_L5_CID_BASE
;
3979 struct cnic_context
*ctx
= &cp
->ctx_tbl
[l5_cid
];
3981 ctx
->timestamp
= jiffies
;
3983 wake_up(&ctx
->waitq
);
3986 static void cnic_cm_process_kcqe(struct cnic_dev
*dev
, struct kcqe
*kcqe
)
3988 struct cnic_local
*cp
= dev
->cnic_priv
;
3989 struct l4_kcq
*l4kcqe
= (struct l4_kcq
*) kcqe
;
3990 u8 opcode
= l4kcqe
->op_code
;
3992 struct cnic_sock
*csk
;
3994 if (opcode
== FCOE_RAMROD_CMD_ID_TERMINATE_CONN
) {
3995 cnic_process_fcoe_term_conn(dev
, kcqe
);
3998 if (opcode
== L4_KCQE_OPCODE_VALUE_OFFLOAD_PG
||
3999 opcode
== L4_KCQE_OPCODE_VALUE_UPDATE_PG
) {
4000 cnic_cm_process_offld_pg(dev
, l4kcqe
);
4004 l5_cid
= l4kcqe
->conn_id
;
4006 l5_cid
= l4kcqe
->cid
;
4007 if (l5_cid
>= MAX_CM_SK_TBL_SZ
)
4010 csk
= &cp
->csk_tbl
[l5_cid
];
4013 if (!cnic_in_use(csk
)) {
4019 case L5CM_RAMROD_CMD_ID_TCP_CONNECT
:
4020 if (l4kcqe
->status
!= 0) {
4021 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
4022 cnic_cm_upcall(cp
, csk
,
4023 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE
);
4026 case L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE
:
4027 if (l4kcqe
->status
== 0)
4028 set_bit(SK_F_OFFLD_COMPLETE
, &csk
->flags
);
4029 else if (l4kcqe
->status
==
4030 L4_KCQE_COMPLETION_STATUS_PARITY_ERROR
)
4031 set_bit(SK_F_HW_ERR
, &csk
->flags
);
4033 smp_mb__before_atomic();
4034 clear_bit(SK_F_OFFLD_SCHED
, &csk
->flags
);
4035 cnic_cm_upcall(cp
, csk
, opcode
);
4038 case L5CM_RAMROD_CMD_ID_CLOSE
: {
4039 struct iscsi_kcqe
*l5kcqe
= (struct iscsi_kcqe
*) kcqe
;
4041 if (l4kcqe
->status
== 0 && l5kcqe
->completion_status
== 0)
4044 netdev_warn(dev
->netdev
, "RAMROD CLOSE compl with status 0x%x completion status 0x%x\n",
4045 l4kcqe
->status
, l5kcqe
->completion_status
);
4046 opcode
= L4_KCQE_OPCODE_VALUE_CLOSE_COMP
;
4049 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED
:
4050 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP
:
4051 case L4_KCQE_OPCODE_VALUE_RESET_COMP
:
4052 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE
:
4053 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD
:
4054 if (l4kcqe
->status
== L4_KCQE_COMPLETION_STATUS_PARITY_ERROR
)
4055 set_bit(SK_F_HW_ERR
, &csk
->flags
);
4057 cp
->close_conn(csk
, opcode
);
4060 case L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED
:
4061 /* after we already sent CLOSE_REQ */
4062 if (test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
) &&
4063 !test_bit(SK_F_OFFLD_COMPLETE
, &csk
->flags
) &&
4064 csk
->state
== L4_KCQE_OPCODE_VALUE_CLOSE_COMP
)
4065 cp
->close_conn(csk
, L4_KCQE_OPCODE_VALUE_RESET_COMP
);
4067 cnic_cm_upcall(cp
, csk
, opcode
);
4073 static void cnic_cm_indicate_kcqe(void *data
, struct kcqe
*kcqe
[], u32 num
)
4075 struct cnic_dev
*dev
= data
;
4078 for (i
= 0; i
< num
; i
++)
4079 cnic_cm_process_kcqe(dev
, kcqe
[i
]);
4082 static struct cnic_ulp_ops cm_ulp_ops
= {
4083 .indicate_kcqes
= cnic_cm_indicate_kcqe
,
4086 static void cnic_cm_free_mem(struct cnic_dev
*dev
)
4088 struct cnic_local
*cp
= dev
->cnic_priv
;
4090 kvfree(cp
->csk_tbl
);
4092 cnic_free_id_tbl(&cp
->csk_port_tbl
);
4095 static int cnic_cm_alloc_mem(struct cnic_dev
*dev
)
4097 struct cnic_local
*cp
= dev
->cnic_priv
;
4101 cp
->csk_tbl
= kvcalloc(MAX_CM_SK_TBL_SZ
, sizeof(struct cnic_sock
),
4106 for (i
= 0; i
< MAX_CM_SK_TBL_SZ
; i
++)
4107 atomic_set(&cp
->csk_tbl
[i
].ref_count
, 0);
4109 port_id
= prandom_u32();
4110 port_id
%= CNIC_LOCAL_PORT_RANGE
;
4111 if (cnic_init_id_tbl(&cp
->csk_port_tbl
, CNIC_LOCAL_PORT_RANGE
,
4112 CNIC_LOCAL_PORT_MIN
, port_id
)) {
4113 cnic_cm_free_mem(dev
);
4119 static int cnic_ready_to_close(struct cnic_sock
*csk
, u32 opcode
)
4121 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE
, &csk
->flags
)) {
4122 /* Unsolicited RESET_COMP or RESET_RECEIVED */
4123 opcode
= L4_KCQE_OPCODE_VALUE_RESET_RECEIVED
;
4124 csk
->state
= opcode
;
4127 /* 1. If event opcode matches the expected event in csk->state
4128 * 2. If the expected event is CLOSE_COMP or RESET_COMP, we accept any
4130 * 3. If the expected event is 0, meaning the connection was never
4131 * never established, we accept the opcode from cm_abort.
4133 if (opcode
== csk
->state
|| csk
->state
== 0 ||
4134 csk
->state
== L4_KCQE_OPCODE_VALUE_CLOSE_COMP
||
4135 csk
->state
== L4_KCQE_OPCODE_VALUE_RESET_COMP
) {
4136 if (!test_and_set_bit(SK_F_CLOSING
, &csk
->flags
)) {
4137 if (csk
->state
== 0)
4138 csk
->state
= opcode
;
4145 static void cnic_close_bnx2_conn(struct cnic_sock
*csk
, u32 opcode
)
4147 struct cnic_dev
*dev
= csk
->dev
;
4148 struct cnic_local
*cp
= dev
->cnic_priv
;
4150 if (opcode
== L4_KCQE_OPCODE_VALUE_RESET_RECEIVED
) {
4151 cnic_cm_upcall(cp
, csk
, opcode
);
4155 clear_bit(SK_F_CONNECT_START
, &csk
->flags
);
4156 cnic_close_conn(csk
);
4157 csk
->state
= opcode
;
4158 cnic_cm_upcall(cp
, csk
, opcode
);
4161 static void cnic_cm_stop_bnx2_hw(struct cnic_dev
*dev
)
4165 static int cnic_cm_init_bnx2_hw(struct cnic_dev
*dev
)
4169 seed
= prandom_u32();
4170 cnic_ctx_wr(dev
, 45, 0, seed
);
4174 static void cnic_close_bnx2x_conn(struct cnic_sock
*csk
, u32 opcode
)
4176 struct cnic_dev
*dev
= csk
->dev
;
4177 struct cnic_local
*cp
= dev
->cnic_priv
;
4178 struct cnic_context
*ctx
= &cp
->ctx_tbl
[csk
->l5_cid
];
4179 union l5cm_specific_data l5_data
;
4181 int close_complete
= 0;
4184 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED
:
4185 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP
:
4186 case L4_KCQE_OPCODE_VALUE_RESET_COMP
:
4187 if (cnic_ready_to_close(csk
, opcode
)) {
4188 if (test_bit(SK_F_HW_ERR
, &csk
->flags
))
4190 else if (test_bit(SK_F_PG_OFFLD_COMPLETE
, &csk
->flags
))
4191 cmd
= L5CM_RAMROD_CMD_ID_SEARCHER_DELETE
;
4196 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE
:
4197 cmd
= L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD
;
4199 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD
:
4204 memset(&l5_data
, 0, sizeof(l5_data
));
4206 cnic_submit_kwqe_16(dev
, cmd
, csk
->cid
, ISCSI_CONNECTION_TYPE
,
4208 } else if (close_complete
) {
4209 ctx
->timestamp
= jiffies
;
4210 cnic_close_conn(csk
);
4211 cnic_cm_upcall(cp
, csk
, csk
->state
);
4215 static void cnic_cm_stop_bnx2x_hw(struct cnic_dev
*dev
)
4217 struct cnic_local
*cp
= dev
->cnic_priv
;
4222 if (!netif_running(dev
->netdev
))
4225 cnic_bnx2x_delete_wait(dev
, 0);
4227 cancel_delayed_work(&cp
->delete_task
);
4228 flush_workqueue(cnic_wq
);
4230 if (atomic_read(&cp
->iscsi_conn
) != 0)
4231 netdev_warn(dev
->netdev
, "%d iSCSI connections not destroyed\n",
4232 atomic_read(&cp
->iscsi_conn
));
4235 static int cnic_cm_init_bnx2x_hw(struct cnic_dev
*dev
)
4237 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
4238 u32 pfid
= bp
->pfid
;
4239 u32 port
= BP_PORT(bp
);
4241 cnic_init_bnx2x_mac(dev
);
4242 cnic_bnx2x_set_tcp_options(dev
, 0, 1);
4244 CNIC_WR16(dev
, BAR_XSTRORM_INTMEM
+
4245 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(pfid
), 0);
4247 CNIC_WR(dev
, BAR_XSTRORM_INTMEM
+
4248 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_ENABLED_OFFSET(port
), 1);
4249 CNIC_WR(dev
, BAR_XSTRORM_INTMEM
+
4250 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_MAX_COUNT_OFFSET(port
),
4253 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
4254 XSTORM_ISCSI_TCP_VARS_TTL_OFFSET(pfid
), DEF_TTL
);
4255 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
4256 XSTORM_ISCSI_TCP_VARS_TOS_OFFSET(pfid
), DEF_TOS
);
4257 CNIC_WR8(dev
, BAR_XSTRORM_INTMEM
+
4258 XSTORM_ISCSI_TCP_VARS_ADV_WND_SCL_OFFSET(pfid
), 2);
4259 CNIC_WR(dev
, BAR_XSTRORM_INTMEM
+
4260 XSTORM_TCP_TX_SWS_TIMER_VAL_OFFSET(pfid
), DEF_SWS_TIMER
);
4262 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+ TSTORM_TCP_MAX_CWND_OFFSET(pfid
),
4267 static void cnic_delete_task(struct work_struct
*work
)
4269 struct cnic_local
*cp
;
4270 struct cnic_dev
*dev
;
4272 int need_resched
= 0;
4274 cp
= container_of(work
, struct cnic_local
, delete_task
.work
);
4277 if (test_and_clear_bit(CNIC_LCL_FL_STOP_ISCSI
, &cp
->cnic_local_flags
)) {
4278 struct drv_ctl_info info
;
4280 cnic_ulp_stop_one(cp
, CNIC_ULP_ISCSI
);
4282 memset(&info
, 0, sizeof(struct drv_ctl_info
));
4283 info
.cmd
= DRV_CTL_ISCSI_STOPPED_CMD
;
4284 cp
->ethdev
->drv_ctl(dev
->netdev
, &info
);
4287 for (i
= 0; i
< cp
->max_cid_space
; i
++) {
4288 struct cnic_context
*ctx
= &cp
->ctx_tbl
[i
];
4291 if (!test_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
) ||
4292 !test_bit(CTX_FL_DELETE_WAIT
, &ctx
->ctx_flags
))
4295 if (!time_after(jiffies
, ctx
->timestamp
+ (2 * HZ
))) {
4300 if (!test_and_clear_bit(CTX_FL_DELETE_WAIT
, &ctx
->ctx_flags
))
4303 err
= cnic_bnx2x_destroy_ramrod(dev
, i
);
4305 cnic_free_bnx2x_conn_resc(dev
, i
);
4307 if (ctx
->ulp_proto_id
== CNIC_ULP_ISCSI
)
4308 atomic_dec(&cp
->iscsi_conn
);
4310 clear_bit(CTX_FL_OFFLD_START
, &ctx
->ctx_flags
);
4315 queue_delayed_work(cnic_wq
, &cp
->delete_task
,
4316 msecs_to_jiffies(10));
4320 static int cnic_cm_open(struct cnic_dev
*dev
)
4322 struct cnic_local
*cp
= dev
->cnic_priv
;
4325 err
= cnic_cm_alloc_mem(dev
);
4329 err
= cp
->start_cm(dev
);
4334 INIT_DELAYED_WORK(&cp
->delete_task
, cnic_delete_task
);
4336 dev
->cm_create
= cnic_cm_create
;
4337 dev
->cm_destroy
= cnic_cm_destroy
;
4338 dev
->cm_connect
= cnic_cm_connect
;
4339 dev
->cm_abort
= cnic_cm_abort
;
4340 dev
->cm_close
= cnic_cm_close
;
4341 dev
->cm_select_dev
= cnic_cm_select_dev
;
4343 cp
->ulp_handle
[CNIC_ULP_L4
] = dev
;
4344 rcu_assign_pointer(cp
->ulp_ops
[CNIC_ULP_L4
], &cm_ulp_ops
);
4348 cnic_cm_free_mem(dev
);
4352 static int cnic_cm_shutdown(struct cnic_dev
*dev
)
4354 struct cnic_local
*cp
= dev
->cnic_priv
;
4360 for (i
= 0; i
< MAX_CM_SK_TBL_SZ
; i
++) {
4361 struct cnic_sock
*csk
= &cp
->csk_tbl
[i
];
4363 clear_bit(SK_F_INUSE
, &csk
->flags
);
4364 cnic_cm_cleanup(csk
);
4366 cnic_cm_free_mem(dev
);
4371 static void cnic_init_context(struct cnic_dev
*dev
, u32 cid
)
4376 cid_addr
= GET_CID_ADDR(cid
);
4378 for (i
= 0; i
< CTX_SIZE
; i
+= 4)
4379 cnic_ctx_wr(dev
, cid_addr
, i
, 0);
4382 static int cnic_setup_5709_context(struct cnic_dev
*dev
, int valid
)
4384 struct cnic_local
*cp
= dev
->cnic_priv
;
4386 u32 valid_bit
= valid
? BNX2_CTX_HOST_PAGE_TBL_DATA0_VALID
: 0;
4388 if (BNX2_CHIP(cp
) != BNX2_CHIP_5709
)
4391 for (i
= 0; i
< cp
->ctx_blks
; i
++) {
4393 u32 idx
= cp
->ctx_arr
[i
].cid
/ cp
->cids_per_blk
;
4396 memset(cp
->ctx_arr
[i
].ctx
, 0, CNIC_PAGE_SIZE
);
4398 CNIC_WR(dev
, BNX2_CTX_HOST_PAGE_TBL_DATA0
,
4399 (cp
->ctx_arr
[i
].mapping
& 0xffffffff) | valid_bit
);
4400 CNIC_WR(dev
, BNX2_CTX_HOST_PAGE_TBL_DATA1
,
4401 (u64
) cp
->ctx_arr
[i
].mapping
>> 32);
4402 CNIC_WR(dev
, BNX2_CTX_HOST_PAGE_TBL_CTRL
, idx
|
4403 BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ
);
4404 for (j
= 0; j
< 10; j
++) {
4406 val
= CNIC_RD(dev
, BNX2_CTX_HOST_PAGE_TBL_CTRL
);
4407 if (!(val
& BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ
))
4411 if (val
& BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ
) {
4419 static void cnic_free_irq(struct cnic_dev
*dev
)
4421 struct cnic_local
*cp
= dev
->cnic_priv
;
4422 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4424 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
4425 cp
->disable_int_sync(dev
);
4426 tasklet_kill(&cp
->cnic_irq_task
);
4427 free_irq(ethdev
->irq_arr
[0].vector
, dev
);
4431 static int cnic_request_irq(struct cnic_dev
*dev
)
4433 struct cnic_local
*cp
= dev
->cnic_priv
;
4434 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4437 err
= request_irq(ethdev
->irq_arr
[0].vector
, cnic_irq
, 0, "cnic", dev
);
4439 tasklet_disable(&cp
->cnic_irq_task
);
4444 static int cnic_init_bnx2_irq(struct cnic_dev
*dev
)
4446 struct cnic_local
*cp
= dev
->cnic_priv
;
4447 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4449 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
4451 int sblk_num
= cp
->status_blk_num
;
4452 u32 base
= ((sblk_num
- 1) * BNX2_HC_SB_CONFIG_SIZE
) +
4453 BNX2_HC_SB_CONFIG_1
;
4455 CNIC_WR(dev
, base
, BNX2_HC_SB_CONFIG_1_ONE_SHOT
);
4457 CNIC_WR(dev
, base
+ BNX2_HC_COMP_PROD_TRIP_OFF
, (2 << 16) | 8);
4458 CNIC_WR(dev
, base
+ BNX2_HC_COM_TICKS_OFF
, (64 << 16) | 220);
4459 CNIC_WR(dev
, base
+ BNX2_HC_CMD_TICKS_OFF
, (64 << 16) | 220);
4461 cp
->last_status_idx
= cp
->status_blk
.bnx2
->status_idx
;
4462 tasklet_init(&cp
->cnic_irq_task
, cnic_service_bnx2_msix
,
4463 (unsigned long) dev
);
4464 err
= cnic_request_irq(dev
);
4468 while (cp
->status_blk
.bnx2
->status_completion_producer_index
&&
4470 CNIC_WR(dev
, BNX2_HC_COALESCE_NOW
,
4471 1 << (11 + sblk_num
));
4476 if (cp
->status_blk
.bnx2
->status_completion_producer_index
) {
4482 struct status_block
*sblk
= cp
->status_blk
.gen
;
4483 u32 hc_cmd
= CNIC_RD(dev
, BNX2_HC_COMMAND
);
4486 while (sblk
->status_completion_producer_index
&& i
< 10) {
4487 CNIC_WR(dev
, BNX2_HC_COMMAND
,
4488 hc_cmd
| BNX2_HC_COMMAND_COAL_NOW_WO_INT
);
4493 if (sblk
->status_completion_producer_index
)
4500 netdev_err(dev
->netdev
, "KCQ index not resetting to 0\n");
4504 static void cnic_enable_bnx2_int(struct cnic_dev
*dev
)
4506 struct cnic_local
*cp
= dev
->cnic_priv
;
4507 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4509 if (!(ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
))
4512 CNIC_WR(dev
, BNX2_PCICFG_INT_ACK_CMD
, cp
->int_num
|
4513 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID
| cp
->last_status_idx
);
4516 static void cnic_disable_bnx2_int_sync(struct cnic_dev
*dev
)
4518 struct cnic_local
*cp
= dev
->cnic_priv
;
4519 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4521 if (!(ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
))
4524 CNIC_WR(dev
, BNX2_PCICFG_INT_ACK_CMD
, cp
->int_num
|
4525 BNX2_PCICFG_INT_ACK_CMD_MASK_INT
);
4526 CNIC_RD(dev
, BNX2_PCICFG_INT_ACK_CMD
);
4527 synchronize_irq(ethdev
->irq_arr
[0].vector
);
4530 static void cnic_init_bnx2_tx_ring(struct cnic_dev
*dev
)
4532 struct cnic_local
*cp
= dev
->cnic_priv
;
4533 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4534 struct cnic_uio_dev
*udev
= cp
->udev
;
4535 u32 cid_addr
, tx_cid
, sb_id
;
4536 u32 val
, offset0
, offset1
, offset2
, offset3
;
4538 struct bnx2_tx_bd
*txbd
;
4539 dma_addr_t buf_map
, ring_map
= udev
->l2_ring_map
;
4540 struct status_block
*s_blk
= cp
->status_blk
.gen
;
4542 sb_id
= cp
->status_blk_num
;
4544 cp
->tx_cons_ptr
= &s_blk
->status_tx_quick_consumer_index2
;
4545 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
4546 struct status_block_msix
*sblk
= cp
->status_blk
.bnx2
;
4548 tx_cid
= TX_TSS_CID
+ sb_id
- 1;
4549 CNIC_WR(dev
, BNX2_TSCH_TSS_CFG
, (sb_id
<< 24) |
4551 cp
->tx_cons_ptr
= &sblk
->status_tx_quick_consumer_index
;
4553 cp
->tx_cons
= *cp
->tx_cons_ptr
;
4555 cid_addr
= GET_CID_ADDR(tx_cid
);
4556 if (BNX2_CHIP(cp
) == BNX2_CHIP_5709
) {
4557 u32 cid_addr2
= GET_CID_ADDR(tx_cid
+ 4) + 0x40;
4559 for (i
= 0; i
< PHY_CTX_SIZE
; i
+= 4)
4560 cnic_ctx_wr(dev
, cid_addr2
, i
, 0);
4562 offset0
= BNX2_L2CTX_TYPE_XI
;
4563 offset1
= BNX2_L2CTX_CMD_TYPE_XI
;
4564 offset2
= BNX2_L2CTX_TBDR_BHADDR_HI_XI
;
4565 offset3
= BNX2_L2CTX_TBDR_BHADDR_LO_XI
;
4567 cnic_init_context(dev
, tx_cid
);
4568 cnic_init_context(dev
, tx_cid
+ 1);
4570 offset0
= BNX2_L2CTX_TYPE
;
4571 offset1
= BNX2_L2CTX_CMD_TYPE
;
4572 offset2
= BNX2_L2CTX_TBDR_BHADDR_HI
;
4573 offset3
= BNX2_L2CTX_TBDR_BHADDR_LO
;
4575 val
= BNX2_L2CTX_TYPE_TYPE_L2
| BNX2_L2CTX_TYPE_SIZE_L2
;
4576 cnic_ctx_wr(dev
, cid_addr
, offset0
, val
);
4578 val
= BNX2_L2CTX_CMD_TYPE_TYPE_L2
| (8 << 16);
4579 cnic_ctx_wr(dev
, cid_addr
, offset1
, val
);
4581 txbd
= udev
->l2_ring
;
4583 buf_map
= udev
->l2_buf_map
;
4584 for (i
= 0; i
< BNX2_MAX_TX_DESC_CNT
; i
++, txbd
++) {
4585 txbd
->tx_bd_haddr_hi
= (u64
) buf_map
>> 32;
4586 txbd
->tx_bd_haddr_lo
= (u64
) buf_map
& 0xffffffff;
4588 val
= (u64
) ring_map
>> 32;
4589 cnic_ctx_wr(dev
, cid_addr
, offset2
, val
);
4590 txbd
->tx_bd_haddr_hi
= val
;
4592 val
= (u64
) ring_map
& 0xffffffff;
4593 cnic_ctx_wr(dev
, cid_addr
, offset3
, val
);
4594 txbd
->tx_bd_haddr_lo
= val
;
4597 static void cnic_init_bnx2_rx_ring(struct cnic_dev
*dev
)
4599 struct cnic_local
*cp
= dev
->cnic_priv
;
4600 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4601 struct cnic_uio_dev
*udev
= cp
->udev
;
4602 u32 cid_addr
, sb_id
, val
, coal_reg
, coal_val
;
4604 struct bnx2_rx_bd
*rxbd
;
4605 struct status_block
*s_blk
= cp
->status_blk
.gen
;
4606 dma_addr_t ring_map
= udev
->l2_ring_map
;
4608 sb_id
= cp
->status_blk_num
;
4609 cnic_init_context(dev
, 2);
4610 cp
->rx_cons_ptr
= &s_blk
->status_rx_quick_consumer_index2
;
4611 coal_reg
= BNX2_HC_COMMAND
;
4612 coal_val
= CNIC_RD(dev
, coal_reg
);
4613 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
4614 struct status_block_msix
*sblk
= cp
->status_blk
.bnx2
;
4616 cp
->rx_cons_ptr
= &sblk
->status_rx_quick_consumer_index
;
4617 coal_reg
= BNX2_HC_COALESCE_NOW
;
4618 coal_val
= 1 << (11 + sb_id
);
4621 while (!(*cp
->rx_cons_ptr
!= 0) && i
< 10) {
4622 CNIC_WR(dev
, coal_reg
, coal_val
);
4627 cp
->rx_cons
= *cp
->rx_cons_ptr
;
4629 cid_addr
= GET_CID_ADDR(2);
4630 val
= BNX2_L2CTX_CTX_TYPE_CTX_BD_CHN_TYPE_VALUE
|
4631 BNX2_L2CTX_CTX_TYPE_SIZE_L2
| (0x02 << 8);
4632 cnic_ctx_wr(dev
, cid_addr
, BNX2_L2CTX_CTX_TYPE
, val
);
4635 val
= 2 << BNX2_L2CTX_L2_STATUSB_NUM_SHIFT
;
4637 val
= BNX2_L2CTX_L2_STATUSB_NUM(sb_id
);
4638 cnic_ctx_wr(dev
, cid_addr
, BNX2_L2CTX_HOST_BDIDX
, val
);
4640 rxbd
= udev
->l2_ring
+ CNIC_PAGE_SIZE
;
4641 for (i
= 0; i
< BNX2_MAX_RX_DESC_CNT
; i
++, rxbd
++) {
4643 int n
= (i
% cp
->l2_rx_ring_size
) + 1;
4645 buf_map
= udev
->l2_buf_map
+ (n
* cp
->l2_single_buf_size
);
4646 rxbd
->rx_bd_len
= cp
->l2_single_buf_size
;
4647 rxbd
->rx_bd_flags
= RX_BD_FLAGS_START
| RX_BD_FLAGS_END
;
4648 rxbd
->rx_bd_haddr_hi
= (u64
) buf_map
>> 32;
4649 rxbd
->rx_bd_haddr_lo
= (u64
) buf_map
& 0xffffffff;
4651 val
= (u64
) (ring_map
+ CNIC_PAGE_SIZE
) >> 32;
4652 cnic_ctx_wr(dev
, cid_addr
, BNX2_L2CTX_NX_BDHADDR_HI
, val
);
4653 rxbd
->rx_bd_haddr_hi
= val
;
4655 val
= (u64
) (ring_map
+ CNIC_PAGE_SIZE
) & 0xffffffff;
4656 cnic_ctx_wr(dev
, cid_addr
, BNX2_L2CTX_NX_BDHADDR_LO
, val
);
4657 rxbd
->rx_bd_haddr_lo
= val
;
4659 val
= cnic_reg_rd_ind(dev
, BNX2_RXP_SCRATCH_RXP_FLOOD
);
4660 cnic_reg_wr_ind(dev
, BNX2_RXP_SCRATCH_RXP_FLOOD
, val
| (1 << 2));
4663 static void cnic_shutdown_bnx2_rx_ring(struct cnic_dev
*dev
)
4665 struct kwqe
*wqes
[1], l2kwqe
;
4667 memset(&l2kwqe
, 0, sizeof(l2kwqe
));
4669 l2kwqe
.kwqe_op_flag
= (L2_LAYER_CODE
<< KWQE_LAYER_SHIFT
) |
4670 (L2_KWQE_OPCODE_VALUE_FLUSH
<<
4671 KWQE_OPCODE_SHIFT
) | 2;
4672 dev
->submit_kwqes(dev
, wqes
, 1);
4675 static void cnic_set_bnx2_mac(struct cnic_dev
*dev
)
4677 struct cnic_local
*cp
= dev
->cnic_priv
;
4680 val
= cp
->func
<< 2;
4682 cp
->shmem_base
= cnic_reg_rd_ind(dev
, BNX2_SHM_HDR_ADDR_0
+ val
);
4684 val
= cnic_reg_rd_ind(dev
, cp
->shmem_base
+
4685 BNX2_PORT_HW_CFG_ISCSI_MAC_UPPER
);
4686 dev
->mac_addr
[0] = (u8
) (val
>> 8);
4687 dev
->mac_addr
[1] = (u8
) val
;
4689 CNIC_WR(dev
, BNX2_EMAC_MAC_MATCH4
, val
);
4691 val
= cnic_reg_rd_ind(dev
, cp
->shmem_base
+
4692 BNX2_PORT_HW_CFG_ISCSI_MAC_LOWER
);
4693 dev
->mac_addr
[2] = (u8
) (val
>> 24);
4694 dev
->mac_addr
[3] = (u8
) (val
>> 16);
4695 dev
->mac_addr
[4] = (u8
) (val
>> 8);
4696 dev
->mac_addr
[5] = (u8
) val
;
4698 CNIC_WR(dev
, BNX2_EMAC_MAC_MATCH5
, val
);
4700 val
= 4 | BNX2_RPM_SORT_USER2_BC_EN
;
4701 if (BNX2_CHIP(cp
) != BNX2_CHIP_5709
)
4702 val
|= BNX2_RPM_SORT_USER2_PROM_VLAN
;
4704 CNIC_WR(dev
, BNX2_RPM_SORT_USER2
, 0x0);
4705 CNIC_WR(dev
, BNX2_RPM_SORT_USER2
, val
);
4706 CNIC_WR(dev
, BNX2_RPM_SORT_USER2
, val
| BNX2_RPM_SORT_USER2_ENA
);
4709 static int cnic_start_bnx2_hw(struct cnic_dev
*dev
)
4711 struct cnic_local
*cp
= dev
->cnic_priv
;
4712 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4713 struct status_block
*sblk
= cp
->status_blk
.gen
;
4714 u32 val
, kcq_cid_addr
, kwq_cid_addr
;
4717 cnic_set_bnx2_mac(dev
);
4719 val
= CNIC_RD(dev
, BNX2_MQ_CONFIG
);
4720 val
&= ~BNX2_MQ_CONFIG_KNL_BYP_BLK_SIZE
;
4721 if (CNIC_PAGE_BITS
> 12)
4722 val
|= (12 - 8) << 4;
4724 val
|= (CNIC_PAGE_BITS
- 8) << 4;
4726 CNIC_WR(dev
, BNX2_MQ_CONFIG
, val
);
4728 CNIC_WR(dev
, BNX2_HC_COMP_PROD_TRIP
, (2 << 16) | 8);
4729 CNIC_WR(dev
, BNX2_HC_COM_TICKS
, (64 << 16) | 220);
4730 CNIC_WR(dev
, BNX2_HC_CMD_TICKS
, (64 << 16) | 220);
4732 err
= cnic_setup_5709_context(dev
, 1);
4736 cnic_init_context(dev
, KWQ_CID
);
4737 cnic_init_context(dev
, KCQ_CID
);
4739 kwq_cid_addr
= GET_CID_ADDR(KWQ_CID
);
4740 cp
->kwq_io_addr
= MB_GET_CID_ADDR(KWQ_CID
) + L5_KRNLQ_HOST_QIDX
;
4742 cp
->max_kwq_idx
= MAX_KWQ_IDX
;
4743 cp
->kwq_prod_idx
= 0;
4744 cp
->kwq_con_idx
= 0;
4745 set_bit(CNIC_LCL_FL_KWQ_INIT
, &cp
->cnic_local_flags
);
4747 if (BNX2_CHIP(cp
) == BNX2_CHIP_5706
|| BNX2_CHIP(cp
) == BNX2_CHIP_5708
)
4748 cp
->kwq_con_idx_ptr
= &sblk
->status_rx_quick_consumer_index15
;
4750 cp
->kwq_con_idx_ptr
= &sblk
->status_cmd_consumer_index
;
4752 /* Initialize the kernel work queue context. */
4753 val
= KRNLQ_TYPE_TYPE_KRNLQ
| KRNLQ_SIZE_TYPE_SIZE
|
4754 (CNIC_PAGE_BITS
- 8) | KRNLQ_FLAGS_QE_SELF_SEQ
;
4755 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_TYPE
, val
);
4757 val
= (CNIC_PAGE_SIZE
/ sizeof(struct kwqe
) - 1) << 16;
4758 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_QE_SELF_SEQ_MAX
, val
);
4760 val
= ((CNIC_PAGE_SIZE
/ sizeof(struct kwqe
)) << 16) | KWQ_PAGE_CNT
;
4761 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_PGTBL_NPAGES
, val
);
4763 val
= (u32
) ((u64
) cp
->kwq_info
.pgtbl_map
>> 32);
4764 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_PGTBL_HADDR_HI
, val
);
4766 val
= (u32
) cp
->kwq_info
.pgtbl_map
;
4767 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_PGTBL_HADDR_LO
, val
);
4769 kcq_cid_addr
= GET_CID_ADDR(KCQ_CID
);
4770 cp
->kcq1
.io_addr
= MB_GET_CID_ADDR(KCQ_CID
) + L5_KRNLQ_HOST_QIDX
;
4772 cp
->kcq1
.sw_prod_idx
= 0;
4773 cp
->kcq1
.hw_prod_idx_ptr
=
4774 &sblk
->status_completion_producer_index
;
4776 cp
->kcq1
.status_idx_ptr
= &sblk
->status_idx
;
4778 /* Initialize the kernel complete queue context. */
4779 val
= KRNLQ_TYPE_TYPE_KRNLQ
| KRNLQ_SIZE_TYPE_SIZE
|
4780 (CNIC_PAGE_BITS
- 8) | KRNLQ_FLAGS_QE_SELF_SEQ
;
4781 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_TYPE
, val
);
4783 val
= (CNIC_PAGE_SIZE
/ sizeof(struct kcqe
) - 1) << 16;
4784 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_QE_SELF_SEQ_MAX
, val
);
4786 val
= ((CNIC_PAGE_SIZE
/ sizeof(struct kcqe
)) << 16) | KCQ_PAGE_CNT
;
4787 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_PGTBL_NPAGES
, val
);
4789 val
= (u32
) ((u64
) cp
->kcq1
.dma
.pgtbl_map
>> 32);
4790 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_PGTBL_HADDR_HI
, val
);
4792 val
= (u32
) cp
->kcq1
.dma
.pgtbl_map
;
4793 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_PGTBL_HADDR_LO
, val
);
4796 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
) {
4797 struct status_block_msix
*msblk
= cp
->status_blk
.bnx2
;
4798 u32 sb_id
= cp
->status_blk_num
;
4799 u32 sb
= BNX2_L2CTX_L5_STATUSB_NUM(sb_id
);
4801 cp
->kcq1
.hw_prod_idx_ptr
=
4802 &msblk
->status_completion_producer_index
;
4803 cp
->kcq1
.status_idx_ptr
= &msblk
->status_idx
;
4804 cp
->kwq_con_idx_ptr
= &msblk
->status_cmd_consumer_index
;
4805 cp
->int_num
= sb_id
<< BNX2_PCICFG_INT_ACK_CMD_INT_NUM_SHIFT
;
4806 cnic_ctx_wr(dev
, kwq_cid_addr
, L5_KRNLQ_HOST_QIDX
, sb
);
4807 cnic_ctx_wr(dev
, kcq_cid_addr
, L5_KRNLQ_HOST_QIDX
, sb
);
4810 /* Enable Commnad Scheduler notification when we write to the
4811 * host producer index of the kernel contexts. */
4812 CNIC_WR(dev
, BNX2_MQ_KNL_CMD_MASK1
, 2);
4814 /* Enable Command Scheduler notification when we write to either
4815 * the Send Queue or Receive Queue producer indexes of the kernel
4816 * bypass contexts. */
4817 CNIC_WR(dev
, BNX2_MQ_KNL_BYP_CMD_MASK1
, 7);
4818 CNIC_WR(dev
, BNX2_MQ_KNL_BYP_WRITE_MASK1
, 7);
4820 /* Notify COM when the driver post an application buffer. */
4821 CNIC_WR(dev
, BNX2_MQ_KNL_RX_V2P_MASK2
, 0x2000);
4823 /* Set the CP and COM doorbells. These two processors polls the
4824 * doorbell for a non zero value before running. This must be done
4825 * after setting up the kernel queue contexts. */
4826 cnic_reg_wr_ind(dev
, BNX2_CP_SCRATCH
+ 0x20, 1);
4827 cnic_reg_wr_ind(dev
, BNX2_COM_SCRATCH
+ 0x20, 1);
4829 cnic_init_bnx2_tx_ring(dev
);
4830 cnic_init_bnx2_rx_ring(dev
);
4832 err
= cnic_init_bnx2_irq(dev
);
4834 netdev_err(dev
->netdev
, "cnic_init_irq failed\n");
4835 cnic_reg_wr_ind(dev
, BNX2_CP_SCRATCH
+ 0x20, 0);
4836 cnic_reg_wr_ind(dev
, BNX2_COM_SCRATCH
+ 0x20, 0);
4840 ethdev
->drv_state
|= CNIC_DRV_STATE_HANDLES_IRQ
;
4845 static void cnic_setup_bnx2x_context(struct cnic_dev
*dev
)
4847 struct cnic_local
*cp
= dev
->cnic_priv
;
4848 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4849 u32 start_offset
= ethdev
->ctx_tbl_offset
;
4852 for (i
= 0; i
< cp
->ctx_blks
; i
++) {
4853 struct cnic_ctx
*ctx
= &cp
->ctx_arr
[i
];
4854 dma_addr_t map
= ctx
->mapping
;
4856 if (cp
->ctx_align
) {
4857 unsigned long mask
= cp
->ctx_align
- 1;
4859 map
= (map
+ mask
) & ~mask
;
4862 cnic_ctx_tbl_wr(dev
, start_offset
+ i
, map
);
4866 static int cnic_init_bnx2x_irq(struct cnic_dev
*dev
)
4868 struct cnic_local
*cp
= dev
->cnic_priv
;
4869 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
4872 tasklet_init(&cp
->cnic_irq_task
, cnic_service_bnx2x_bh
,
4873 (unsigned long) dev
);
4874 if (ethdev
->drv_state
& CNIC_DRV_STATE_USING_MSIX
)
4875 err
= cnic_request_irq(dev
);
4880 static inline void cnic_storm_memset_hc_disable(struct cnic_dev
*dev
,
4881 u16 sb_id
, u8 sb_index
,
4884 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
4886 u32 addr
= BAR_CSTRORM_INTMEM
+
4887 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id
) +
4888 offsetof(struct hc_status_block_data_e1x
, index_data
) +
4889 sizeof(struct hc_index_data
)*sb_index
+
4890 offsetof(struct hc_index_data
, flags
);
4891 u16 flags
= CNIC_RD16(dev
, addr
);
4893 flags
&= ~HC_INDEX_DATA_HC_ENABLED
;
4894 flags
|= (((~disable
) << HC_INDEX_DATA_HC_ENABLED_SHIFT
) &
4895 HC_INDEX_DATA_HC_ENABLED
);
4896 CNIC_WR16(dev
, addr
, flags
);
4899 static void cnic_enable_bnx2x_int(struct cnic_dev
*dev
)
4901 struct cnic_local
*cp
= dev
->cnic_priv
;
4902 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
4903 u8 sb_id
= cp
->status_blk_num
;
4905 CNIC_WR8(dev
, BAR_CSTRORM_INTMEM
+
4906 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id
) +
4907 offsetof(struct hc_status_block_data_e1x
, index_data
) +
4908 sizeof(struct hc_index_data
)*HC_INDEX_ISCSI_EQ_CONS
+
4909 offsetof(struct hc_index_data
, timeout
), 64 / 4);
4910 cnic_storm_memset_hc_disable(dev
, sb_id
, HC_INDEX_ISCSI_EQ_CONS
, 0);
4913 static void cnic_disable_bnx2x_int_sync(struct cnic_dev
*dev
)
4917 static void cnic_init_bnx2x_tx_ring(struct cnic_dev
*dev
,
4918 struct client_init_ramrod_data
*data
)
4920 struct cnic_local
*cp
= dev
->cnic_priv
;
4921 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
4922 struct cnic_uio_dev
*udev
= cp
->udev
;
4923 union eth_tx_bd_types
*txbd
= (union eth_tx_bd_types
*) udev
->l2_ring
;
4924 dma_addr_t buf_map
, ring_map
= udev
->l2_ring_map
;
4925 struct host_sp_status_block
*sb
= cp
->bnx2x_def_status_blk
;
4927 u32 cli
= cp
->ethdev
->iscsi_l2_client_id
;
4930 memset(txbd
, 0, CNIC_PAGE_SIZE
);
4932 buf_map
= udev
->l2_buf_map
;
4933 for (i
= 0; i
< BNX2_MAX_TX_DESC_CNT
; i
+= 3, txbd
+= 3) {
4934 struct eth_tx_start_bd
*start_bd
= &txbd
->start_bd
;
4935 struct eth_tx_parse_bd_e1x
*pbd_e1x
=
4936 &((txbd
+ 1)->parse_bd_e1x
);
4937 struct eth_tx_parse_bd_e2
*pbd_e2
= &((txbd
+ 1)->parse_bd_e2
);
4938 struct eth_tx_bd
*reg_bd
= &((txbd
+ 2)->reg_bd
);
4940 start_bd
->addr_hi
= cpu_to_le32((u64
) buf_map
>> 32);
4941 start_bd
->addr_lo
= cpu_to_le32(buf_map
& 0xffffffff);
4942 reg_bd
->addr_hi
= start_bd
->addr_hi
;
4943 reg_bd
->addr_lo
= start_bd
->addr_lo
+ 0x10;
4944 start_bd
->nbytes
= cpu_to_le16(0x10);
4945 start_bd
->nbd
= cpu_to_le16(3);
4946 start_bd
->bd_flags
.as_bitfield
= ETH_TX_BD_FLAGS_START_BD
;
4947 start_bd
->general_data
&= ~ETH_TX_START_BD_PARSE_NBDS
;
4948 start_bd
->general_data
|= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT
);
4950 if (BNX2X_CHIP_IS_E2_PLUS(bp
))
4951 pbd_e2
->parsing_data
= (UNICAST_ADDRESS
<<
4952 ETH_TX_PARSE_BD_E2_ETH_ADDR_TYPE_SHIFT
);
4954 pbd_e1x
->global_data
= (UNICAST_ADDRESS
<<
4955 ETH_TX_PARSE_BD_E1X_ETH_ADDR_TYPE_SHIFT
);
4958 val
= (u64
) ring_map
>> 32;
4959 txbd
->next_bd
.addr_hi
= cpu_to_le32(val
);
4961 data
->tx
.tx_bd_page_base
.hi
= cpu_to_le32(val
);
4963 val
= (u64
) ring_map
& 0xffffffff;
4964 txbd
->next_bd
.addr_lo
= cpu_to_le32(val
);
4966 data
->tx
.tx_bd_page_base
.lo
= cpu_to_le32(val
);
4968 /* Other ramrod params */
4969 data
->tx
.tx_sb_index_number
= HC_SP_INDEX_ETH_ISCSI_CQ_CONS
;
4970 data
->tx
.tx_status_block_id
= BNX2X_DEF_SB_ID
;
4972 /* reset xstorm per client statistics */
4973 if (cli
< MAX_STAT_COUNTER_ID
) {
4974 data
->general
.statistics_zero_flg
= 1;
4975 data
->general
.statistics_en_flg
= 1;
4976 data
->general
.statistics_counter_id
= cli
;
4980 &sb
->sp_sb
.index_values
[HC_SP_INDEX_ETH_ISCSI_CQ_CONS
];
4983 static void cnic_init_bnx2x_rx_ring(struct cnic_dev
*dev
,
4984 struct client_init_ramrod_data
*data
)
4986 struct cnic_local
*cp
= dev
->cnic_priv
;
4987 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
4988 struct cnic_uio_dev
*udev
= cp
->udev
;
4989 struct eth_rx_bd
*rxbd
= (struct eth_rx_bd
*) (udev
->l2_ring
+
4991 struct eth_rx_cqe_next_page
*rxcqe
= (struct eth_rx_cqe_next_page
*)
4992 (udev
->l2_ring
+ (2 * CNIC_PAGE_SIZE
));
4993 struct host_sp_status_block
*sb
= cp
->bnx2x_def_status_blk
;
4995 u32 cli
= cp
->ethdev
->iscsi_l2_client_id
;
4996 int cl_qzone_id
= BNX2X_CL_QZONE_ID(bp
, cli
);
4998 dma_addr_t ring_map
= udev
->l2_ring_map
;
5001 data
->general
.client_id
= cli
;
5002 data
->general
.activate_flg
= 1;
5003 data
->general
.sp_client_id
= cli
;
5004 data
->general
.mtu
= cpu_to_le16(cp
->l2_single_buf_size
- 14);
5005 data
->general
.func_id
= bp
->pfid
;
5007 for (i
= 0; i
< BNX2X_MAX_RX_DESC_CNT
; i
++, rxbd
++) {
5009 int n
= (i
% cp
->l2_rx_ring_size
) + 1;
5011 buf_map
= udev
->l2_buf_map
+ (n
* cp
->l2_single_buf_size
);
5012 rxbd
->addr_hi
= cpu_to_le32((u64
) buf_map
>> 32);
5013 rxbd
->addr_lo
= cpu_to_le32(buf_map
& 0xffffffff);
5016 val
= (u64
) (ring_map
+ CNIC_PAGE_SIZE
) >> 32;
5017 rxbd
->addr_hi
= cpu_to_le32(val
);
5018 data
->rx
.bd_page_base
.hi
= cpu_to_le32(val
);
5020 val
= (u64
) (ring_map
+ CNIC_PAGE_SIZE
) & 0xffffffff;
5021 rxbd
->addr_lo
= cpu_to_le32(val
);
5022 data
->rx
.bd_page_base
.lo
= cpu_to_le32(val
);
5024 rxcqe
+= BNX2X_MAX_RCQ_DESC_CNT
;
5025 val
= (u64
) (ring_map
+ (2 * CNIC_PAGE_SIZE
)) >> 32;
5026 rxcqe
->addr_hi
= cpu_to_le32(val
);
5027 data
->rx
.cqe_page_base
.hi
= cpu_to_le32(val
);
5029 val
= (u64
) (ring_map
+ (2 * CNIC_PAGE_SIZE
)) & 0xffffffff;
5030 rxcqe
->addr_lo
= cpu_to_le32(val
);
5031 data
->rx
.cqe_page_base
.lo
= cpu_to_le32(val
);
5033 /* Other ramrod params */
5034 data
->rx
.client_qzone_id
= cl_qzone_id
;
5035 data
->rx
.rx_sb_index_number
= HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS
;
5036 data
->rx
.status_block_id
= BNX2X_DEF_SB_ID
;
5038 data
->rx
.cache_line_alignment_log_size
= L1_CACHE_SHIFT
;
5040 data
->rx
.max_bytes_on_bd
= cpu_to_le16(cp
->l2_single_buf_size
);
5041 data
->rx
.outer_vlan_removal_enable_flg
= 1;
5042 data
->rx
.silent_vlan_removal_flg
= 1;
5043 data
->rx
.silent_vlan_value
= 0;
5044 data
->rx
.silent_vlan_mask
= 0xffff;
5047 &sb
->sp_sb
.index_values
[HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS
];
5048 cp
->rx_cons
= *cp
->rx_cons_ptr
;
5051 static void cnic_init_bnx2x_kcq(struct cnic_dev
*dev
)
5053 struct cnic_local
*cp
= dev
->cnic_priv
;
5054 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
5055 u32 pfid
= bp
->pfid
;
5057 cp
->kcq1
.io_addr
= BAR_CSTRORM_INTMEM
+
5058 CSTORM_ISCSI_EQ_PROD_OFFSET(pfid
, 0);
5059 cp
->kcq1
.sw_prod_idx
= 0;
5061 if (BNX2X_CHIP_IS_E2_PLUS(bp
)) {
5062 struct host_hc_status_block_e2
*sb
= cp
->status_blk
.gen
;
5064 cp
->kcq1
.hw_prod_idx_ptr
=
5065 &sb
->sb
.index_values
[HC_INDEX_ISCSI_EQ_CONS
];
5066 cp
->kcq1
.status_idx_ptr
=
5067 &sb
->sb
.running_index
[SM_RX_ID
];
5069 struct host_hc_status_block_e1x
*sb
= cp
->status_blk
.gen
;
5071 cp
->kcq1
.hw_prod_idx_ptr
=
5072 &sb
->sb
.index_values
[HC_INDEX_ISCSI_EQ_CONS
];
5073 cp
->kcq1
.status_idx_ptr
=
5074 &sb
->sb
.running_index
[SM_RX_ID
];
5077 if (BNX2X_CHIP_IS_E2_PLUS(bp
)) {
5078 struct host_hc_status_block_e2
*sb
= cp
->status_blk
.gen
;
5080 cp
->kcq2
.io_addr
= BAR_USTRORM_INTMEM
+
5081 USTORM_FCOE_EQ_PROD_OFFSET(pfid
);
5082 cp
->kcq2
.sw_prod_idx
= 0;
5083 cp
->kcq2
.hw_prod_idx_ptr
=
5084 &sb
->sb
.index_values
[HC_INDEX_FCOE_EQ_CONS
];
5085 cp
->kcq2
.status_idx_ptr
=
5086 &sb
->sb
.running_index
[SM_RX_ID
];
5090 static int cnic_start_bnx2x_hw(struct cnic_dev
*dev
)
5092 struct cnic_local
*cp
= dev
->cnic_priv
;
5093 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
5094 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
5098 dev
->stats_addr
= ethdev
->addr_drv_info_to_mcp
;
5099 cp
->func
= bp
->pf_num
;
5103 ret
= cnic_init_id_tbl(&cp
->cid_tbl
, MAX_ISCSI_TBL_SZ
,
5104 cp
->iscsi_start_cid
, 0);
5109 if (BNX2X_CHIP_IS_E2_PLUS(bp
)) {
5110 ret
= cnic_init_id_tbl(&cp
->fcoe_cid_tbl
, dev
->max_fcoe_conn
,
5111 cp
->fcoe_start_cid
, 0);
5117 cp
->bnx2x_igu_sb_id
= ethdev
->irq_arr
[0].status_blk_num2
;
5119 cnic_init_bnx2x_kcq(dev
);
5122 CNIC_WR16(dev
, cp
->kcq1
.io_addr
, MAX_KCQ_IDX
);
5123 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
5124 CSTORM_ISCSI_EQ_CONS_OFFSET(pfid
, 0), 0);
5125 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
5126 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid
, 0),
5127 cp
->kcq1
.dma
.pg_map_arr
[1] & 0xffffffff);
5128 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
5129 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid
, 0) + 4,
5130 (u64
) cp
->kcq1
.dma
.pg_map_arr
[1] >> 32);
5131 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
5132 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid
, 0),
5133 cp
->kcq1
.dma
.pg_map_arr
[0] & 0xffffffff);
5134 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
5135 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid
, 0) + 4,
5136 (u64
) cp
->kcq1
.dma
.pg_map_arr
[0] >> 32);
5137 CNIC_WR8(dev
, BAR_CSTRORM_INTMEM
+
5138 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_VALID_OFFSET(pfid
, 0), 1);
5139 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+
5140 CSTORM_ISCSI_EQ_SB_NUM_OFFSET(pfid
, 0), cp
->status_blk_num
);
5141 CNIC_WR8(dev
, BAR_CSTRORM_INTMEM
+
5142 CSTORM_ISCSI_EQ_SB_INDEX_OFFSET(pfid
, 0),
5143 HC_INDEX_ISCSI_EQ_CONS
);
5145 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
5146 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid
),
5147 cp
->gbl_buf_info
.pg_map_arr
[0] & 0xffffffff);
5148 CNIC_WR(dev
, BAR_USTRORM_INTMEM
+
5149 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid
) + 4,
5150 (u64
) cp
->gbl_buf_info
.pg_map_arr
[0] >> 32);
5152 CNIC_WR(dev
, BAR_TSTRORM_INTMEM
+
5153 TSTORM_ISCSI_TCP_LOCAL_ADV_WND_OFFSET(pfid
), DEF_RCV_BUF
);
5155 cnic_setup_bnx2x_context(dev
);
5157 ret
= cnic_init_bnx2x_irq(dev
);
5161 ethdev
->drv_state
|= CNIC_DRV_STATE_HANDLES_IRQ
;
5165 static void cnic_init_rings(struct cnic_dev
*dev
)
5167 struct cnic_local
*cp
= dev
->cnic_priv
;
5168 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
5169 struct cnic_uio_dev
*udev
= cp
->udev
;
5171 if (test_bit(CNIC_LCL_FL_RINGS_INITED
, &cp
->cnic_local_flags
))
5174 if (test_bit(CNIC_F_BNX2_CLASS
, &dev
->flags
)) {
5175 cnic_init_bnx2_tx_ring(dev
);
5176 cnic_init_bnx2_rx_ring(dev
);
5177 set_bit(CNIC_LCL_FL_RINGS_INITED
, &cp
->cnic_local_flags
);
5178 } else if (test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
)) {
5179 u32 cli
= cp
->ethdev
->iscsi_l2_client_id
;
5180 u32 cid
= cp
->ethdev
->iscsi_l2_cid
;
5182 struct client_init_ramrod_data
*data
;
5183 union l5cm_specific_data l5_data
;
5184 struct ustorm_eth_rx_producers rx_prods
= {0};
5185 u32 off
, i
, *cid_ptr
;
5187 rx_prods
.bd_prod
= 0;
5188 rx_prods
.cqe_prod
= BNX2X_MAX_RCQ_DESC_CNT
;
5191 cl_qzone_id
= BNX2X_CL_QZONE_ID(bp
, cli
);
5193 off
= BAR_USTRORM_INTMEM
+
5194 (BNX2X_CHIP_IS_E2_PLUS(bp
) ?
5195 USTORM_RX_PRODS_E2_OFFSET(cl_qzone_id
) :
5196 USTORM_RX_PRODS_E1X_OFFSET(BP_PORT(bp
), cli
));
5198 for (i
= 0; i
< sizeof(struct ustorm_eth_rx_producers
) / 4; i
++)
5199 CNIC_WR(dev
, off
+ i
* 4, ((u32
*) &rx_prods
)[i
]);
5201 set_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
);
5203 data
= udev
->l2_buf
;
5204 cid_ptr
= udev
->l2_buf
+ 12;
5206 memset(data
, 0, sizeof(*data
));
5208 cnic_init_bnx2x_tx_ring(dev
, data
);
5209 cnic_init_bnx2x_rx_ring(dev
, data
);
5211 data
->general
.fp_hsi_ver
= ETH_FP_HSI_VERSION
;
5213 l5_data
.phy_address
.lo
= udev
->l2_buf_map
& 0xffffffff;
5214 l5_data
.phy_address
.hi
= (u64
) udev
->l2_buf_map
>> 32;
5216 set_bit(CNIC_LCL_FL_RINGS_INITED
, &cp
->cnic_local_flags
);
5218 cnic_submit_kwqe_16(dev
, RAMROD_CMD_ID_ETH_CLIENT_SETUP
,
5219 cid
, ETH_CONNECTION_TYPE
, &l5_data
);
5222 while (test_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
) &&
5226 if (test_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
))
5227 netdev_err(dev
->netdev
,
5228 "iSCSI CLIENT_SETUP did not complete\n");
5229 cnic_spq_completion(dev
, DRV_CTL_RET_L2_SPQ_CREDIT_CMD
, 1);
5230 cnic_ring_ctl(dev
, cid
, cli
, 1);
5231 *cid_ptr
= cid
>> 4;
5232 *(cid_ptr
+ 1) = cid
* bp
->db_size
;
5233 *(cid_ptr
+ 2) = UIO_USE_TX_DOORBELL
;
5237 static void cnic_shutdown_rings(struct cnic_dev
*dev
)
5239 struct cnic_local
*cp
= dev
->cnic_priv
;
5240 struct cnic_uio_dev
*udev
= cp
->udev
;
5243 if (!test_bit(CNIC_LCL_FL_RINGS_INITED
, &cp
->cnic_local_flags
))
5246 if (test_bit(CNIC_F_BNX2_CLASS
, &dev
->flags
)) {
5247 cnic_shutdown_bnx2_rx_ring(dev
);
5248 } else if (test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
)) {
5249 u32 cli
= cp
->ethdev
->iscsi_l2_client_id
;
5250 u32 cid
= cp
->ethdev
->iscsi_l2_cid
;
5251 union l5cm_specific_data l5_data
;
5254 cnic_ring_ctl(dev
, cid
, cli
, 0);
5256 set_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
);
5258 l5_data
.phy_address
.lo
= cli
;
5259 l5_data
.phy_address
.hi
= 0;
5260 cnic_submit_kwqe_16(dev
, RAMROD_CMD_ID_ETH_HALT
,
5261 cid
, ETH_CONNECTION_TYPE
, &l5_data
);
5263 while (test_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
) &&
5267 if (test_bit(CNIC_LCL_FL_L2_WAIT
, &cp
->cnic_local_flags
))
5268 netdev_err(dev
->netdev
,
5269 "iSCSI CLIENT_HALT did not complete\n");
5270 cnic_spq_completion(dev
, DRV_CTL_RET_L2_SPQ_CREDIT_CMD
, 1);
5272 memset(&l5_data
, 0, sizeof(l5_data
));
5273 cnic_submit_kwqe_16(dev
, RAMROD_CMD_ID_COMMON_CFC_DEL
,
5274 cid
, NONE_CONNECTION_TYPE
, &l5_data
);
5277 clear_bit(CNIC_LCL_FL_RINGS_INITED
, &cp
->cnic_local_flags
);
5278 rx_ring
= udev
->l2_ring
+ CNIC_PAGE_SIZE
;
5279 memset(rx_ring
, 0, CNIC_PAGE_SIZE
);
5282 static int cnic_register_netdev(struct cnic_dev
*dev
)
5284 struct cnic_local
*cp
= dev
->cnic_priv
;
5285 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
5291 if (ethdev
->drv_state
& CNIC_DRV_STATE_REGD
)
5294 err
= ethdev
->drv_register_cnic(dev
->netdev
, cp
->cnic_ops
, dev
);
5296 netdev_err(dev
->netdev
, "register_cnic failed\n");
5298 /* Read iSCSI config again. On some bnx2x device, iSCSI config
5299 * can change after firmware is downloaded.
5301 dev
->max_iscsi_conn
= ethdev
->max_iscsi_conn
;
5302 if (ethdev
->drv_state
& CNIC_DRV_STATE_NO_ISCSI
)
5303 dev
->max_iscsi_conn
= 0;
5308 static void cnic_unregister_netdev(struct cnic_dev
*dev
)
5310 struct cnic_local
*cp
= dev
->cnic_priv
;
5311 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
5316 ethdev
->drv_unregister_cnic(dev
->netdev
);
5319 static int cnic_start_hw(struct cnic_dev
*dev
)
5321 struct cnic_local
*cp
= dev
->cnic_priv
;
5322 struct cnic_eth_dev
*ethdev
= cp
->ethdev
;
5325 if (test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
5328 dev
->regview
= ethdev
->io_base
;
5329 pci_dev_get(dev
->pcidev
);
5330 cp
->func
= PCI_FUNC(dev
->pcidev
->devfn
);
5331 cp
->status_blk
.gen
= ethdev
->irq_arr
[0].status_blk
;
5332 cp
->status_blk_num
= ethdev
->irq_arr
[0].status_blk_num
;
5334 err
= cp
->alloc_resc(dev
);
5336 netdev_err(dev
->netdev
, "allocate resource failure\n");
5340 err
= cp
->start_hw(dev
);
5344 err
= cnic_cm_open(dev
);
5348 set_bit(CNIC_F_CNIC_UP
, &dev
->flags
);
5350 cp
->enable_int(dev
);
5355 if (ethdev
->drv_state
& CNIC_DRV_STATE_HANDLES_IRQ
)
5359 pci_dev_put(dev
->pcidev
);
5363 static void cnic_stop_bnx2_hw(struct cnic_dev
*dev
)
5365 cnic_disable_bnx2_int_sync(dev
);
5367 cnic_reg_wr_ind(dev
, BNX2_CP_SCRATCH
+ 0x20, 0);
5368 cnic_reg_wr_ind(dev
, BNX2_COM_SCRATCH
+ 0x20, 0);
5370 cnic_init_context(dev
, KWQ_CID
);
5371 cnic_init_context(dev
, KCQ_CID
);
5373 cnic_setup_5709_context(dev
, 0);
5376 cnic_free_resc(dev
);
5380 static void cnic_stop_bnx2x_hw(struct cnic_dev
*dev
)
5382 struct cnic_local
*cp
= dev
->cnic_priv
;
5383 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
5384 u32 hc_index
= HC_INDEX_ISCSI_EQ_CONS
;
5385 u32 sb_id
= cp
->status_blk_num
;
5386 u32 idx_off
, syn_off
;
5390 if (BNX2X_CHIP_IS_E2_PLUS(bp
)) {
5391 idx_off
= offsetof(struct hc_status_block_e2
, index_values
) +
5392 (hc_index
* sizeof(u16
));
5394 syn_off
= CSTORM_HC_SYNC_LINE_INDEX_E2_OFFSET(hc_index
, sb_id
);
5396 idx_off
= offsetof(struct hc_status_block_e1x
, index_values
) +
5397 (hc_index
* sizeof(u16
));
5399 syn_off
= CSTORM_HC_SYNC_LINE_INDEX_E1X_OFFSET(hc_index
, sb_id
);
5401 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+ syn_off
, 0);
5402 CNIC_WR16(dev
, BAR_CSTRORM_INTMEM
+ CSTORM_STATUS_BLOCK_OFFSET(sb_id
) +
5405 *cp
->kcq1
.hw_prod_idx_ptr
= 0;
5406 CNIC_WR(dev
, BAR_CSTRORM_INTMEM
+
5407 CSTORM_ISCSI_EQ_CONS_OFFSET(bp
->pfid
, 0), 0);
5408 CNIC_WR16(dev
, cp
->kcq1
.io_addr
, 0);
5409 cnic_free_resc(dev
);
5412 static void cnic_stop_hw(struct cnic_dev
*dev
)
5414 if (test_bit(CNIC_F_CNIC_UP
, &dev
->flags
)) {
5415 struct cnic_local
*cp
= dev
->cnic_priv
;
5418 /* Need to wait for the ring shutdown event to complete
5419 * before clearing the CNIC_UP flag.
5421 while (cp
->udev
&& cp
->udev
->uio_dev
!= -1 && i
< 15) {
5425 cnic_shutdown_rings(dev
);
5427 cp
->ethdev
->drv_state
&= ~CNIC_DRV_STATE_HANDLES_IRQ
;
5428 clear_bit(CNIC_F_CNIC_UP
, &dev
->flags
);
5429 RCU_INIT_POINTER(cp
->ulp_ops
[CNIC_ULP_L4
], NULL
);
5431 cnic_cm_shutdown(dev
);
5433 pci_dev_put(dev
->pcidev
);
5437 static void cnic_free_dev(struct cnic_dev
*dev
)
5441 while ((atomic_read(&dev
->ref_count
) != 0) && i
< 10) {
5445 if (atomic_read(&dev
->ref_count
) != 0)
5446 netdev_err(dev
->netdev
, "Failed waiting for ref count to go to zero\n");
5448 netdev_info(dev
->netdev
, "Removed CNIC device\n");
5449 dev_put(dev
->netdev
);
5453 static int cnic_get_fc_npiv_tbl(struct cnic_dev
*dev
,
5454 struct cnic_fc_npiv_tbl
*npiv_tbl
)
5456 struct cnic_local
*cp
= dev
->cnic_priv
;
5457 struct bnx2x
*bp
= netdev_priv(dev
->netdev
);
5460 if (!test_bit(CNIC_F_CNIC_UP
, &dev
->flags
))
5461 return -EAGAIN
; /* bnx2x is down */
5463 if (!BNX2X_CHIP_IS_E2_PLUS(bp
))
5466 ret
= cp
->ethdev
->drv_get_fc_npiv_tbl(dev
->netdev
, npiv_tbl
);
5470 static struct cnic_dev
*cnic_alloc_dev(struct net_device
*dev
,
5471 struct pci_dev
*pdev
)
5473 struct cnic_dev
*cdev
;
5474 struct cnic_local
*cp
;
5477 alloc_size
= sizeof(struct cnic_dev
) + sizeof(struct cnic_local
);
5479 cdev
= kzalloc(alloc_size
, GFP_KERNEL
);
5484 cdev
->cnic_priv
= (char *)cdev
+ sizeof(struct cnic_dev
);
5485 cdev
->register_device
= cnic_register_device
;
5486 cdev
->unregister_device
= cnic_unregister_device
;
5487 cdev
->iscsi_nl_msg_recv
= cnic_iscsi_nl_msg_recv
;
5488 cdev
->get_fc_npiv_tbl
= cnic_get_fc_npiv_tbl
;
5489 atomic_set(&cdev
->ref_count
, 0);
5491 cp
= cdev
->cnic_priv
;
5493 cp
->l2_single_buf_size
= 0x400;
5494 cp
->l2_rx_ring_size
= 3;
5496 spin_lock_init(&cp
->cnic_ulp_lock
);
5498 netdev_info(dev
, "Added CNIC device\n");
5503 static struct cnic_dev
*init_bnx2_cnic(struct net_device
*dev
)
5505 struct pci_dev
*pdev
;
5506 struct cnic_dev
*cdev
;
5507 struct cnic_local
*cp
;
5508 struct bnx2
*bp
= netdev_priv(dev
);
5509 struct cnic_eth_dev
*ethdev
= NULL
;
5512 ethdev
= (bp
->cnic_probe
)(dev
);
5517 pdev
= ethdev
->pdev
;
5523 if ((pdev
->device
== PCI_DEVICE_ID_NX2_5709
||
5524 pdev
->device
== PCI_DEVICE_ID_NX2_5709S
) &&
5525 (pdev
->revision
< 0x10)) {
5531 cdev
= cnic_alloc_dev(dev
, pdev
);
5535 set_bit(CNIC_F_BNX2_CLASS
, &cdev
->flags
);
5536 cdev
->submit_kwqes
= cnic_submit_bnx2_kwqes
;
5538 cp
= cdev
->cnic_priv
;
5539 cp
->ethdev
= ethdev
;
5540 cdev
->pcidev
= pdev
;
5541 cp
->chip_id
= ethdev
->chip_id
;
5543 cdev
->max_iscsi_conn
= ethdev
->max_iscsi_conn
;
5545 cp
->cnic_ops
= &cnic_bnx2_ops
;
5546 cp
->start_hw
= cnic_start_bnx2_hw
;
5547 cp
->stop_hw
= cnic_stop_bnx2_hw
;
5548 cp
->setup_pgtbl
= cnic_setup_page_tbl
;
5549 cp
->alloc_resc
= cnic_alloc_bnx2_resc
;
5550 cp
->free_resc
= cnic_free_resc
;
5551 cp
->start_cm
= cnic_cm_init_bnx2_hw
;
5552 cp
->stop_cm
= cnic_cm_stop_bnx2_hw
;
5553 cp
->enable_int
= cnic_enable_bnx2_int
;
5554 cp
->disable_int_sync
= cnic_disable_bnx2_int_sync
;
5555 cp
->close_conn
= cnic_close_bnx2_conn
;
5563 static struct cnic_dev
*init_bnx2x_cnic(struct net_device
*dev
)
5565 struct pci_dev
*pdev
;
5566 struct cnic_dev
*cdev
;
5567 struct cnic_local
*cp
;
5568 struct bnx2x
*bp
= netdev_priv(dev
);
5569 struct cnic_eth_dev
*ethdev
= NULL
;
5572 ethdev
= bp
->cnic_probe(dev
);
5577 pdev
= ethdev
->pdev
;
5582 cdev
= cnic_alloc_dev(dev
, pdev
);
5588 set_bit(CNIC_F_BNX2X_CLASS
, &cdev
->flags
);
5589 cdev
->submit_kwqes
= cnic_submit_bnx2x_kwqes
;
5591 cp
= cdev
->cnic_priv
;
5592 cp
->ethdev
= ethdev
;
5593 cdev
->pcidev
= pdev
;
5594 cp
->chip_id
= ethdev
->chip_id
;
5596 cdev
->stats_addr
= ethdev
->addr_drv_info_to_mcp
;
5598 if (!(ethdev
->drv_state
& CNIC_DRV_STATE_NO_ISCSI
))
5599 cdev
->max_iscsi_conn
= ethdev
->max_iscsi_conn
;
5600 if (CNIC_SUPPORTS_FCOE(bp
)) {
5601 cdev
->max_fcoe_conn
= ethdev
->max_fcoe_conn
;
5602 cdev
->max_fcoe_exchanges
= ethdev
->max_fcoe_exchanges
;
5605 if (cdev
->max_fcoe_conn
> BNX2X_FCOE_NUM_CONNECTIONS
)
5606 cdev
->max_fcoe_conn
= BNX2X_FCOE_NUM_CONNECTIONS
;
5608 memcpy(cdev
->mac_addr
, ethdev
->iscsi_mac
, ETH_ALEN
);
5610 cp
->cnic_ops
= &cnic_bnx2x_ops
;
5611 cp
->start_hw
= cnic_start_bnx2x_hw
;
5612 cp
->stop_hw
= cnic_stop_bnx2x_hw
;
5613 cp
->setup_pgtbl
= cnic_setup_page_tbl_le
;
5614 cp
->alloc_resc
= cnic_alloc_bnx2x_resc
;
5615 cp
->free_resc
= cnic_free_resc
;
5616 cp
->start_cm
= cnic_cm_init_bnx2x_hw
;
5617 cp
->stop_cm
= cnic_cm_stop_bnx2x_hw
;
5618 cp
->enable_int
= cnic_enable_bnx2x_int
;
5619 cp
->disable_int_sync
= cnic_disable_bnx2x_int_sync
;
5620 if (BNX2X_CHIP_IS_E2_PLUS(bp
)) {
5621 cp
->ack_int
= cnic_ack_bnx2x_e2_msix
;
5622 cp
->arm_int
= cnic_arm_bnx2x_e2_msix
;
5624 cp
->ack_int
= cnic_ack_bnx2x_msix
;
5625 cp
->arm_int
= cnic_arm_bnx2x_msix
;
5627 cp
->close_conn
= cnic_close_bnx2x_conn
;
5631 static struct cnic_dev
*is_cnic_dev(struct net_device
*dev
)
5633 struct ethtool_drvinfo drvinfo
;
5634 struct cnic_dev
*cdev
= NULL
;
5636 if (dev
->ethtool_ops
&& dev
->ethtool_ops
->get_drvinfo
) {
5637 memset(&drvinfo
, 0, sizeof(drvinfo
));
5638 dev
->ethtool_ops
->get_drvinfo(dev
, &drvinfo
);
5640 if (!strcmp(drvinfo
.driver
, "bnx2"))
5641 cdev
= init_bnx2_cnic(dev
);
5642 if (!strcmp(drvinfo
.driver
, "bnx2x"))
5643 cdev
= init_bnx2x_cnic(dev
);
5645 write_lock(&cnic_dev_lock
);
5646 list_add(&cdev
->list
, &cnic_dev_list
);
5647 write_unlock(&cnic_dev_lock
);
5653 static void cnic_rcv_netevent(struct cnic_local
*cp
, unsigned long event
,
5658 for (if_type
= 0; if_type
< MAX_CNIC_ULP_TYPE
; if_type
++) {
5659 struct cnic_ulp_ops
*ulp_ops
;
5662 mutex_lock(&cnic_lock
);
5663 ulp_ops
= rcu_dereference_protected(cp
->ulp_ops
[if_type
],
5664 lockdep_is_held(&cnic_lock
));
5665 if (!ulp_ops
|| !ulp_ops
->indicate_netevent
) {
5666 mutex_unlock(&cnic_lock
);
5670 ctx
= cp
->ulp_handle
[if_type
];
5672 set_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[if_type
]);
5673 mutex_unlock(&cnic_lock
);
5675 ulp_ops
->indicate_netevent(ctx
, event
, vlan_id
);
5677 clear_bit(ULP_F_CALL_PENDING
, &cp
->ulp_flags
[if_type
]);
5681 /* netdev event handler */
5682 static int cnic_netdev_event(struct notifier_block
*this, unsigned long event
,
5685 struct net_device
*netdev
= netdev_notifier_info_to_dev(ptr
);
5686 struct cnic_dev
*dev
;
5689 dev
= cnic_from_netdev(netdev
);
5691 if (!dev
&& event
== NETDEV_REGISTER
) {
5692 /* Check for the hot-plug device */
5693 dev
= is_cnic_dev(netdev
);
5700 struct cnic_local
*cp
= dev
->cnic_priv
;
5704 else if (event
== NETDEV_UNREGISTER
)
5707 if (event
== NETDEV_UP
) {
5708 if (cnic_register_netdev(dev
) != 0) {
5712 if (!cnic_start_hw(dev
))
5713 cnic_ulp_start(dev
);
5716 cnic_rcv_netevent(cp
, event
, 0);
5718 if (event
== NETDEV_GOING_DOWN
) {
5721 cnic_unregister_netdev(dev
);
5722 } else if (event
== NETDEV_UNREGISTER
) {
5723 write_lock(&cnic_dev_lock
);
5724 list_del_init(&dev
->list
);
5725 write_unlock(&cnic_dev_lock
);
5733 struct net_device
*realdev
;
5736 vid
= cnic_get_vlan(netdev
, &realdev
);
5738 dev
= cnic_from_netdev(realdev
);
5740 vid
|= VLAN_CFI_MASK
; /* make non-zero */
5741 cnic_rcv_netevent(dev
->cnic_priv
, event
, vid
);
5750 static struct notifier_block cnic_netdev_notifier
= {
5751 .notifier_call
= cnic_netdev_event
5754 static void cnic_release(void)
5756 struct cnic_uio_dev
*udev
;
5758 while (!list_empty(&cnic_udev_list
)) {
5759 udev
= list_entry(cnic_udev_list
.next
, struct cnic_uio_dev
,
5761 cnic_free_uio(udev
);
5765 static int __init
cnic_init(void)
5769 pr_info("%s", version
);
5771 rc
= register_netdevice_notifier(&cnic_netdev_notifier
);
5777 cnic_wq
= create_singlethread_workqueue("cnic_wq");
5780 unregister_netdevice_notifier(&cnic_netdev_notifier
);
5787 static void __exit
cnic_exit(void)
5789 unregister_netdevice_notifier(&cnic_netdev_notifier
);
5791 destroy_workqueue(cnic_wq
);
5794 module_init(cnic_init
);
5795 module_exit(cnic_exit
);