xref: /freebsd/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h (revision 0e6acb26)
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 /*
527  * IW_CXGBE event bits.
528  * These bits are used for handling all events for a particular 'ep' serially.
529  */
530 #define	C4IW_EVENT_SOCKET	0x0001
531 #define	C4IW_EVENT_TIMEOUT	0x0002
532 #define	C4IW_EVENT_TERM		0x0004
533 
534 static inline int c4iw_convert_state(enum ib_qp_state ib_state)
535 {
536 	switch (ib_state) {
537 	case IB_QPS_RESET:
538 	case IB_QPS_INIT:
539 		return C4IW_QP_STATE_IDLE;
540 	case IB_QPS_RTS:
541 		return C4IW_QP_STATE_RTS;
542 	case IB_QPS_SQD:
543 		return C4IW_QP_STATE_CLOSING;
544 	case IB_QPS_SQE:
545 		return C4IW_QP_STATE_TERMINATE;
546 	case IB_QPS_ERR:
547 		return C4IW_QP_STATE_ERROR;
548 	default:
549 		return -1;
550 	}
551 }
552 
553 static inline int to_ib_qp_state(int c4iw_qp_state)
554 {
555 	switch (c4iw_qp_state) {
556 	case C4IW_QP_STATE_IDLE:
557 		return IB_QPS_INIT;
558 	case C4IW_QP_STATE_RTS:
559 		return IB_QPS_RTS;
560 	case C4IW_QP_STATE_CLOSING:
561 		return IB_QPS_SQD;
562 	case C4IW_QP_STATE_TERMINATE:
563 		return IB_QPS_SQE;
564 	case C4IW_QP_STATE_ERROR:
565 		return IB_QPS_ERR;
566 	}
567 	return IB_QPS_ERR;
568 }
569 
570 #define C4IW_DRAIN_OPCODE FW_RI_SGE_EC_CR_RETURN
571 
572 static inline u32 c4iw_ib_to_tpt_access(int a)
573 {
574 	return (a & IB_ACCESS_REMOTE_WRITE ? FW_RI_MEM_ACCESS_REM_WRITE : 0) |
575 	       (a & IB_ACCESS_REMOTE_READ ? FW_RI_MEM_ACCESS_REM_READ : 0) |
576 	       (a & IB_ACCESS_LOCAL_WRITE ? FW_RI_MEM_ACCESS_LOCAL_WRITE : 0) |
577 	       FW_RI_MEM_ACCESS_LOCAL_READ;
578 }
579 
580 static inline u32 c4iw_ib_to_tpt_bind_access(int acc)
581 {
582 	return (acc & IB_ACCESS_REMOTE_WRITE ? FW_RI_MEM_ACCESS_REM_WRITE : 0) |
583 	       (acc & IB_ACCESS_REMOTE_READ ? FW_RI_MEM_ACCESS_REM_READ : 0);
584 }
585 
586 enum c4iw_mmid_state {
587 	C4IW_STAG_STATE_VALID,
588 	C4IW_STAG_STATE_INVALID
589 };
590 
591 #define C4IW_NODE_DESC "iw_cxgbe Chelsio Communications"
592 
593 #define MPA_KEY_REQ "MPA ID Req Frame"
594 #define MPA_KEY_REP "MPA ID Rep Frame"
595 
596 #define MPA_MAX_PRIVATE_DATA	256
597 #define MPA_ENHANCED_RDMA_CONN	0x10
598 #define MPA_REJECT		0x20
599 #define MPA_CRC			0x40
600 #define MPA_MARKERS		0x80
601 #define MPA_FLAGS_MASK		0xE0
602 
603 #define MPA_V2_PEER2PEER_MODEL          0x8000
604 #define MPA_V2_ZERO_LEN_FPDU_RTR        0x4000
605 #define MPA_V2_RDMA_WRITE_RTR           0x8000
606 #define MPA_V2_RDMA_READ_RTR            0x4000
607 #define MPA_V2_IRD_ORD_MASK             0x3FFF
608 
609 #define c4iw_put_ep(ep) { \
610 	CTR4(KTR_IW_CXGBE, "put_ep (%s:%u) ep %p, refcnt %d", \
611 	     __func__, __LINE__, ep, atomic_read(&(ep)->kref.refcount)); \
612 	WARN_ON(atomic_read(&(ep)->kref.refcount) < 1); \
613         kref_put(&((ep)->kref), _c4iw_free_ep); \
614 }
615 
616 #define c4iw_get_ep(ep) { \
617 	CTR4(KTR_IW_CXGBE, "get_ep (%s:%u) ep %p, refcnt %d", \
618 	      __func__, __LINE__, ep, atomic_read(&(ep)->kref.refcount)); \
619         kref_get(&((ep)->kref));  \
620 }
621 
622 void _c4iw_free_ep(struct kref *kref);
623 
624 struct mpa_message {
625 	u8 key[16];
626 	u8 flags;
627 	u8 revision;
628 	__be16 private_data_size;
629 	u8 private_data[0];
630 };
631 
632 struct mpa_v2_conn_params {
633 	__be16 ird;
634 	__be16 ord;
635 };
636 
637 struct terminate_message {
638 	u8 layer_etype;
639 	u8 ecode;
640 	__be16 hdrct_rsvd;
641 	u8 len_hdrs[0];
642 };
643 
644 #define TERM_MAX_LENGTH (sizeof(struct terminate_message) + 2 + 18 + 28)
645 
646 enum c4iw_layers_types {
647 	LAYER_RDMAP		= 0x00,
648 	LAYER_DDP		= 0x10,
649 	LAYER_MPA		= 0x20,
650 	RDMAP_LOCAL_CATA	= 0x00,
651 	RDMAP_REMOTE_PROT	= 0x01,
652 	RDMAP_REMOTE_OP		= 0x02,
653 	DDP_LOCAL_CATA		= 0x00,
654 	DDP_TAGGED_ERR		= 0x01,
655 	DDP_UNTAGGED_ERR	= 0x02,
656 	DDP_LLP			= 0x03
657 };
658 
659 enum c4iw_rdma_ecodes {
660 	RDMAP_INV_STAG		= 0x00,
661 	RDMAP_BASE_BOUNDS	= 0x01,
662 	RDMAP_ACC_VIOL		= 0x02,
663 	RDMAP_STAG_NOT_ASSOC	= 0x03,
664 	RDMAP_TO_WRAP		= 0x04,
665 	RDMAP_INV_VERS		= 0x05,
666 	RDMAP_INV_OPCODE	= 0x06,
667 	RDMAP_STREAM_CATA	= 0x07,
668 	RDMAP_GLOBAL_CATA	= 0x08,
669 	RDMAP_CANT_INV_STAG	= 0x09,
670 	RDMAP_UNSPECIFIED	= 0xff
671 };
672 
673 enum c4iw_ddp_ecodes {
674 	DDPT_INV_STAG		= 0x00,
675 	DDPT_BASE_BOUNDS	= 0x01,
676 	DDPT_STAG_NOT_ASSOC	= 0x02,
677 	DDPT_TO_WRAP		= 0x03,
678 	DDPT_INV_VERS		= 0x04,
679 	DDPU_INV_QN		= 0x01,
680 	DDPU_INV_MSN_NOBUF	= 0x02,
681 	DDPU_INV_MSN_RANGE	= 0x03,
682 	DDPU_INV_MO		= 0x04,
683 	DDPU_MSG_TOOBIG		= 0x05,
684 	DDPU_INV_VERS		= 0x06
685 };
686 
687 enum c4iw_mpa_ecodes {
688 	MPA_CRC_ERR		= 0x02,
689 	MPA_MARKER_ERR		= 0x03,
690 	MPA_LOCAL_CATA          = 0x05,
691 	MPA_INSUFF_IRD          = 0x06,
692 	MPA_NOMATCH_RTR         = 0x07,
693 };
694 
695 enum c4iw_ep_state {
696 	IDLE = 0,
697 	LISTEN,
698 	CONNECTING,
699 	MPA_REQ_WAIT,
700 	MPA_REQ_SENT,
701 	MPA_REQ_RCVD,
702 	MPA_REP_SENT,
703 	FPDU_MODE,
704 	ABORTING,
705 	CLOSING,
706 	MORIBUND,
707 	DEAD,
708 };
709 
710 enum c4iw_ep_flags {
711 	PEER_ABORT_IN_PROGRESS	= 0,
712 	ABORT_REQ_IN_PROGRESS	= 1,
713 	RELEASE_RESOURCES	= 2,
714 	CLOSE_SENT		= 3,
715 	TIMEOUT                 = 4,
716 	QP_REFERENCED		= 5
717 };
718 
719 enum c4iw_ep_history {
720         ACT_OPEN_REQ            = 0,
721         ACT_OFLD_CONN           = 1,
722         ACT_OPEN_RPL            = 2,
723         ACT_ESTAB               = 3,
724         PASS_ACCEPT_REQ         = 4,
725         PASS_ESTAB              = 5,
726         ABORT_UPCALL            = 6,
727         ESTAB_UPCALL            = 7,
728         CLOSE_UPCALL            = 8,
729         ULP_ACCEPT              = 9,
730         ULP_REJECT              = 10,
731         TIMEDOUT                = 11,
732         PEER_ABORT              = 12,
733         PEER_CLOSE              = 13,
734         CONNREQ_UPCALL          = 14,
735         ABORT_CONN              = 15,
736         DISCONN_UPCALL          = 16,
737         EP_DISC_CLOSE           = 17,
738         EP_DISC_ABORT           = 18,
739         CONN_RPL_UPCALL         = 19,
740         ACT_RETRY_NOMEM         = 20,
741         ACT_RETRY_INUSE         = 21,
742         CLOSE_CON_RPL           = 22,
743         EP_DISC_FAIL            = 24,
744         QP_REFED                = 25,
745         QP_DEREFED              = 26,
746         CM_ID_REFED             = 27,
747         CM_ID_DEREFED           = 28
748 };
749 
750 struct c4iw_ep_common {
751 	TAILQ_ENTRY(c4iw_ep_common) entry;	/* Work queue attachment */
752 	struct iw_cm_id *cm_id;
753 	struct c4iw_qp *qp;
754 	struct c4iw_dev *dev;
755 	enum c4iw_ep_state state;
756 	struct kref kref;
757 	struct mutex mutex;
758 	struct sockaddr_in local_addr;
759 	struct sockaddr_in remote_addr;
760 	struct c4iw_wr_wait wr_wait;
761 	unsigned long flags;
762 	unsigned long history;
763         int rpl_err;
764         int rpl_done;
765         struct thread *thread;
766         struct socket *so;
767 	int ep_events;
768 };
769 
770 struct c4iw_listen_ep {
771 	struct c4iw_ep_common com;
772 	unsigned int stid;
773 	int backlog;
774 };
775 
776 struct c4iw_ep {
777 	struct c4iw_ep_common com;
778 	struct c4iw_ep *parent_ep;
779 	struct timer_list timer;
780 	unsigned int atid;
781 	u32 hwtid;
782 	u32 snd_seq;
783 	u32 rcv_seq;
784 	struct l2t_entry *l2t;
785 	struct dst_entry *dst;
786 	struct c4iw_mpa_attributes mpa_attr;
787 	u8 mpa_pkt[sizeof(struct mpa_message) + MPA_MAX_PRIVATE_DATA];
788 	unsigned int mpa_pkt_len;
789 	u32 ird;
790 	u32 ord;
791 	u32 smac_idx;
792 	u32 tx_chan;
793 	u32 mtu;
794 	u16 mss;
795 	u16 emss;
796 	u16 plen;
797 	u16 rss_qid;
798 	u16 txq_idx;
799 	u16 ctrlq_idx;
800 	u8 tos;
801 	u8 retry_with_mpa_v1;
802 	u8 tried_with_mpa_v1;
803 };
804 
805 static inline struct c4iw_ep *to_ep(struct iw_cm_id *cm_id)
806 {
807 	return cm_id->provider_data;
808 }
809 
810 static inline struct c4iw_listen_ep *to_listen_ep(struct iw_cm_id *cm_id)
811 {
812 	return cm_id->provider_data;
813 }
814 
815 static inline int compute_wscale(int win)
816 {
817 	int wscale = 0;
818 
819 	while (wscale < 14 && (65535<<wscale) < win)
820 		wscale++;
821 	return wscale;
822 }
823 
824 u32 c4iw_id_alloc(struct c4iw_id_table *alloc);
825 void c4iw_id_free(struct c4iw_id_table *alloc, u32 obj);
826 int c4iw_id_table_alloc(struct c4iw_id_table *alloc, u32 start, u32 num,
827 			u32 reserved, u32 flags);
828 void c4iw_id_table_free(struct c4iw_id_table *alloc);
829 
830 typedef int (*c4iw_handler_func)(struct c4iw_dev *dev, struct mbuf *m);
831 
832 int c4iw_ep_redirect(void *ctx, struct dst_entry *old, struct dst_entry *new,
833 		     struct l2t_entry *l2t);
834 u32 c4iw_get_resource(struct c4iw_id_table *id_table);
835 void c4iw_put_resource(struct c4iw_id_table *id_table, u32 entry);
836 int c4iw_init_resource(struct c4iw_rdev *rdev, u32 nr_tpt, u32 nr_pdid);
837 int c4iw_init_ctrl_qp(struct c4iw_rdev *rdev);
838 int c4iw_pblpool_create(struct c4iw_rdev *rdev);
839 int c4iw_rqtpool_create(struct c4iw_rdev *rdev);
840 void c4iw_pblpool_destroy(struct c4iw_rdev *rdev);
841 void c4iw_rqtpool_destroy(struct c4iw_rdev *rdev);
842 void c4iw_destroy_resource(struct c4iw_resource *rscp);
843 int c4iw_destroy_ctrl_qp(struct c4iw_rdev *rdev);
844 int c4iw_register_device(struct c4iw_dev *dev);
845 void c4iw_unregister_device(struct c4iw_dev *dev);
846 int __init c4iw_cm_init(void);
847 void __exit c4iw_cm_term(void);
848 void c4iw_release_dev_ucontext(struct c4iw_rdev *rdev,
849 			       struct c4iw_dev_ucontext *uctx);
850 void c4iw_init_dev_ucontext(struct c4iw_rdev *rdev,
851 			    struct c4iw_dev_ucontext *uctx);
852 int c4iw_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
853 int c4iw_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
854 		      struct ib_send_wr **bad_wr);
855 int c4iw_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
856 		      struct ib_recv_wr **bad_wr);
857 int c4iw_bind_mw(struct ib_qp *qp, struct ib_mw *mw,
858 		 struct ib_mw_bind *mw_bind);
859 int c4iw_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param);
860 int c4iw_create_listen_ep(struct iw_cm_id *cm_id, int backlog);
861 void c4iw_destroy_listen_ep(struct iw_cm_id *cm_id);
862 int c4iw_accept_cr(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param);
863 int c4iw_reject_cr(struct iw_cm_id *cm_id, const void *pdata, u8 pdata_len);
864 void c4iw_qp_add_ref(struct ib_qp *qp);
865 void c4iw_qp_rem_ref(struct ib_qp *qp);
866 void c4iw_free_fastreg_pbl(struct ib_fast_reg_page_list *page_list);
867 struct ib_fast_reg_page_list *c4iw_alloc_fastreg_pbl(
868 					struct ib_device *device,
869 					int page_list_len);
870 struct ib_mr *c4iw_alloc_fast_reg_mr(struct ib_pd *pd, int pbl_depth);
871 int c4iw_dealloc_mw(struct ib_mw *mw);
872 struct ib_mw *c4iw_alloc_mw(struct ib_pd *pd, enum ib_mw_type type);
873 struct ib_mr *c4iw_reg_user_mr(struct ib_pd *pd, u64 start, u64 length, u64
874     virt, int acc, struct ib_udata *udata, int mr_id);
875 struct ib_mr *c4iw_get_dma_mr(struct ib_pd *pd, int acc);
876 struct ib_mr *c4iw_register_phys_mem(struct ib_pd *pd,
877 					struct ib_phys_buf *buffer_list,
878 					int num_phys_buf,
879 					int acc,
880 					u64 *iova_start);
881 int c4iw_reregister_phys_mem(struct ib_mr *mr,
882 				     int mr_rereg_mask,
883 				     struct ib_pd *pd,
884 				     struct ib_phys_buf *buffer_list,
885 				     int num_phys_buf,
886 				     int acc, u64 *iova_start);
887 int c4iw_dereg_mr(struct ib_mr *ib_mr);
888 int c4iw_destroy_cq(struct ib_cq *ib_cq);
889 struct ib_cq *c4iw_create_cq(struct ib_device *ibdev, struct ib_cq_init_attr *attr,
890 					struct ib_ucontext *ib_context,
891 					struct ib_udata *udata);
892 int c4iw_resize_cq(struct ib_cq *cq, int cqe, struct ib_udata *udata);
893 int c4iw_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags);
894 int c4iw_destroy_qp(struct ib_qp *ib_qp);
895 struct ib_qp *c4iw_create_qp(struct ib_pd *pd,
896 			     struct ib_qp_init_attr *attrs,
897 			     struct ib_udata *udata);
898 int c4iw_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
899 				 int attr_mask, struct ib_udata *udata);
900 int c4iw_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
901 		     int attr_mask, struct ib_qp_init_attr *init_attr);
902 struct ib_qp *c4iw_get_qp(struct ib_device *dev, int qpn);
903 u32 c4iw_rqtpool_alloc(struct c4iw_rdev *rdev, int size);
904 void c4iw_rqtpool_free(struct c4iw_rdev *rdev, u32 addr, int size);
905 u32 c4iw_pblpool_alloc(struct c4iw_rdev *rdev, int size);
906 void c4iw_pblpool_free(struct c4iw_rdev *rdev, u32 addr, int size);
907 int c4iw_ofld_send(struct c4iw_rdev *rdev, struct mbuf *m);
908 void c4iw_flush_hw_cq(struct t4_cq *cq);
909 void c4iw_count_rcqes(struct t4_cq *cq, struct t4_wq *wq, int *count);
910 void c4iw_count_scqes(struct t4_cq *cq, struct t4_wq *wq, int *count);
911 int c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp);
912 int c4iw_flush_rq(struct t4_wq *wq, struct t4_cq *cq, int count);
913 int c4iw_flush_sq(struct t4_wq *wq, struct t4_cq *cq, int count);
914 int c4iw_ev_handler(struct sge_iq *, const struct rsp_ctrl *);
915 u16 c4iw_rqes_posted(struct c4iw_qp *qhp);
916 int c4iw_post_terminate(struct c4iw_qp *qhp, struct t4_cqe *err_cqe);
917 u32 c4iw_get_cqid(struct c4iw_rdev *rdev, struct c4iw_dev_ucontext *uctx);
918 void c4iw_put_cqid(struct c4iw_rdev *rdev, u32 qid,
919 		struct c4iw_dev_ucontext *uctx);
920 u32 c4iw_get_qpid(struct c4iw_rdev *rdev, struct c4iw_dev_ucontext *uctx);
921 void c4iw_put_qpid(struct c4iw_rdev *rdev, u32 qid,
922 		struct c4iw_dev_ucontext *uctx);
923 void c4iw_ev_dispatch(struct c4iw_dev *dev, struct t4_cqe *err_cqe);
924 void process_newconn(struct iw_cm_id *parent_cm_id,
925 		struct socket *child_so);
926 
927 extern struct cxgb4_client t4c_client;
928 extern c4iw_handler_func c4iw_handlers[NUM_CPL_CMDS];
929 extern int c4iw_max_read_depth;
930 
931 #if defined(__i386__) || defined(__amd64__)
932 #define L1_CACHE_BYTES 128
933 #else
934 #define L1_CACHE_BYTES 32
935 #endif
936 
937 void your_reg_device(struct c4iw_dev *dev);
938 
939 #define SGE_CTRLQ_NUM	0
940 
941 #endif
942