xref: /freebsd/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h (revision b0b1dbdd)
1 /*
2  * Copyright (c) 2009-2013, 2016 Chelsio, Inc. All rights reserved.
3  *
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:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *	  copyright notice, this list of conditions and the following
16  *	  disclaimer.
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.
21  *
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
29  * SOFTWARE.
30  *
31  * $FreeBSD$
32  */
33 #ifndef __IW_CXGB4_H__
34 #define __IW_CXGB4_H__
35 
36 #include <linux/list.h>
37 #include <linux/spinlock.h>
38 #include <linux/idr.h>
39 #include <linux/completion.h>
40 #include <linux/netdevice.h>
41 #include <linux/sched.h>
42 #include <linux/pci.h>
43 #include <linux/dma-mapping.h>
44 #include <linux/wait.h>
45 #include <linux/kref.h>
46 #include <linux/timer.h>
47 #include <linux/io.h>
48 #include <sys/vmem.h>
49 
50 #include <asm/byteorder.h>
51 
52 #include <netinet/in.h>
53 #include <netinet/toecore.h>
54 
55 #include <rdma/ib_verbs.h>
56 #include <rdma/iw_cm.h>
57 
58 #undef prefetch
59 
60 #include "common/common.h"
61 #include "common/t4_msg.h"
62 #include "common/t4_regs.h"
63 #include "common/t4_tcb.h"
64 #include "t4_l2t.h"
65 
66 #define DRV_NAME "iw_cxgbe"
67 #define MOD DRV_NAME ":"
68 #define KTR_IW_CXGBE	KTR_SPARE3
69 
70 extern int c4iw_debug;
71 #define PDBG(fmt, args...) \
72 do { \
73 	if (c4iw_debug) \
74 		printf(MOD fmt, ## args); \
75 } while (0)
76 
77 #include "t4.h"
78 
79 static inline void *cplhdr(struct mbuf *m)
80 {
81 	return mtod(m, void*);
82 }
83 
84 #define PBL_OFF(rdev_p, a) ((a) - (rdev_p)->adap->vres.pbl.start)
85 #define RQT_OFF(rdev_p, a) ((a) - (rdev_p)->adap->vres.rq.start)
86 
87 #define C4IW_ID_TABLE_F_RANDOM 1       /* Pseudo-randomize the id's returned */
88 #define C4IW_ID_TABLE_F_EMPTY  2       /* Table is initially empty */
89 
90 struct c4iw_id_table {
91 	u32 flags;
92 	u32 start;              /* logical minimal id */
93 	u32 last;               /* hint for find */
94 	u32 max;
95 	spinlock_t lock;
96 	unsigned long *table;
97 };
98 
99 struct c4iw_resource {
100 	struct c4iw_id_table tpt_table;
101 	struct c4iw_id_table qid_table;
102 	struct c4iw_id_table pdid_table;
103 };
104 
105 struct c4iw_qid_list {
106 	struct list_head entry;
107 	u32 qid;
108 };
109 
110 struct c4iw_dev_ucontext {
111 	struct list_head qpids;
112 	struct list_head cqids;
113 	struct mutex lock;
114 };
115 
116 enum c4iw_rdev_flags {
117 	T4_FATAL_ERROR = (1<<0),
118 };
119 
120 struct c4iw_stat {
121 	u64 total;
122 	u64 cur;
123 	u64 max;
124 	u64 fail;
125 };
126 
127 struct c4iw_stats {
128 	struct mutex lock;
129 	struct c4iw_stat qid;
130 	struct c4iw_stat pd;
131 	struct c4iw_stat stag;
132 	struct c4iw_stat pbl;
133 	struct c4iw_stat rqt;
134 };
135 
136 struct c4iw_rdev {
137 	struct adapter *adap;
138 	struct c4iw_resource resource;
139 	unsigned long qpshift;
140 	u32 qpmask;
141 	unsigned long cqshift;
142 	u32 cqmask;
143 	struct c4iw_dev_ucontext uctx;
144 	vmem_t          *rqt_arena;
145 	vmem_t          *pbl_arena;
146 	u32 flags;
147 	struct c4iw_stats stats;
148 };
149 
150 static inline int c4iw_fatal_error(struct c4iw_rdev *rdev)
151 {
152 	return rdev->flags & T4_FATAL_ERROR;
153 }
154 
155 static inline int c4iw_num_stags(struct c4iw_rdev *rdev)
156 {
157 	return (int)(rdev->adap->vres.stag.size >> 5);
158 }
159 
160 #define C4IW_WR_TO (10*HZ)
161 
162 struct c4iw_wr_wait {
163 	int ret;
164 	atomic_t completion;
165 };
166 
167 static inline void c4iw_init_wr_wait(struct c4iw_wr_wait *wr_waitp)
168 {
169 	wr_waitp->ret = 0;
170 	atomic_set(&wr_waitp->completion, 0);
171 }
172 
173 static inline void c4iw_wake_up(struct c4iw_wr_wait *wr_waitp, int ret)
174 {
175 	wr_waitp->ret = ret;
176 	atomic_set(&wr_waitp->completion, 1);
177 	wakeup(wr_waitp);
178 }
179 
180 static inline int
181 c4iw_wait_for_reply(struct c4iw_rdev *rdev, struct c4iw_wr_wait *wr_waitp,
182     u32 hwtid, u32 qpid, const char *func)
183 {
184 	struct adapter *sc = rdev->adap;
185 	unsigned to = C4IW_WR_TO;
186 
187 	while (!atomic_read(&wr_waitp->completion)) {
188                 tsleep(wr_waitp, 0, "c4iw_wait", to);
189                 if (SIGPENDING(curthread)) {
190 			printf("%s - Device %s not responding - "
191 			    "tid %u qpid %u\n", func,
192 			    device_get_nameunit(sc->dev), hwtid, qpid);
193                         if (c4iw_fatal_error(rdev)) {
194                                 wr_waitp->ret = -EIO;
195                                 break;
196                         }
197                         to = to << 2;
198                 }
199         }
200 	if (wr_waitp->ret)
201 		CTR4(KTR_IW_CXGBE, "%s: FW reply %d tid %u qpid %u",
202 		    device_get_nameunit(sc->dev), wr_waitp->ret, hwtid, qpid);
203 	return (wr_waitp->ret);
204 }
205 
206 struct c4iw_dev {
207 	struct ib_device ibdev;
208 	struct c4iw_rdev rdev;
209 	u32 device_cap_flags;
210 	struct idr cqidr;
211 	struct idr qpidr;
212 	struct idr mmidr;
213 	spinlock_t lock;
214 	struct dentry *debugfs_root;
215 };
216 
217 static inline struct c4iw_dev *to_c4iw_dev(struct ib_device *ibdev)
218 {
219 	return container_of(ibdev, struct c4iw_dev, ibdev);
220 }
221 
222 static inline struct c4iw_dev *rdev_to_c4iw_dev(struct c4iw_rdev *rdev)
223 {
224 	return container_of(rdev, struct c4iw_dev, rdev);
225 }
226 
227 static inline struct c4iw_cq *get_chp(struct c4iw_dev *rhp, u32 cqid)
228 {
229 	return idr_find(&rhp->cqidr, cqid);
230 }
231 
232 static inline struct c4iw_qp *get_qhp(struct c4iw_dev *rhp, u32 qpid)
233 {
234 	return idr_find(&rhp->qpidr, qpid);
235 }
236 
237 static inline struct c4iw_mr *get_mhp(struct c4iw_dev *rhp, u32 mmid)
238 {
239 	return idr_find(&rhp->mmidr, mmid);
240 }
241 
242 static inline int _insert_handle(struct c4iw_dev *rhp, struct idr *idr,
243 				 void *handle, u32 id, int lock)
244 {
245 	int ret;
246 	int newid;
247 
248 	do {
249 		if (!idr_pre_get(idr, lock ? GFP_KERNEL : GFP_ATOMIC))
250 			return -ENOMEM;
251 		if (lock)
252 			spin_lock_irq(&rhp->lock);
253 		ret = idr_get_new_above(idr, handle, id, &newid);
254 		BUG_ON(!ret && newid != id);
255 		if (lock)
256 			spin_unlock_irq(&rhp->lock);
257 	} while (ret == -EAGAIN);
258 
259 	return ret;
260 }
261 
262 static inline int insert_handle(struct c4iw_dev *rhp, struct idr *idr,
263 				void *handle, u32 id)
264 {
265 	return _insert_handle(rhp, idr, handle, id, 1);
266 }
267 
268 static inline int insert_handle_nolock(struct c4iw_dev *rhp, struct idr *idr,
269 				       void *handle, u32 id)
270 {
271 	return _insert_handle(rhp, idr, handle, id, 0);
272 }
273 
274 static inline void _remove_handle(struct c4iw_dev *rhp, struct idr *idr,
275 				   u32 id, int lock)
276 {
277 	if (lock)
278 		spin_lock_irq(&rhp->lock);
279 	idr_remove(idr, id);
280 	if (lock)
281 		spin_unlock_irq(&rhp->lock);
282 }
283 
284 static inline void remove_handle(struct c4iw_dev *rhp, struct idr *idr, u32 id)
285 {
286 	_remove_handle(rhp, idr, id, 1);
287 }
288 
289 static inline void remove_handle_nolock(struct c4iw_dev *rhp,
290 					 struct idr *idr, u32 id)
291 {
292 	_remove_handle(rhp, idr, id, 0);
293 }
294 
295 struct c4iw_pd {
296 	struct ib_pd ibpd;
297 	u32 pdid;
298 	struct c4iw_dev *rhp;
299 };
300 
301 static inline struct c4iw_pd *to_c4iw_pd(struct ib_pd *ibpd)
302 {
303 	return container_of(ibpd, struct c4iw_pd, ibpd);
304 }
305 
306 struct tpt_attributes {
307 	u64 len;
308 	u64 va_fbo;
309 	enum fw_ri_mem_perms perms;
310 	u32 stag;
311 	u32 pdid;
312 	u32 qpid;
313 	u32 pbl_addr;
314 	u32 pbl_size;
315 	u32 state:1;
316 	u32 type:2;
317 	u32 rsvd:1;
318 	u32 remote_invaliate_disable:1;
319 	u32 zbva:1;
320 	u32 mw_bind_enable:1;
321 	u32 page_size:5;
322 };
323 
324 struct c4iw_mr {
325 	struct ib_mr ibmr;
326 	struct ib_umem *umem;
327 	struct c4iw_dev *rhp;
328 	u64 kva;
329 	struct tpt_attributes attr;
330 };
331 
332 static inline struct c4iw_mr *to_c4iw_mr(struct ib_mr *ibmr)
333 {
334 	return container_of(ibmr, struct c4iw_mr, ibmr);
335 }
336 
337 struct c4iw_mw {
338 	struct ib_mw ibmw;
339 	struct c4iw_dev *rhp;
340 	u64 kva;
341 	struct tpt_attributes attr;
342 };
343 
344 static inline struct c4iw_mw *to_c4iw_mw(struct ib_mw *ibmw)
345 {
346 	return container_of(ibmw, struct c4iw_mw, ibmw);
347 }
348 
349 struct c4iw_fr_page_list {
350 	struct ib_fast_reg_page_list ibpl;
351 	DECLARE_PCI_UNMAP_ADDR(mapping);
352 	dma_addr_t dma_addr;
353 	struct c4iw_dev *dev;
354 	int size;
355 };
356 
357 static inline struct c4iw_fr_page_list *to_c4iw_fr_page_list(
358 					struct ib_fast_reg_page_list *ibpl)
359 {
360 	return container_of(ibpl, struct c4iw_fr_page_list, ibpl);
361 }
362 
363 struct c4iw_cq {
364 	struct ib_cq ibcq;
365 	struct c4iw_dev *rhp;
366 	struct t4_cq cq;
367 	spinlock_t lock;
368 	spinlock_t comp_handler_lock;
369 	atomic_t refcnt;
370 	wait_queue_head_t wait;
371 };
372 
373 static inline struct c4iw_cq *to_c4iw_cq(struct ib_cq *ibcq)
374 {
375 	return container_of(ibcq, struct c4iw_cq, ibcq);
376 }
377 
378 struct c4iw_mpa_attributes {
379 	u8 initiator;
380 	u8 recv_marker_enabled;
381 	u8 xmit_marker_enabled;
382 	u8 crc_enabled;
383 	u8 enhanced_rdma_conn;
384 	u8 version;
385 	u8 p2p_type;
386 };
387 
388 struct c4iw_qp_attributes {
389 	u32 scq;
390 	u32 rcq;
391 	u32 sq_num_entries;
392 	u32 rq_num_entries;
393 	u32 sq_max_sges;
394 	u32 sq_max_sges_rdma_write;
395 	u32 rq_max_sges;
396 	u32 state;
397 	u8 enable_rdma_read;
398 	u8 enable_rdma_write;
399 	u8 enable_bind;
400 	u8 enable_mmid0_fastreg;
401 	u32 max_ord;
402 	u32 max_ird;
403 	u32 pd;
404 	u32 next_state;
405 	char terminate_buffer[52];
406 	u32 terminate_msg_len;
407 	u8 is_terminate_local;
408 	struct c4iw_mpa_attributes mpa_attr;
409 	struct c4iw_ep *llp_stream_handle;
410 	u8 layer_etype;
411 	u8 ecode;
412 	u16 sq_db_inc;
413 	u16 rq_db_inc;
414 };
415 
416 struct c4iw_qp {
417 	struct ib_qp ibqp;
418 	struct c4iw_dev *rhp;
419 	struct c4iw_ep *ep;
420 	struct c4iw_qp_attributes attr;
421 	struct t4_wq wq;
422 	spinlock_t lock;
423 	struct mutex mutex;
424 	atomic_t refcnt;
425 	wait_queue_head_t wait;
426 	struct timer_list timer;
427 	int sq_sig_all;
428 };
429 
430 static inline struct c4iw_qp *to_c4iw_qp(struct ib_qp *ibqp)
431 {
432 	return container_of(ibqp, struct c4iw_qp, ibqp);
433 }
434 
435 struct c4iw_ucontext {
436 	struct ib_ucontext ibucontext;
437 	struct c4iw_dev_ucontext uctx;
438 	u32 key;
439 	spinlock_t mmap_lock;
440 	struct list_head mmaps;
441 };
442 
443 static inline struct c4iw_ucontext *to_c4iw_ucontext(struct ib_ucontext *c)
444 {
445 	return container_of(c, struct c4iw_ucontext, ibucontext);
446 }
447 
448 struct c4iw_mm_entry {
449 	struct list_head entry;
450 	u64 addr;
451 	u32 key;
452 	unsigned len;
453 };
454 
455 static inline struct c4iw_mm_entry *remove_mmap(struct c4iw_ucontext *ucontext,
456 						u32 key, unsigned len)
457 {
458 	struct list_head *pos, *nxt;
459 	struct c4iw_mm_entry *mm;
460 
461 	spin_lock(&ucontext->mmap_lock);
462 	list_for_each_safe(pos, nxt, &ucontext->mmaps) {
463 
464 		mm = list_entry(pos, struct c4iw_mm_entry, entry);
465 		if (mm->key == key && mm->len == len) {
466 			list_del_init(&mm->entry);
467 			spin_unlock(&ucontext->mmap_lock);
468 			CTR4(KTR_IW_CXGBE, "%s key 0x%x addr 0x%llx len %d",
469 			     __func__, key, (unsigned long long) mm->addr,
470 			     mm->len);
471 			return mm;
472 		}
473 	}
474 	spin_unlock(&ucontext->mmap_lock);
475 	return NULL;
476 }
477 
478 static inline void insert_mmap(struct c4iw_ucontext *ucontext,
479 			       struct c4iw_mm_entry *mm)
480 {
481 	spin_lock(&ucontext->mmap_lock);
482 	CTR4(KTR_IW_CXGBE, "%s key 0x%x addr 0x%llx len %d", __func__, mm->key,
483 	    (unsigned long long) mm->addr, mm->len);
484 	list_add_tail(&mm->entry, &ucontext->mmaps);
485 	spin_unlock(&ucontext->mmap_lock);
486 }
487 
488 enum c4iw_qp_attr_mask {
489 	C4IW_QP_ATTR_NEXT_STATE = 1 << 0,
490 	C4IW_QP_ATTR_SQ_DB = 1<<1,
491 	C4IW_QP_ATTR_RQ_DB = 1<<2,
492 	C4IW_QP_ATTR_ENABLE_RDMA_READ = 1 << 7,
493 	C4IW_QP_ATTR_ENABLE_RDMA_WRITE = 1 << 8,
494 	C4IW_QP_ATTR_ENABLE_RDMA_BIND = 1 << 9,
495 	C4IW_QP_ATTR_MAX_ORD = 1 << 11,
496 	C4IW_QP_ATTR_MAX_IRD = 1 << 12,
497 	C4IW_QP_ATTR_LLP_STREAM_HANDLE = 1 << 22,
498 	C4IW_QP_ATTR_STREAM_MSG_BUFFER = 1 << 23,
499 	C4IW_QP_ATTR_MPA_ATTR = 1 << 24,
500 	C4IW_QP_ATTR_QP_CONTEXT_ACTIVATE = 1 << 25,
501 	C4IW_QP_ATTR_VALID_MODIFY = (C4IW_QP_ATTR_ENABLE_RDMA_READ |
502 				     C4IW_QP_ATTR_ENABLE_RDMA_WRITE |
503 				     C4IW_QP_ATTR_MAX_ORD |
504 				     C4IW_QP_ATTR_MAX_IRD |
505 				     C4IW_QP_ATTR_LLP_STREAM_HANDLE |
506 				     C4IW_QP_ATTR_STREAM_MSG_BUFFER |
507 				     C4IW_QP_ATTR_MPA_ATTR |
508 				     C4IW_QP_ATTR_QP_CONTEXT_ACTIVATE)
509 };
510 
511 int c4iw_modify_qp(struct c4iw_dev *rhp,
512 				struct c4iw_qp *qhp,
513 				enum c4iw_qp_attr_mask mask,
514 				struct c4iw_qp_attributes *attrs,
515 				int internal);
516 
517 enum c4iw_qp_state {
518 	C4IW_QP_STATE_IDLE,
519 	C4IW_QP_STATE_RTS,
520 	C4IW_QP_STATE_ERROR,
521 	C4IW_QP_STATE_TERMINATE,
522 	C4IW_QP_STATE_CLOSING,
523 	C4IW_QP_STATE_TOT
524 };
525 
526 static inline int c4iw_convert_state(enum ib_qp_state ib_state)
527 {
528 	switch (ib_state) {
529 	case IB_QPS_RESET:
530 	case IB_QPS_INIT:
531 		return C4IW_QP_STATE_IDLE;
532 	case IB_QPS_RTS:
533 		return C4IW_QP_STATE_RTS;
534 	case IB_QPS_SQD:
535 		return C4IW_QP_STATE_CLOSING;
536 	case IB_QPS_SQE:
537 		return C4IW_QP_STATE_TERMINATE;
538 	case IB_QPS_ERR:
539 		return C4IW_QP_STATE_ERROR;
540 	default:
541 		return -1;
542 	}
543 }
544 
545 static inline int to_ib_qp_state(int c4iw_qp_state)
546 {
547 	switch (c4iw_qp_state) {
548 	case C4IW_QP_STATE_IDLE:
549 		return IB_QPS_INIT;
550 	case C4IW_QP_STATE_RTS:
551 		return IB_QPS_RTS;
552 	case C4IW_QP_STATE_CLOSING:
553 		return IB_QPS_SQD;
554 	case C4IW_QP_STATE_TERMINATE:
555 		return IB_QPS_SQE;
556 	case C4IW_QP_STATE_ERROR:
557 		return IB_QPS_ERR;
558 	}
559 	return IB_QPS_ERR;
560 }
561 
562 #define C4IW_DRAIN_OPCODE FW_RI_SGE_EC_CR_RETURN
563 
564 static inline u32 c4iw_ib_to_tpt_access(int a)
565 {
566 	return (a & IB_ACCESS_REMOTE_WRITE ? FW_RI_MEM_ACCESS_REM_WRITE : 0) |
567 	       (a & IB_ACCESS_REMOTE_READ ? FW_RI_MEM_ACCESS_REM_READ : 0) |
568 	       (a & IB_ACCESS_LOCAL_WRITE ? FW_RI_MEM_ACCESS_LOCAL_WRITE : 0) |
569 	       FW_RI_MEM_ACCESS_LOCAL_READ;
570 }
571 
572 static inline u32 c4iw_ib_to_tpt_bind_access(int acc)
573 {
574 	return (acc & IB_ACCESS_REMOTE_WRITE ? FW_RI_MEM_ACCESS_REM_WRITE : 0) |
575 	       (acc & IB_ACCESS_REMOTE_READ ? FW_RI_MEM_ACCESS_REM_READ : 0);
576 }
577 
578 enum c4iw_mmid_state {
579 	C4IW_STAG_STATE_VALID,
580 	C4IW_STAG_STATE_INVALID
581 };
582 
583 #define C4IW_NODE_DESC "iw_cxgbe Chelsio Communications"
584 
585 #define MPA_KEY_REQ "MPA ID Req Frame"
586 #define MPA_KEY_REP "MPA ID Rep Frame"
587 
588 #define MPA_MAX_PRIVATE_DATA	256
589 #define MPA_ENHANCED_RDMA_CONN	0x10
590 #define MPA_REJECT		0x20
591 #define MPA_CRC			0x40
592 #define MPA_MARKERS		0x80
593 #define MPA_FLAGS_MASK		0xE0
594 
595 #define MPA_V2_PEER2PEER_MODEL          0x8000
596 #define MPA_V2_ZERO_LEN_FPDU_RTR        0x4000
597 #define MPA_V2_RDMA_WRITE_RTR           0x8000
598 #define MPA_V2_RDMA_READ_RTR            0x4000
599 #define MPA_V2_IRD_ORD_MASK             0x3FFF
600 
601 #define c4iw_put_ep(ep) { \
602 	CTR4(KTR_IW_CXGBE, "put_ep (%s:%u) ep %p, refcnt %d", \
603 	     __func__, __LINE__, ep, atomic_read(&(ep)->kref.refcount)); \
604 	WARN_ON(atomic_read(&(ep)->kref.refcount) < 1); \
605         kref_put(&((ep)->kref), _c4iw_free_ep); \
606 }
607 
608 #define c4iw_get_ep(ep) { \
609 	CTR4(KTR_IW_CXGBE, "get_ep (%s:%u) ep %p, refcnt %d", \
610 	      __func__, __LINE__, ep, atomic_read(&(ep)->kref.refcount)); \
611         kref_get(&((ep)->kref));  \
612 }
613 
614 void _c4iw_free_ep(struct kref *kref);
615 
616 struct mpa_message {
617 	u8 key[16];
618 	u8 flags;
619 	u8 revision;
620 	__be16 private_data_size;
621 	u8 private_data[0];
622 };
623 
624 struct mpa_v2_conn_params {
625 	__be16 ird;
626 	__be16 ord;
627 };
628 
629 struct terminate_message {
630 	u8 layer_etype;
631 	u8 ecode;
632 	__be16 hdrct_rsvd;
633 	u8 len_hdrs[0];
634 };
635 
636 #define TERM_MAX_LENGTH (sizeof(struct terminate_message) + 2 + 18 + 28)
637 
638 enum c4iw_layers_types {
639 	LAYER_RDMAP		= 0x00,
640 	LAYER_DDP		= 0x10,
641 	LAYER_MPA		= 0x20,
642 	RDMAP_LOCAL_CATA	= 0x00,
643 	RDMAP_REMOTE_PROT	= 0x01,
644 	RDMAP_REMOTE_OP		= 0x02,
645 	DDP_LOCAL_CATA		= 0x00,
646 	DDP_TAGGED_ERR		= 0x01,
647 	DDP_UNTAGGED_ERR	= 0x02,
648 	DDP_LLP			= 0x03
649 };
650 
651 enum c4iw_rdma_ecodes {
652 	RDMAP_INV_STAG		= 0x00,
653 	RDMAP_BASE_BOUNDS	= 0x01,
654 	RDMAP_ACC_VIOL		= 0x02,
655 	RDMAP_STAG_NOT_ASSOC	= 0x03,
656 	RDMAP_TO_WRAP		= 0x04,
657 	RDMAP_INV_VERS		= 0x05,
658 	RDMAP_INV_OPCODE	= 0x06,
659 	RDMAP_STREAM_CATA	= 0x07,
660 	RDMAP_GLOBAL_CATA	= 0x08,
661 	RDMAP_CANT_INV_STAG	= 0x09,
662 	RDMAP_UNSPECIFIED	= 0xff
663 };
664 
665 enum c4iw_ddp_ecodes {
666 	DDPT_INV_STAG		= 0x00,
667 	DDPT_BASE_BOUNDS	= 0x01,
668 	DDPT_STAG_NOT_ASSOC	= 0x02,
669 	DDPT_TO_WRAP		= 0x03,
670 	DDPT_INV_VERS		= 0x04,
671 	DDPU_INV_QN		= 0x01,
672 	DDPU_INV_MSN_NOBUF	= 0x02,
673 	DDPU_INV_MSN_RANGE	= 0x03,
674 	DDPU_INV_MO		= 0x04,
675 	DDPU_MSG_TOOBIG		= 0x05,
676 	DDPU_INV_VERS		= 0x06
677 };
678 
679 enum c4iw_mpa_ecodes {
680 	MPA_CRC_ERR		= 0x02,
681 	MPA_MARKER_ERR		= 0x03,
682 	MPA_LOCAL_CATA          = 0x05,
683 	MPA_INSUFF_IRD          = 0x06,
684 	MPA_NOMATCH_RTR         = 0x07,
685 };
686 
687 enum c4iw_ep_state {
688 	IDLE = 0,
689 	LISTEN,
690 	CONNECTING,
691 	MPA_REQ_WAIT,
692 	MPA_REQ_SENT,
693 	MPA_REQ_RCVD,
694 	MPA_REP_SENT,
695 	FPDU_MODE,
696 	ABORTING,
697 	CLOSING,
698 	MORIBUND,
699 	DEAD,
700 };
701 
702 enum c4iw_ep_flags {
703 	PEER_ABORT_IN_PROGRESS	= 0,
704 	ABORT_REQ_IN_PROGRESS	= 1,
705 	RELEASE_RESOURCES	= 2,
706 	CLOSE_SENT		= 3,
707 	TIMEOUT                 = 4,
708 	QP_REFERENCED		= 5
709 };
710 
711 enum c4iw_ep_history {
712         ACT_OPEN_REQ            = 0,
713         ACT_OFLD_CONN           = 1,
714         ACT_OPEN_RPL            = 2,
715         ACT_ESTAB               = 3,
716         PASS_ACCEPT_REQ         = 4,
717         PASS_ESTAB              = 5,
718         ABORT_UPCALL            = 6,
719         ESTAB_UPCALL            = 7,
720         CLOSE_UPCALL            = 8,
721         ULP_ACCEPT              = 9,
722         ULP_REJECT              = 10,
723         TIMEDOUT                = 11,
724         PEER_ABORT              = 12,
725         PEER_CLOSE              = 13,
726         CONNREQ_UPCALL          = 14,
727         ABORT_CONN              = 15,
728         DISCONN_UPCALL          = 16,
729         EP_DISC_CLOSE           = 17,
730         EP_DISC_ABORT           = 18,
731         CONN_RPL_UPCALL         = 19,
732         ACT_RETRY_NOMEM         = 20,
733         ACT_RETRY_INUSE         = 21,
734         CLOSE_CON_RPL           = 22,
735         EP_DISC_FAIL            = 24,
736         QP_REFED                = 25,
737         QP_DEREFED              = 26,
738         CM_ID_REFED             = 27,
739         CM_ID_DEREFED           = 28
740 };
741 
742 struct c4iw_ep_common {
743 	TAILQ_ENTRY(c4iw_ep_common) entry;	/* Work queue attachment */
744 	struct iw_cm_id *cm_id;
745 	struct c4iw_qp *qp;
746 	struct c4iw_dev *dev;
747 	enum c4iw_ep_state state;
748 	struct kref kref;
749 	struct mutex mutex;
750 	struct sockaddr_in local_addr;
751 	struct sockaddr_in remote_addr;
752 	struct c4iw_wr_wait wr_wait;
753 	unsigned long flags;
754 	unsigned long history;
755         int rpl_err;
756         int rpl_done;
757         struct thread *thread;
758         struct socket *so;
759 };
760 
761 struct c4iw_listen_ep {
762 	struct c4iw_ep_common com;
763 	unsigned int stid;
764 	int backlog;
765 };
766 
767 struct c4iw_ep {
768 	struct c4iw_ep_common com;
769 	struct c4iw_ep *parent_ep;
770 	struct timer_list timer;
771 	struct list_head entry;
772 	unsigned int atid;
773 	u32 hwtid;
774 	u32 snd_seq;
775 	u32 rcv_seq;
776 	struct l2t_entry *l2t;
777 	struct dst_entry *dst;
778 	struct c4iw_mpa_attributes mpa_attr;
779 	u8 mpa_pkt[sizeof(struct mpa_message) + MPA_MAX_PRIVATE_DATA];
780 	unsigned int mpa_pkt_len;
781 	u32 ird;
782 	u32 ord;
783 	u32 smac_idx;
784 	u32 tx_chan;
785 	u32 mtu;
786 	u16 mss;
787 	u16 emss;
788 	u16 plen;
789 	u16 rss_qid;
790 	u16 txq_idx;
791 	u16 ctrlq_idx;
792 	u8 tos;
793 	u8 retry_with_mpa_v1;
794 	u8 tried_with_mpa_v1;
795 };
796 
797 static inline struct c4iw_ep *to_ep(struct iw_cm_id *cm_id)
798 {
799 	return cm_id->provider_data;
800 }
801 
802 static inline struct c4iw_listen_ep *to_listen_ep(struct iw_cm_id *cm_id)
803 {
804 	return cm_id->provider_data;
805 }
806 
807 static inline int compute_wscale(int win)
808 {
809 	int wscale = 0;
810 
811 	while (wscale < 14 && (65535<<wscale) < win)
812 		wscale++;
813 	return wscale;
814 }
815 
816 u32 c4iw_id_alloc(struct c4iw_id_table *alloc);
817 void c4iw_id_free(struct c4iw_id_table *alloc, u32 obj);
818 int c4iw_id_table_alloc(struct c4iw_id_table *alloc, u32 start, u32 num,
819 			u32 reserved, u32 flags);
820 void c4iw_id_table_free(struct c4iw_id_table *alloc);
821 
822 typedef int (*c4iw_handler_func)(struct c4iw_dev *dev, struct mbuf *m);
823 
824 int c4iw_ep_redirect(void *ctx, struct dst_entry *old, struct dst_entry *new,
825 		     struct l2t_entry *l2t);
826 u32 c4iw_get_resource(struct c4iw_id_table *id_table);
827 void c4iw_put_resource(struct c4iw_id_table *id_table, u32 entry);
828 int c4iw_init_resource(struct c4iw_rdev *rdev, u32 nr_tpt, u32 nr_pdid);
829 int c4iw_init_ctrl_qp(struct c4iw_rdev *rdev);
830 int c4iw_pblpool_create(struct c4iw_rdev *rdev);
831 int c4iw_rqtpool_create(struct c4iw_rdev *rdev);
832 void c4iw_pblpool_destroy(struct c4iw_rdev *rdev);
833 void c4iw_rqtpool_destroy(struct c4iw_rdev *rdev);
834 void c4iw_destroy_resource(struct c4iw_resource *rscp);
835 int c4iw_destroy_ctrl_qp(struct c4iw_rdev *rdev);
836 int c4iw_register_device(struct c4iw_dev *dev);
837 void c4iw_unregister_device(struct c4iw_dev *dev);
838 int __init c4iw_cm_init(void);
839 void __exit c4iw_cm_term(void);
840 void c4iw_release_dev_ucontext(struct c4iw_rdev *rdev,
841 			       struct c4iw_dev_ucontext *uctx);
842 void c4iw_init_dev_ucontext(struct c4iw_rdev *rdev,
843 			    struct c4iw_dev_ucontext *uctx);
844 int c4iw_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
845 int c4iw_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
846 		      struct ib_send_wr **bad_wr);
847 int c4iw_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
848 		      struct ib_recv_wr **bad_wr);
849 int c4iw_bind_mw(struct ib_qp *qp, struct ib_mw *mw,
850 		 struct ib_mw_bind *mw_bind);
851 int c4iw_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param);
852 int c4iw_create_listen_ep(struct iw_cm_id *cm_id, int backlog);
853 void c4iw_destroy_listen_ep(struct iw_cm_id *cm_id);
854 int c4iw_accept_cr(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param);
855 int c4iw_reject_cr(struct iw_cm_id *cm_id, const void *pdata, u8 pdata_len);
856 void c4iw_qp_add_ref(struct ib_qp *qp);
857 void c4iw_qp_rem_ref(struct ib_qp *qp);
858 void c4iw_free_fastreg_pbl(struct ib_fast_reg_page_list *page_list);
859 struct ib_fast_reg_page_list *c4iw_alloc_fastreg_pbl(
860 					struct ib_device *device,
861 					int page_list_len);
862 struct ib_mr *c4iw_alloc_fast_reg_mr(struct ib_pd *pd, int pbl_depth);
863 int c4iw_dealloc_mw(struct ib_mw *mw);
864 struct ib_mw *c4iw_alloc_mw(struct ib_pd *pd, enum ib_mw_type type);
865 struct ib_mr *c4iw_reg_user_mr(struct ib_pd *pd, u64 start, u64 length, u64
866     virt, int acc, struct ib_udata *udata, int mr_id);
867 struct ib_mr *c4iw_get_dma_mr(struct ib_pd *pd, int acc);
868 struct ib_mr *c4iw_register_phys_mem(struct ib_pd *pd,
869 					struct ib_phys_buf *buffer_list,
870 					int num_phys_buf,
871 					int acc,
872 					u64 *iova_start);
873 int c4iw_reregister_phys_mem(struct ib_mr *mr,
874 				     int mr_rereg_mask,
875 				     struct ib_pd *pd,
876 				     struct ib_phys_buf *buffer_list,
877 				     int num_phys_buf,
878 				     int acc, u64 *iova_start);
879 int c4iw_dereg_mr(struct ib_mr *ib_mr);
880 int c4iw_destroy_cq(struct ib_cq *ib_cq);
881 struct ib_cq *c4iw_create_cq(struct ib_device *ibdev, struct ib_cq_init_attr *attr,
882 					struct ib_ucontext *ib_context,
883 					struct ib_udata *udata);
884 int c4iw_resize_cq(struct ib_cq *cq, int cqe, struct ib_udata *udata);
885 int c4iw_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags);
886 int c4iw_destroy_qp(struct ib_qp *ib_qp);
887 struct ib_qp *c4iw_create_qp(struct ib_pd *pd,
888 			     struct ib_qp_init_attr *attrs,
889 			     struct ib_udata *udata);
890 int c4iw_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
891 				 int attr_mask, struct ib_udata *udata);
892 int c4iw_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
893 		     int attr_mask, struct ib_qp_init_attr *init_attr);
894 struct ib_qp *c4iw_get_qp(struct ib_device *dev, int qpn);
895 u32 c4iw_rqtpool_alloc(struct c4iw_rdev *rdev, int size);
896 void c4iw_rqtpool_free(struct c4iw_rdev *rdev, u32 addr, int size);
897 u32 c4iw_pblpool_alloc(struct c4iw_rdev *rdev, int size);
898 void c4iw_pblpool_free(struct c4iw_rdev *rdev, u32 addr, int size);
899 int c4iw_ofld_send(struct c4iw_rdev *rdev, struct mbuf *m);
900 void c4iw_flush_hw_cq(struct t4_cq *cq);
901 void c4iw_count_rcqes(struct t4_cq *cq, struct t4_wq *wq, int *count);
902 void c4iw_count_scqes(struct t4_cq *cq, struct t4_wq *wq, int *count);
903 int c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp);
904 int c4iw_flush_rq(struct t4_wq *wq, struct t4_cq *cq, int count);
905 int c4iw_flush_sq(struct t4_wq *wq, struct t4_cq *cq, int count);
906 int c4iw_ev_handler(struct sge_iq *, const struct rsp_ctrl *);
907 u16 c4iw_rqes_posted(struct c4iw_qp *qhp);
908 int c4iw_post_terminate(struct c4iw_qp *qhp, struct t4_cqe *err_cqe);
909 u32 c4iw_get_cqid(struct c4iw_rdev *rdev, struct c4iw_dev_ucontext *uctx);
910 void c4iw_put_cqid(struct c4iw_rdev *rdev, u32 qid,
911 		struct c4iw_dev_ucontext *uctx);
912 u32 c4iw_get_qpid(struct c4iw_rdev *rdev, struct c4iw_dev_ucontext *uctx);
913 void c4iw_put_qpid(struct c4iw_rdev *rdev, u32 qid,
914 		struct c4iw_dev_ucontext *uctx);
915 void c4iw_ev_dispatch(struct c4iw_dev *dev, struct t4_cqe *err_cqe);
916 void process_newconn(struct iw_cm_id *parent_cm_id,
917 		struct socket *child_so);
918 
919 extern struct cxgb4_client t4c_client;
920 extern c4iw_handler_func c4iw_handlers[NUM_CPL_CMDS];
921 extern int c4iw_max_read_depth;
922 
923 #if defined(__i386__) || defined(__amd64__)
924 #define L1_CACHE_BYTES 128
925 #else
926 #define L1_CACHE_BYTES 32
927 #endif
928 
929 void your_reg_device(struct c4iw_dev *dev);
930 
931 #define SGE_CTRLQ_NUM	0
932 
933 #endif
934