2 * Copyright (c) 2009-2010 Chelsio, Inc. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
17 * - Redistributions in binary form must reproduce the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer in the documentation and/or other materials
20 * provided with the distribution.
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
26 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
27 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
28 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 #ifndef __IW_CXGB4_H__
32 #define __IW_CXGB4_H__
34 #include <linux/mutex.h>
35 #include <linux/list.h>
36 #include <linux/spinlock.h>
37 #include <linux/idr.h>
38 #include <linux/completion.h>
39 #include <linux/netdevice.h>
40 #include <linux/sched.h>
41 #include <linux/pci.h>
42 #include <linux/dma-mapping.h>
43 #include <linux/inet.h>
44 #include <linux/wait.h>
45 #include <linux/kref.h>
46 #include <linux/timer.h>
49 #include <asm/byteorder.h>
51 #include <net/net_namespace.h>
53 #include <rdma/ib_verbs.h>
54 #include <rdma/iw_cm.h>
55 #include <rdma/rdma_netlink.h>
56 #include <rdma/iw_portmap.h>
59 #include "cxgb4_uld.h"
63 #define DRV_NAME "iw_cxgb4"
64 #define MOD DRV_NAME ":"
66 extern int c4iw_debug
;
67 #define PDBG(fmt, args...) \
70 printk(MOD fmt, ## args); \
75 #define PBL_OFF(rdev_p, a) ((a) - (rdev_p)->lldi.vr->pbl.start)
76 #define RQT_OFF(rdev_p, a) ((a) - (rdev_p)->lldi.vr->rq.start)
78 static inline void *cplhdr(struct sk_buff
*skb
)
83 #define C4IW_ID_TABLE_F_RANDOM 1 /* Pseudo-randomize the id's returned */
84 #define C4IW_ID_TABLE_F_EMPTY 2 /* Table is initially empty */
86 struct c4iw_id_table
{
88 u32 start
; /* logical minimal id */
89 u32 last
; /* hint for find */
95 struct c4iw_resource
{
96 struct c4iw_id_table tpt_table
;
97 struct c4iw_id_table qid_table
;
98 struct c4iw_id_table pdid_table
;
101 struct c4iw_qid_list
{
102 struct list_head entry
;
106 struct c4iw_dev_ucontext
{
107 struct list_head qpids
;
108 struct list_head cqids
;
112 enum c4iw_rdev_flags
{
113 T4_FATAL_ERROR
= (1<<0),
114 T4_STATUS_PAGE_DISABLED
= (1<<1),
126 struct c4iw_stat qid
;
128 struct c4iw_stat stag
;
129 struct c4iw_stat pbl
;
130 struct c4iw_stat rqt
;
131 struct c4iw_stat ocqp
;
135 u64 db_state_transitions
;
136 u64 db_fc_interruptions
;
138 u64 act_ofld_conn_fails
;
139 u64 pas_ofld_conn_fails
;
143 struct c4iw_hw_queue
{
144 int t4_eq_status_entries
;
154 struct wr_log_entry
{
155 struct timespec post_host_ts
;
156 struct timespec poll_host_ts
;
167 struct c4iw_resource resource
;
170 struct c4iw_dev_ucontext uctx
;
171 struct gen_pool
*pbl_pool
;
172 struct gen_pool
*rqt_pool
;
173 struct gen_pool
*ocqp_pool
;
175 struct cxgb4_lld_info lldi
;
176 unsigned long bar2_pa
;
177 void __iomem
*bar2_kva
;
178 unsigned long oc_mw_pa
;
179 void __iomem
*oc_mw_kva
;
180 struct c4iw_stats stats
;
181 struct c4iw_hw_queue hw_queue
;
182 struct t4_dev_status_page
*status_page
;
184 struct wr_log_entry
*wr_log
;
188 static inline int c4iw_fatal_error(struct c4iw_rdev
*rdev
)
190 return rdev
->flags
& T4_FATAL_ERROR
;
193 static inline int c4iw_num_stags(struct c4iw_rdev
*rdev
)
195 return (int)(rdev
->lldi
.vr
->stag
.size
>> 5);
198 #define C4IW_WR_TO (60*HZ)
200 struct c4iw_wr_wait
{
201 struct completion completion
;
205 static inline void c4iw_init_wr_wait(struct c4iw_wr_wait
*wr_waitp
)
208 init_completion(&wr_waitp
->completion
);
211 static inline void c4iw_wake_up(struct c4iw_wr_wait
*wr_waitp
, int ret
)
214 complete(&wr_waitp
->completion
);
217 static inline int c4iw_wait_for_reply(struct c4iw_rdev
*rdev
,
218 struct c4iw_wr_wait
*wr_waitp
,
224 if (c4iw_fatal_error(rdev
)) {
225 wr_waitp
->ret
= -EIO
;
229 ret
= wait_for_completion_timeout(&wr_waitp
->completion
, C4IW_WR_TO
);
231 PDBG("%s - Device %s not responding (disabling device) - tid %u qpid %u\n",
232 func
, pci_name(rdev
->lldi
.pdev
), hwtid
, qpid
);
233 rdev
->flags
|= T4_FATAL_ERROR
;
234 wr_waitp
->ret
= -EIO
;
238 PDBG("%s: FW reply %d tid %u qpid %u\n",
239 pci_name(rdev
->lldi
.pdev
), wr_waitp
->ret
, hwtid
, qpid
);
240 return wr_waitp
->ret
;
251 struct ib_device ibdev
;
252 struct c4iw_rdev rdev
;
253 u32 device_cap_flags
;
258 struct mutex db_mutex
;
259 struct dentry
*debugfs_root
;
260 enum db_state db_state
;
261 struct idr hwtid_idr
;
264 struct list_head db_fc_list
;
268 static inline struct c4iw_dev
*to_c4iw_dev(struct ib_device
*ibdev
)
270 return container_of(ibdev
, struct c4iw_dev
, ibdev
);
273 static inline struct c4iw_dev
*rdev_to_c4iw_dev(struct c4iw_rdev
*rdev
)
275 return container_of(rdev
, struct c4iw_dev
, rdev
);
278 static inline struct c4iw_cq
*get_chp(struct c4iw_dev
*rhp
, u32 cqid
)
280 return idr_find(&rhp
->cqidr
, cqid
);
283 static inline struct c4iw_qp
*get_qhp(struct c4iw_dev
*rhp
, u32 qpid
)
285 return idr_find(&rhp
->qpidr
, qpid
);
288 static inline struct c4iw_mr
*get_mhp(struct c4iw_dev
*rhp
, u32 mmid
)
290 return idr_find(&rhp
->mmidr
, mmid
);
293 static inline int _insert_handle(struct c4iw_dev
*rhp
, struct idr
*idr
,
294 void *handle
, u32 id
, int lock
)
299 idr_preload(GFP_KERNEL
);
300 spin_lock_irq(&rhp
->lock
);
303 ret
= idr_alloc(idr
, handle
, id
, id
+ 1, GFP_ATOMIC
);
306 spin_unlock_irq(&rhp
->lock
);
310 BUG_ON(ret
== -ENOSPC
);
311 return ret
< 0 ? ret
: 0;
314 static inline int insert_handle(struct c4iw_dev
*rhp
, struct idr
*idr
,
315 void *handle
, u32 id
)
317 return _insert_handle(rhp
, idr
, handle
, id
, 1);
320 static inline int insert_handle_nolock(struct c4iw_dev
*rhp
, struct idr
*idr
,
321 void *handle
, u32 id
)
323 return _insert_handle(rhp
, idr
, handle
, id
, 0);
326 static inline void _remove_handle(struct c4iw_dev
*rhp
, struct idr
*idr
,
330 spin_lock_irq(&rhp
->lock
);
333 spin_unlock_irq(&rhp
->lock
);
336 static inline void remove_handle(struct c4iw_dev
*rhp
, struct idr
*idr
, u32 id
)
338 _remove_handle(rhp
, idr
, id
, 1);
341 static inline void remove_handle_nolock(struct c4iw_dev
*rhp
,
342 struct idr
*idr
, u32 id
)
344 _remove_handle(rhp
, idr
, id
, 0);
347 extern uint c4iw_max_read_depth
;
349 static inline int cur_max_read_depth(struct c4iw_dev
*dev
)
351 return min(dev
->rdev
.lldi
.max_ordird_qp
, c4iw_max_read_depth
);
357 struct c4iw_dev
*rhp
;
360 static inline struct c4iw_pd
*to_c4iw_pd(struct ib_pd
*ibpd
)
362 return container_of(ibpd
, struct c4iw_pd
, ibpd
);
365 struct tpt_attributes
{
368 enum fw_ri_mem_perms perms
;
377 u32 remote_invaliate_disable
:1;
379 u32 mw_bind_enable
:1;
385 struct ib_umem
*umem
;
386 struct c4iw_dev
*rhp
;
388 struct tpt_attributes attr
;
395 static inline struct c4iw_mr
*to_c4iw_mr(struct ib_mr
*ibmr
)
397 return container_of(ibmr
, struct c4iw_mr
, ibmr
);
402 struct c4iw_dev
*rhp
;
404 struct tpt_attributes attr
;
407 static inline struct c4iw_mw
*to_c4iw_mw(struct ib_mw
*ibmw
)
409 return container_of(ibmw
, struct c4iw_mw
, ibmw
);
414 struct c4iw_dev
*rhp
;
417 spinlock_t comp_handler_lock
;
419 wait_queue_head_t wait
;
422 static inline struct c4iw_cq
*to_c4iw_cq(struct ib_cq
*ibcq
)
424 return container_of(ibcq
, struct c4iw_cq
, ibcq
);
427 struct c4iw_mpa_attributes
{
429 u8 recv_marker_enabled
;
430 u8 xmit_marker_enabled
;
432 u8 enhanced_rdma_conn
;
437 struct c4iw_qp_attributes
{
443 u32 sq_max_sges_rdma_write
;
447 u8 enable_rdma_write
;
449 u8 enable_mmid0_fastreg
;
454 char terminate_buffer
[52];
455 u32 terminate_msg_len
;
456 u8 is_terminate_local
;
457 struct c4iw_mpa_attributes mpa_attr
;
458 struct c4iw_ep
*llp_stream_handle
;
468 struct list_head db_fc_entry
;
469 struct c4iw_dev
*rhp
;
471 struct c4iw_qp_attributes attr
;
476 wait_queue_head_t wait
;
477 struct timer_list timer
;
479 struct completion rq_drained
;
480 struct completion sq_drained
;
483 static inline struct c4iw_qp
*to_c4iw_qp(struct ib_qp
*ibqp
)
485 return container_of(ibqp
, struct c4iw_qp
, ibqp
);
488 struct c4iw_ucontext
{
489 struct ib_ucontext ibucontext
;
490 struct c4iw_dev_ucontext uctx
;
492 spinlock_t mmap_lock
;
493 struct list_head mmaps
;
496 static inline struct c4iw_ucontext
*to_c4iw_ucontext(struct ib_ucontext
*c
)
498 return container_of(c
, struct c4iw_ucontext
, ibucontext
);
501 struct c4iw_mm_entry
{
502 struct list_head entry
;
508 static inline struct c4iw_mm_entry
*remove_mmap(struct c4iw_ucontext
*ucontext
,
509 u32 key
, unsigned len
)
511 struct list_head
*pos
, *nxt
;
512 struct c4iw_mm_entry
*mm
;
514 spin_lock(&ucontext
->mmap_lock
);
515 list_for_each_safe(pos
, nxt
, &ucontext
->mmaps
) {
517 mm
= list_entry(pos
, struct c4iw_mm_entry
, entry
);
518 if (mm
->key
== key
&& mm
->len
== len
) {
519 list_del_init(&mm
->entry
);
520 spin_unlock(&ucontext
->mmap_lock
);
521 PDBG("%s key 0x%x addr 0x%llx len %d\n", __func__
,
522 key
, (unsigned long long) mm
->addr
, mm
->len
);
526 spin_unlock(&ucontext
->mmap_lock
);
530 static inline void insert_mmap(struct c4iw_ucontext
*ucontext
,
531 struct c4iw_mm_entry
*mm
)
533 spin_lock(&ucontext
->mmap_lock
);
534 PDBG("%s key 0x%x addr 0x%llx len %d\n", __func__
,
535 mm
->key
, (unsigned long long) mm
->addr
, mm
->len
);
536 list_add_tail(&mm
->entry
, &ucontext
->mmaps
);
537 spin_unlock(&ucontext
->mmap_lock
);
540 enum c4iw_qp_attr_mask
{
541 C4IW_QP_ATTR_NEXT_STATE
= 1 << 0,
542 C4IW_QP_ATTR_SQ_DB
= 1<<1,
543 C4IW_QP_ATTR_RQ_DB
= 1<<2,
544 C4IW_QP_ATTR_ENABLE_RDMA_READ
= 1 << 7,
545 C4IW_QP_ATTR_ENABLE_RDMA_WRITE
= 1 << 8,
546 C4IW_QP_ATTR_ENABLE_RDMA_BIND
= 1 << 9,
547 C4IW_QP_ATTR_MAX_ORD
= 1 << 11,
548 C4IW_QP_ATTR_MAX_IRD
= 1 << 12,
549 C4IW_QP_ATTR_LLP_STREAM_HANDLE
= 1 << 22,
550 C4IW_QP_ATTR_STREAM_MSG_BUFFER
= 1 << 23,
551 C4IW_QP_ATTR_MPA_ATTR
= 1 << 24,
552 C4IW_QP_ATTR_QP_CONTEXT_ACTIVATE
= 1 << 25,
553 C4IW_QP_ATTR_VALID_MODIFY
= (C4IW_QP_ATTR_ENABLE_RDMA_READ
|
554 C4IW_QP_ATTR_ENABLE_RDMA_WRITE
|
555 C4IW_QP_ATTR_MAX_ORD
|
556 C4IW_QP_ATTR_MAX_IRD
|
557 C4IW_QP_ATTR_LLP_STREAM_HANDLE
|
558 C4IW_QP_ATTR_STREAM_MSG_BUFFER
|
559 C4IW_QP_ATTR_MPA_ATTR
|
560 C4IW_QP_ATTR_QP_CONTEXT_ACTIVATE
)
563 int c4iw_modify_qp(struct c4iw_dev
*rhp
,
565 enum c4iw_qp_attr_mask mask
,
566 struct c4iw_qp_attributes
*attrs
,
573 C4IW_QP_STATE_TERMINATE
,
574 C4IW_QP_STATE_CLOSING
,
578 static inline int c4iw_convert_state(enum ib_qp_state ib_state
)
583 return C4IW_QP_STATE_IDLE
;
585 return C4IW_QP_STATE_RTS
;
587 return C4IW_QP_STATE_CLOSING
;
589 return C4IW_QP_STATE_TERMINATE
;
591 return C4IW_QP_STATE_ERROR
;
597 static inline int to_ib_qp_state(int c4iw_qp_state
)
599 switch (c4iw_qp_state
) {
600 case C4IW_QP_STATE_IDLE
:
602 case C4IW_QP_STATE_RTS
:
604 case C4IW_QP_STATE_CLOSING
:
606 case C4IW_QP_STATE_TERMINATE
:
608 case C4IW_QP_STATE_ERROR
:
614 static inline u32
c4iw_ib_to_tpt_access(int a
)
616 return (a
& IB_ACCESS_REMOTE_WRITE
? FW_RI_MEM_ACCESS_REM_WRITE
: 0) |
617 (a
& IB_ACCESS_REMOTE_READ
? FW_RI_MEM_ACCESS_REM_READ
: 0) |
618 (a
& IB_ACCESS_LOCAL_WRITE
? FW_RI_MEM_ACCESS_LOCAL_WRITE
: 0) |
619 FW_RI_MEM_ACCESS_LOCAL_READ
;
622 static inline u32
c4iw_ib_to_tpt_bind_access(int acc
)
624 return (acc
& IB_ACCESS_REMOTE_WRITE
? FW_RI_MEM_ACCESS_REM_WRITE
: 0) |
625 (acc
& IB_ACCESS_REMOTE_READ
? FW_RI_MEM_ACCESS_REM_READ
: 0);
628 enum c4iw_mmid_state
{
629 C4IW_STAG_STATE_VALID
,
630 C4IW_STAG_STATE_INVALID
633 #define C4IW_NODE_DESC "cxgb4 Chelsio Communications"
635 #define MPA_KEY_REQ "MPA ID Req Frame"
636 #define MPA_KEY_REP "MPA ID Rep Frame"
638 #define MPA_MAX_PRIVATE_DATA 256
639 #define MPA_ENHANCED_RDMA_CONN 0x10
640 #define MPA_REJECT 0x20
642 #define MPA_MARKERS 0x80
643 #define MPA_FLAGS_MASK 0xE0
645 #define MPA_V2_PEER2PEER_MODEL 0x8000
646 #define MPA_V2_ZERO_LEN_FPDU_RTR 0x4000
647 #define MPA_V2_RDMA_WRITE_RTR 0x8000
648 #define MPA_V2_RDMA_READ_RTR 0x4000
649 #define MPA_V2_IRD_ORD_MASK 0x3FFF
651 #define c4iw_put_ep(ep) { \
652 PDBG("put_ep (via %s:%u) ep %p refcnt %d\n", __func__, __LINE__, \
653 ep, atomic_read(&((ep)->kref.refcount))); \
654 WARN_ON(atomic_read(&((ep)->kref.refcount)) < 1); \
655 kref_put(&((ep)->kref), _c4iw_free_ep); \
658 #define c4iw_get_ep(ep) { \
659 PDBG("get_ep (via %s:%u) ep %p, refcnt %d\n", __func__, __LINE__, \
660 ep, atomic_read(&((ep)->kref.refcount))); \
661 kref_get(&((ep)->kref)); \
663 void _c4iw_free_ep(struct kref
*kref
);
669 __be16 private_data_size
;
673 struct mpa_v2_conn_params
{
678 struct terminate_message
{
685 #define TERM_MAX_LENGTH (sizeof(struct terminate_message) + 2 + 18 + 28)
687 enum c4iw_layers_types
{
691 RDMAP_LOCAL_CATA
= 0x00,
692 RDMAP_REMOTE_PROT
= 0x01,
693 RDMAP_REMOTE_OP
= 0x02,
694 DDP_LOCAL_CATA
= 0x00,
695 DDP_TAGGED_ERR
= 0x01,
696 DDP_UNTAGGED_ERR
= 0x02,
700 enum c4iw_rdma_ecodes
{
701 RDMAP_INV_STAG
= 0x00,
702 RDMAP_BASE_BOUNDS
= 0x01,
703 RDMAP_ACC_VIOL
= 0x02,
704 RDMAP_STAG_NOT_ASSOC
= 0x03,
705 RDMAP_TO_WRAP
= 0x04,
706 RDMAP_INV_VERS
= 0x05,
707 RDMAP_INV_OPCODE
= 0x06,
708 RDMAP_STREAM_CATA
= 0x07,
709 RDMAP_GLOBAL_CATA
= 0x08,
710 RDMAP_CANT_INV_STAG
= 0x09,
711 RDMAP_UNSPECIFIED
= 0xff
714 enum c4iw_ddp_ecodes
{
715 DDPT_INV_STAG
= 0x00,
716 DDPT_BASE_BOUNDS
= 0x01,
717 DDPT_STAG_NOT_ASSOC
= 0x02,
719 DDPT_INV_VERS
= 0x04,
721 DDPU_INV_MSN_NOBUF
= 0x02,
722 DDPU_INV_MSN_RANGE
= 0x03,
724 DDPU_MSG_TOOBIG
= 0x05,
728 enum c4iw_mpa_ecodes
{
730 MPA_MARKER_ERR
= 0x03,
731 MPA_LOCAL_CATA
= 0x05,
732 MPA_INSUFF_IRD
= 0x06,
733 MPA_NOMATCH_RTR
= 0x07,
752 PEER_ABORT_IN_PROGRESS
= 0,
753 ABORT_REQ_IN_PROGRESS
= 1,
754 RELEASE_RESOURCES
= 2,
760 enum c4iw_ep_history
{
780 CONN_RPL_UPCALL
= 19,
781 ACT_RETRY_NOMEM
= 20,
785 struct c4iw_ep_common
{
786 struct iw_cm_id
*cm_id
;
788 struct c4iw_dev
*dev
;
789 enum c4iw_ep_state state
;
792 struct sockaddr_storage local_addr
;
793 struct sockaddr_storage remote_addr
;
794 struct c4iw_wr_wait wr_wait
;
796 unsigned long history
;
799 struct c4iw_listen_ep
{
800 struct c4iw_ep_common com
;
805 struct c4iw_ep_stats
{
806 unsigned connect_neg_adv
;
807 unsigned abort_neg_adv
;
811 struct c4iw_ep_common com
;
812 struct c4iw_ep
*parent_ep
;
813 struct timer_list timer
;
814 struct list_head entry
;
819 struct l2t_entry
*l2t
;
820 struct dst_entry
*dst
;
821 struct sk_buff
*mpa_skb
;
822 struct c4iw_mpa_attributes mpa_attr
;
823 u8 mpa_pkt
[sizeof(struct mpa_message
) + MPA_MAX_PRIVATE_DATA
];
824 unsigned int mpa_pkt_len
;
837 u8 retry_with_mpa_v1
;
838 u8 tried_with_mpa_v1
;
839 unsigned int retry_count
;
842 struct c4iw_ep_stats stats
;
845 static inline struct c4iw_ep
*to_ep(struct iw_cm_id
*cm_id
)
847 return cm_id
->provider_data
;
850 static inline struct c4iw_listen_ep
*to_listen_ep(struct iw_cm_id
*cm_id
)
852 return cm_id
->provider_data
;
855 static inline int compute_wscale(int win
)
859 while (wscale
< 14 && (65535<<wscale
) < win
)
864 static inline int ocqp_supported(const struct cxgb4_lld_info
*infop
)
866 #if defined(__i386__) || defined(__x86_64__) || defined(CONFIG_PPC64)
867 return infop
->vr
->ocq
.size
> 0;
873 u32
c4iw_id_alloc(struct c4iw_id_table
*alloc
);
874 void c4iw_id_free(struct c4iw_id_table
*alloc
, u32 obj
);
875 int c4iw_id_table_alloc(struct c4iw_id_table
*alloc
, u32 start
, u32 num
,
876 u32 reserved
, u32 flags
);
877 void c4iw_id_table_free(struct c4iw_id_table
*alloc
);
879 typedef int (*c4iw_handler_func
)(struct c4iw_dev
*dev
, struct sk_buff
*skb
);
881 int c4iw_ep_redirect(void *ctx
, struct dst_entry
*old
, struct dst_entry
*new,
882 struct l2t_entry
*l2t
);
883 void c4iw_put_qpid(struct c4iw_rdev
*rdev
, u32 qpid
,
884 struct c4iw_dev_ucontext
*uctx
);
885 u32
c4iw_get_resource(struct c4iw_id_table
*id_table
);
886 void c4iw_put_resource(struct c4iw_id_table
*id_table
, u32 entry
);
887 int c4iw_init_resource(struct c4iw_rdev
*rdev
, u32 nr_tpt
, u32 nr_pdid
);
888 int c4iw_init_ctrl_qp(struct c4iw_rdev
*rdev
);
889 int c4iw_pblpool_create(struct c4iw_rdev
*rdev
);
890 int c4iw_rqtpool_create(struct c4iw_rdev
*rdev
);
891 int c4iw_ocqp_pool_create(struct c4iw_rdev
*rdev
);
892 void c4iw_pblpool_destroy(struct c4iw_rdev
*rdev
);
893 void c4iw_rqtpool_destroy(struct c4iw_rdev
*rdev
);
894 void c4iw_ocqp_pool_destroy(struct c4iw_rdev
*rdev
);
895 void c4iw_destroy_resource(struct c4iw_resource
*rscp
);
896 int c4iw_destroy_ctrl_qp(struct c4iw_rdev
*rdev
);
897 int c4iw_register_device(struct c4iw_dev
*dev
);
898 void c4iw_unregister_device(struct c4iw_dev
*dev
);
899 int __init
c4iw_cm_init(void);
900 void c4iw_cm_term(void);
901 void c4iw_release_dev_ucontext(struct c4iw_rdev
*rdev
,
902 struct c4iw_dev_ucontext
*uctx
);
903 void c4iw_init_dev_ucontext(struct c4iw_rdev
*rdev
,
904 struct c4iw_dev_ucontext
*uctx
);
905 int c4iw_poll_cq(struct ib_cq
*ibcq
, int num_entries
, struct ib_wc
*wc
);
906 int c4iw_post_send(struct ib_qp
*ibqp
, struct ib_send_wr
*wr
,
907 struct ib_send_wr
**bad_wr
);
908 int c4iw_post_receive(struct ib_qp
*ibqp
, struct ib_recv_wr
*wr
,
909 struct ib_recv_wr
**bad_wr
);
910 int c4iw_connect(struct iw_cm_id
*cm_id
, struct iw_cm_conn_param
*conn_param
);
911 int c4iw_create_listen(struct iw_cm_id
*cm_id
, int backlog
);
912 int c4iw_destroy_listen(struct iw_cm_id
*cm_id
);
913 int c4iw_accept_cr(struct iw_cm_id
*cm_id
, struct iw_cm_conn_param
*conn_param
);
914 int c4iw_reject_cr(struct iw_cm_id
*cm_id
, const void *pdata
, u8 pdata_len
);
915 void c4iw_qp_add_ref(struct ib_qp
*qp
);
916 void c4iw_qp_rem_ref(struct ib_qp
*qp
);
917 struct ib_mr
*c4iw_alloc_mr(struct ib_pd
*pd
,
918 enum ib_mr_type mr_type
,
920 int c4iw_map_mr_sg(struct ib_mr
*ibmr
,
921 struct scatterlist
*sg
,
923 int c4iw_dealloc_mw(struct ib_mw
*mw
);
924 struct ib_mw
*c4iw_alloc_mw(struct ib_pd
*pd
, enum ib_mw_type type
,
925 struct ib_udata
*udata
);
926 struct ib_mr
*c4iw_reg_user_mr(struct ib_pd
*pd
, u64 start
,
927 u64 length
, u64 virt
, int acc
,
928 struct ib_udata
*udata
);
929 struct ib_mr
*c4iw_get_dma_mr(struct ib_pd
*pd
, int acc
);
930 int c4iw_dereg_mr(struct ib_mr
*ib_mr
);
931 int c4iw_destroy_cq(struct ib_cq
*ib_cq
);
932 struct ib_cq
*c4iw_create_cq(struct ib_device
*ibdev
,
933 const struct ib_cq_init_attr
*attr
,
934 struct ib_ucontext
*ib_context
,
935 struct ib_udata
*udata
);
936 int c4iw_resize_cq(struct ib_cq
*cq
, int cqe
, struct ib_udata
*udata
);
937 int c4iw_arm_cq(struct ib_cq
*ibcq
, enum ib_cq_notify_flags flags
);
938 int c4iw_destroy_qp(struct ib_qp
*ib_qp
);
939 struct ib_qp
*c4iw_create_qp(struct ib_pd
*pd
,
940 struct ib_qp_init_attr
*attrs
,
941 struct ib_udata
*udata
);
942 int c4iw_ib_modify_qp(struct ib_qp
*ibqp
, struct ib_qp_attr
*attr
,
943 int attr_mask
, struct ib_udata
*udata
);
944 int c4iw_ib_query_qp(struct ib_qp
*ibqp
, struct ib_qp_attr
*attr
,
945 int attr_mask
, struct ib_qp_init_attr
*init_attr
);
946 struct ib_qp
*c4iw_get_qp(struct ib_device
*dev
, int qpn
);
947 u32
c4iw_rqtpool_alloc(struct c4iw_rdev
*rdev
, int size
);
948 void c4iw_rqtpool_free(struct c4iw_rdev
*rdev
, u32 addr
, int size
);
949 u32
c4iw_pblpool_alloc(struct c4iw_rdev
*rdev
, int size
);
950 void c4iw_pblpool_free(struct c4iw_rdev
*rdev
, u32 addr
, int size
);
951 u32
c4iw_ocqp_pool_alloc(struct c4iw_rdev
*rdev
, int size
);
952 void c4iw_ocqp_pool_free(struct c4iw_rdev
*rdev
, u32 addr
, int size
);
953 int c4iw_ofld_send(struct c4iw_rdev
*rdev
, struct sk_buff
*skb
);
954 void c4iw_flush_hw_cq(struct c4iw_cq
*chp
);
955 void c4iw_count_rcqes(struct t4_cq
*cq
, struct t4_wq
*wq
, int *count
);
956 int c4iw_ep_disconnect(struct c4iw_ep
*ep
, int abrupt
, gfp_t gfp
);
957 int c4iw_flush_rq(struct t4_wq
*wq
, struct t4_cq
*cq
, int count
);
958 int c4iw_flush_sq(struct c4iw_qp
*qhp
);
959 int c4iw_ev_handler(struct c4iw_dev
*rnicp
, u32 qid
);
960 u16
c4iw_rqes_posted(struct c4iw_qp
*qhp
);
961 int c4iw_post_terminate(struct c4iw_qp
*qhp
, struct t4_cqe
*err_cqe
);
962 u32
c4iw_get_cqid(struct c4iw_rdev
*rdev
, struct c4iw_dev_ucontext
*uctx
);
963 void c4iw_put_cqid(struct c4iw_rdev
*rdev
, u32 qid
,
964 struct c4iw_dev_ucontext
*uctx
);
965 u32
c4iw_get_qpid(struct c4iw_rdev
*rdev
, struct c4iw_dev_ucontext
*uctx
);
966 void c4iw_put_qpid(struct c4iw_rdev
*rdev
, u32 qid
,
967 struct c4iw_dev_ucontext
*uctx
);
968 void c4iw_ev_dispatch(struct c4iw_dev
*dev
, struct t4_cqe
*err_cqe
);
970 extern struct cxgb4_client t4c_client
;
971 extern c4iw_handler_func c4iw_handlers
[NUM_CPL_CMDS
];
972 void __iomem
*c4iw_bar2_addrs(struct c4iw_rdev
*rdev
, unsigned int qid
,
973 enum cxgb4_bar2_qtype qtype
,
974 unsigned int *pbar2_qid
, u64
*pbar2_pa
);
975 extern void c4iw_log_wr_stats(struct t4_wq
*wq
, struct t4_cqe
*cqe
);
976 extern int c4iw_wr_log
;
977 extern int db_fc_threshold
;
978 extern int db_coalescing_threshold
;
980 void c4iw_drain_rq(struct ib_qp
*qp
);
981 void c4iw_drain_sq(struct ib_qp
*qp
);