iw_cxgb4: remove BUG_ON() usage.
[linux-block.git] / drivers / infiniband / hw / cxgb4 / iw_cxgb4.h
1 /*
2  * Copyright (c) 2009-2010 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 #ifndef __IW_CXGB4_H__
32 #define __IW_CXGB4_H__
33
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/mm.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>
47 #include <linux/io.h>
48 #include <linux/workqueue.h>
49
50 #include <asm/byteorder.h>
51
52 #include <net/net_namespace.h>
53
54 #include <rdma/ib_verbs.h>
55 #include <rdma/iw_cm.h>
56 #include <rdma/rdma_netlink.h>
57 #include <rdma/iw_portmap.h>
58
59 #include "cxgb4.h"
60 #include "cxgb4_uld.h"
61 #include "l2t.h"
62 #include <rdma/cxgb4-abi.h>
63
64 #define DRV_NAME "iw_cxgb4"
65 #define MOD DRV_NAME ":"
66
67 #ifdef pr_fmt
68 #undef pr_fmt
69 #endif
70
71 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
72
73 #include "t4.h"
74
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)
77
78 static inline void *cplhdr(struct sk_buff *skb)
79 {
80         return skb->data;
81 }
82
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 */
85
86 struct c4iw_id_table {
87         u32 flags;
88         u32 start;              /* logical minimal id */
89         u32 last;               /* hint for find */
90         u32 max;
91         spinlock_t lock;
92         unsigned long *table;
93 };
94
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;
99 };
100
101 struct c4iw_qid_list {
102         struct list_head entry;
103         u32 qid;
104 };
105
106 struct c4iw_dev_ucontext {
107         struct list_head qpids;
108         struct list_head cqids;
109         struct mutex lock;
110         struct kref kref;
111 };
112
113 enum c4iw_rdev_flags {
114         T4_FATAL_ERROR = (1<<0),
115         T4_STATUS_PAGE_DISABLED = (1<<1),
116 };
117
118 struct c4iw_stat {
119         u64 total;
120         u64 cur;
121         u64 max;
122         u64 fail;
123 };
124
125 struct c4iw_stats {
126         struct mutex lock;
127         struct c4iw_stat qid;
128         struct c4iw_stat pd;
129         struct c4iw_stat stag;
130         struct c4iw_stat pbl;
131         struct c4iw_stat rqt;
132         struct c4iw_stat ocqp;
133         u64  db_full;
134         u64  db_empty;
135         u64  db_drop;
136         u64  db_state_transitions;
137         u64  db_fc_interruptions;
138         u64  tcam_full;
139         u64  act_ofld_conn_fails;
140         u64  pas_ofld_conn_fails;
141         u64  neg_adv;
142 };
143
144 struct c4iw_hw_queue {
145         int t4_eq_status_entries;
146         int t4_max_eq_size;
147         int t4_max_iq_size;
148         int t4_max_rq_size;
149         int t4_max_sq_size;
150         int t4_max_qp_depth;
151         int t4_max_cq_depth;
152         int t4_stat_len;
153 };
154
155 struct wr_log_entry {
156         struct timespec post_host_ts;
157         struct timespec poll_host_ts;
158         u64 post_sge_ts;
159         u64 cqe_sge_ts;
160         u64 poll_sge_ts;
161         u16 qid;
162         u16 wr_id;
163         u8 opcode;
164         u8 valid;
165 };
166
167 struct c4iw_rdev {
168         struct c4iw_resource resource;
169         u32 qpmask;
170         u32 cqmask;
171         struct c4iw_dev_ucontext uctx;
172         struct gen_pool *pbl_pool;
173         struct gen_pool *rqt_pool;
174         struct gen_pool *ocqp_pool;
175         u32 flags;
176         struct cxgb4_lld_info lldi;
177         unsigned long bar2_pa;
178         void __iomem *bar2_kva;
179         unsigned long oc_mw_pa;
180         void __iomem *oc_mw_kva;
181         struct c4iw_stats stats;
182         struct c4iw_hw_queue hw_queue;
183         struct t4_dev_status_page *status_page;
184         atomic_t wr_log_idx;
185         struct wr_log_entry *wr_log;
186         int wr_log_size;
187         struct workqueue_struct *free_workq;
188 };
189
190 static inline int c4iw_fatal_error(struct c4iw_rdev *rdev)
191 {
192         return rdev->flags & T4_FATAL_ERROR;
193 }
194
195 static inline int c4iw_num_stags(struct c4iw_rdev *rdev)
196 {
197         return (int)(rdev->lldi.vr->stag.size >> 5);
198 }
199
200 #define C4IW_WR_TO (60*HZ)
201
202 struct c4iw_wr_wait {
203         struct completion completion;
204         int ret;
205         struct kref kref;
206 };
207
208 void _c4iw_free_wr_wait(struct kref *kref);
209
210 static inline void c4iw_put_wr_wait(struct c4iw_wr_wait *wr_waitp)
211 {
212         pr_debug("wr_wait %p ref before put %u\n", wr_waitp,
213                  kref_read(&wr_waitp->kref));
214         WARN_ON(kref_read(&wr_waitp->kref) == 0);
215         kref_put(&wr_waitp->kref, _c4iw_free_wr_wait);
216 }
217
218 static inline void c4iw_get_wr_wait(struct c4iw_wr_wait *wr_waitp)
219 {
220         pr_debug("wr_wait %p ref before get %u\n", wr_waitp,
221                  kref_read(&wr_waitp->kref));
222         WARN_ON(kref_read(&wr_waitp->kref) == 0);
223         kref_get(&wr_waitp->kref);
224 }
225
226 static inline void c4iw_init_wr_wait(struct c4iw_wr_wait *wr_waitp)
227 {
228         wr_waitp->ret = 0;
229         init_completion(&wr_waitp->completion);
230 }
231
232 static inline void _c4iw_wake_up(struct c4iw_wr_wait *wr_waitp, int ret,
233                                  bool deref)
234 {
235         wr_waitp->ret = ret;
236         complete(&wr_waitp->completion);
237         if (deref)
238                 c4iw_put_wr_wait(wr_waitp);
239 }
240
241 static inline void c4iw_wake_up_noref(struct c4iw_wr_wait *wr_waitp, int ret)
242 {
243         _c4iw_wake_up(wr_waitp, ret, false);
244 }
245
246 static inline void c4iw_wake_up_deref(struct c4iw_wr_wait *wr_waitp, int ret)
247 {
248         _c4iw_wake_up(wr_waitp, ret, true);
249 }
250
251 static inline int c4iw_wait_for_reply(struct c4iw_rdev *rdev,
252                                  struct c4iw_wr_wait *wr_waitp,
253                                  u32 hwtid, u32 qpid,
254                                  const char *func)
255 {
256         int ret;
257
258         if (c4iw_fatal_error(rdev)) {
259                 wr_waitp->ret = -EIO;
260                 goto out;
261         }
262
263         ret = wait_for_completion_timeout(&wr_waitp->completion, C4IW_WR_TO);
264         if (!ret) {
265                 pr_err("%s - Device %s not responding (disabling device) - tid %u qpid %u\n",
266                        func, pci_name(rdev->lldi.pdev), hwtid, qpid);
267                 rdev->flags |= T4_FATAL_ERROR;
268                 wr_waitp->ret = -EIO;
269                 goto out;
270         }
271         if (wr_waitp->ret)
272                 pr_debug("%s: FW reply %d tid %u qpid %u\n",
273                          pci_name(rdev->lldi.pdev), wr_waitp->ret, hwtid, qpid);
274 out:
275         return wr_waitp->ret;
276 }
277
278 int c4iw_ofld_send(struct c4iw_rdev *rdev, struct sk_buff *skb);
279
280 static inline int c4iw_ref_send_wait(struct c4iw_rdev *rdev,
281                                      struct sk_buff *skb,
282                                      struct c4iw_wr_wait *wr_waitp,
283                                      u32 hwtid, u32 qpid,
284                                      const char *func)
285 {
286         int ret;
287
288         pr_debug("%s wr_wait %p hwtid %u qpid %u\n", func, wr_waitp, hwtid,
289                  qpid);
290         c4iw_get_wr_wait(wr_waitp);
291         ret = c4iw_ofld_send(rdev, skb);
292         if (ret) {
293                 c4iw_put_wr_wait(wr_waitp);
294                 return ret;
295         }
296         return c4iw_wait_for_reply(rdev, wr_waitp, hwtid, qpid, func);
297 }
298
299 enum db_state {
300         NORMAL = 0,
301         FLOW_CONTROL = 1,
302         RECOVERY = 2,
303         STOPPED = 3
304 };
305
306 struct c4iw_dev {
307         struct ib_device ibdev;
308         struct c4iw_rdev rdev;
309         u32 device_cap_flags;
310         struct idr cqidr;
311         struct idr qpidr;
312         struct idr mmidr;
313         spinlock_t lock;
314         struct mutex db_mutex;
315         struct dentry *debugfs_root;
316         enum db_state db_state;
317         struct idr hwtid_idr;
318         struct idr atid_idr;
319         struct idr stid_idr;
320         struct list_head db_fc_list;
321         u32 avail_ird;
322         wait_queue_head_t wait;
323 };
324
325 static inline struct c4iw_dev *to_c4iw_dev(struct ib_device *ibdev)
326 {
327         return container_of(ibdev, struct c4iw_dev, ibdev);
328 }
329
330 static inline struct c4iw_dev *rdev_to_c4iw_dev(struct c4iw_rdev *rdev)
331 {
332         return container_of(rdev, struct c4iw_dev, rdev);
333 }
334
335 static inline struct c4iw_cq *get_chp(struct c4iw_dev *rhp, u32 cqid)
336 {
337         return idr_find(&rhp->cqidr, cqid);
338 }
339
340 static inline struct c4iw_qp *get_qhp(struct c4iw_dev *rhp, u32 qpid)
341 {
342         return idr_find(&rhp->qpidr, qpid);
343 }
344
345 static inline struct c4iw_mr *get_mhp(struct c4iw_dev *rhp, u32 mmid)
346 {
347         return idr_find(&rhp->mmidr, mmid);
348 }
349
350 static inline int _insert_handle(struct c4iw_dev *rhp, struct idr *idr,
351                                  void *handle, u32 id, int lock)
352 {
353         int ret;
354
355         if (lock) {
356                 idr_preload(GFP_KERNEL);
357                 spin_lock_irq(&rhp->lock);
358         }
359
360         ret = idr_alloc(idr, handle, id, id + 1, GFP_ATOMIC);
361
362         if (lock) {
363                 spin_unlock_irq(&rhp->lock);
364                 idr_preload_end();
365         }
366
367         return ret < 0 ? ret : 0;
368 }
369
370 static inline int insert_handle(struct c4iw_dev *rhp, struct idr *idr,
371                                 void *handle, u32 id)
372 {
373         return _insert_handle(rhp, idr, handle, id, 1);
374 }
375
376 static inline int insert_handle_nolock(struct c4iw_dev *rhp, struct idr *idr,
377                                        void *handle, u32 id)
378 {
379         return _insert_handle(rhp, idr, handle, id, 0);
380 }
381
382 static inline void _remove_handle(struct c4iw_dev *rhp, struct idr *idr,
383                                    u32 id, int lock)
384 {
385         if (lock)
386                 spin_lock_irq(&rhp->lock);
387         idr_remove(idr, id);
388         if (lock)
389                 spin_unlock_irq(&rhp->lock);
390 }
391
392 static inline void remove_handle(struct c4iw_dev *rhp, struct idr *idr, u32 id)
393 {
394         _remove_handle(rhp, idr, id, 1);
395 }
396
397 static inline void remove_handle_nolock(struct c4iw_dev *rhp,
398                                          struct idr *idr, u32 id)
399 {
400         _remove_handle(rhp, idr, id, 0);
401 }
402
403 extern uint c4iw_max_read_depth;
404
405 static inline int cur_max_read_depth(struct c4iw_dev *dev)
406 {
407         return min(dev->rdev.lldi.max_ordird_qp, c4iw_max_read_depth);
408 }
409
410 struct c4iw_pd {
411         struct ib_pd ibpd;
412         u32 pdid;
413         struct c4iw_dev *rhp;
414 };
415
416 static inline struct c4iw_pd *to_c4iw_pd(struct ib_pd *ibpd)
417 {
418         return container_of(ibpd, struct c4iw_pd, ibpd);
419 }
420
421 struct tpt_attributes {
422         u64 len;
423         u64 va_fbo;
424         enum fw_ri_mem_perms perms;
425         u32 stag;
426         u32 pdid;
427         u32 qpid;
428         u32 pbl_addr;
429         u32 pbl_size;
430         u32 state:1;
431         u32 type:2;
432         u32 rsvd:1;
433         u32 remote_invaliate_disable:1;
434         u32 zbva:1;
435         u32 mw_bind_enable:1;
436         u32 page_size:5;
437 };
438
439 struct c4iw_mr {
440         struct ib_mr ibmr;
441         struct ib_umem *umem;
442         struct c4iw_dev *rhp;
443         struct sk_buff *dereg_skb;
444         u64 kva;
445         struct tpt_attributes attr;
446         u64 *mpl;
447         dma_addr_t mpl_addr;
448         u32 max_mpl_len;
449         u32 mpl_len;
450         struct c4iw_wr_wait *wr_waitp;
451 };
452
453 static inline struct c4iw_mr *to_c4iw_mr(struct ib_mr *ibmr)
454 {
455         return container_of(ibmr, struct c4iw_mr, ibmr);
456 }
457
458 struct c4iw_mw {
459         struct ib_mw ibmw;
460         struct c4iw_dev *rhp;
461         struct sk_buff *dereg_skb;
462         u64 kva;
463         struct tpt_attributes attr;
464         struct c4iw_wr_wait *wr_waitp;
465 };
466
467 static inline struct c4iw_mw *to_c4iw_mw(struct ib_mw *ibmw)
468 {
469         return container_of(ibmw, struct c4iw_mw, ibmw);
470 }
471
472 struct c4iw_cq {
473         struct ib_cq ibcq;
474         struct c4iw_dev *rhp;
475         struct sk_buff *destroy_skb;
476         struct t4_cq cq;
477         spinlock_t lock;
478         spinlock_t comp_handler_lock;
479         atomic_t refcnt;
480         wait_queue_head_t wait;
481         struct c4iw_wr_wait *wr_waitp;
482 };
483
484 static inline struct c4iw_cq *to_c4iw_cq(struct ib_cq *ibcq)
485 {
486         return container_of(ibcq, struct c4iw_cq, ibcq);
487 }
488
489 struct c4iw_mpa_attributes {
490         u8 initiator;
491         u8 recv_marker_enabled;
492         u8 xmit_marker_enabled;
493         u8 crc_enabled;
494         u8 enhanced_rdma_conn;
495         u8 version;
496         u8 p2p_type;
497 };
498
499 struct c4iw_qp_attributes {
500         u32 scq;
501         u32 rcq;
502         u32 sq_num_entries;
503         u32 rq_num_entries;
504         u32 sq_max_sges;
505         u32 sq_max_sges_rdma_write;
506         u32 rq_max_sges;
507         u32 state;
508         u8 enable_rdma_read;
509         u8 enable_rdma_write;
510         u8 enable_bind;
511         u8 enable_mmid0_fastreg;
512         u32 max_ord;
513         u32 max_ird;
514         u32 pd;
515         u32 next_state;
516         char terminate_buffer[52];
517         u32 terminate_msg_len;
518         u8 is_terminate_local;
519         struct c4iw_mpa_attributes mpa_attr;
520         struct c4iw_ep *llp_stream_handle;
521         u8 layer_etype;
522         u8 ecode;
523         u16 sq_db_inc;
524         u16 rq_db_inc;
525         u8 send_term;
526 };
527
528 struct c4iw_qp {
529         struct ib_qp ibqp;
530         struct list_head db_fc_entry;
531         struct c4iw_dev *rhp;
532         struct c4iw_ep *ep;
533         struct c4iw_qp_attributes attr;
534         struct t4_wq wq;
535         spinlock_t lock;
536         struct mutex mutex;
537         struct kref kref;
538         wait_queue_head_t wait;
539         int sq_sig_all;
540         struct work_struct free_work;
541         struct c4iw_ucontext *ucontext;
542         struct c4iw_wr_wait *wr_waitp;
543 };
544
545 static inline struct c4iw_qp *to_c4iw_qp(struct ib_qp *ibqp)
546 {
547         return container_of(ibqp, struct c4iw_qp, ibqp);
548 }
549
550 struct c4iw_ucontext {
551         struct ib_ucontext ibucontext;
552         struct c4iw_dev_ucontext uctx;
553         u32 key;
554         spinlock_t mmap_lock;
555         struct list_head mmaps;
556         struct kref kref;
557 };
558
559 static inline struct c4iw_ucontext *to_c4iw_ucontext(struct ib_ucontext *c)
560 {
561         return container_of(c, struct c4iw_ucontext, ibucontext);
562 }
563
564 void _c4iw_free_ucontext(struct kref *kref);
565
566 static inline void c4iw_put_ucontext(struct c4iw_ucontext *ucontext)
567 {
568         kref_put(&ucontext->kref, _c4iw_free_ucontext);
569 }
570
571 static inline void c4iw_get_ucontext(struct c4iw_ucontext *ucontext)
572 {
573         kref_get(&ucontext->kref);
574 }
575
576 struct c4iw_mm_entry {
577         struct list_head entry;
578         u64 addr;
579         u32 key;
580         unsigned len;
581 };
582
583 static inline struct c4iw_mm_entry *remove_mmap(struct c4iw_ucontext *ucontext,
584                                                 u32 key, unsigned len)
585 {
586         struct list_head *pos, *nxt;
587         struct c4iw_mm_entry *mm;
588
589         spin_lock(&ucontext->mmap_lock);
590         list_for_each_safe(pos, nxt, &ucontext->mmaps) {
591
592                 mm = list_entry(pos, struct c4iw_mm_entry, entry);
593                 if (mm->key == key && mm->len == len) {
594                         list_del_init(&mm->entry);
595                         spin_unlock(&ucontext->mmap_lock);
596                         pr_debug("key 0x%x addr 0x%llx len %d\n", key,
597                                  (unsigned long long)mm->addr, mm->len);
598                         return mm;
599                 }
600         }
601         spin_unlock(&ucontext->mmap_lock);
602         return NULL;
603 }
604
605 static inline void insert_mmap(struct c4iw_ucontext *ucontext,
606                                struct c4iw_mm_entry *mm)
607 {
608         spin_lock(&ucontext->mmap_lock);
609         pr_debug("key 0x%x addr 0x%llx len %d\n",
610                  mm->key, (unsigned long long)mm->addr, mm->len);
611         list_add_tail(&mm->entry, &ucontext->mmaps);
612         spin_unlock(&ucontext->mmap_lock);
613 }
614
615 enum c4iw_qp_attr_mask {
616         C4IW_QP_ATTR_NEXT_STATE = 1 << 0,
617         C4IW_QP_ATTR_SQ_DB = 1<<1,
618         C4IW_QP_ATTR_RQ_DB = 1<<2,
619         C4IW_QP_ATTR_ENABLE_RDMA_READ = 1 << 7,
620         C4IW_QP_ATTR_ENABLE_RDMA_WRITE = 1 << 8,
621         C4IW_QP_ATTR_ENABLE_RDMA_BIND = 1 << 9,
622         C4IW_QP_ATTR_MAX_ORD = 1 << 11,
623         C4IW_QP_ATTR_MAX_IRD = 1 << 12,
624         C4IW_QP_ATTR_LLP_STREAM_HANDLE = 1 << 22,
625         C4IW_QP_ATTR_STREAM_MSG_BUFFER = 1 << 23,
626         C4IW_QP_ATTR_MPA_ATTR = 1 << 24,
627         C4IW_QP_ATTR_QP_CONTEXT_ACTIVATE = 1 << 25,
628         C4IW_QP_ATTR_VALID_MODIFY = (C4IW_QP_ATTR_ENABLE_RDMA_READ |
629                                      C4IW_QP_ATTR_ENABLE_RDMA_WRITE |
630                                      C4IW_QP_ATTR_MAX_ORD |
631                                      C4IW_QP_ATTR_MAX_IRD |
632                                      C4IW_QP_ATTR_LLP_STREAM_HANDLE |
633                                      C4IW_QP_ATTR_STREAM_MSG_BUFFER |
634                                      C4IW_QP_ATTR_MPA_ATTR |
635                                      C4IW_QP_ATTR_QP_CONTEXT_ACTIVATE)
636 };
637
638 int c4iw_modify_qp(struct c4iw_dev *rhp,
639                                 struct c4iw_qp *qhp,
640                                 enum c4iw_qp_attr_mask mask,
641                                 struct c4iw_qp_attributes *attrs,
642                                 int internal);
643
644 enum c4iw_qp_state {
645         C4IW_QP_STATE_IDLE,
646         C4IW_QP_STATE_RTS,
647         C4IW_QP_STATE_ERROR,
648         C4IW_QP_STATE_TERMINATE,
649         C4IW_QP_STATE_CLOSING,
650         C4IW_QP_STATE_TOT
651 };
652
653 static inline int c4iw_convert_state(enum ib_qp_state ib_state)
654 {
655         switch (ib_state) {
656         case IB_QPS_RESET:
657         case IB_QPS_INIT:
658                 return C4IW_QP_STATE_IDLE;
659         case IB_QPS_RTS:
660                 return C4IW_QP_STATE_RTS;
661         case IB_QPS_SQD:
662                 return C4IW_QP_STATE_CLOSING;
663         case IB_QPS_SQE:
664                 return C4IW_QP_STATE_TERMINATE;
665         case IB_QPS_ERR:
666                 return C4IW_QP_STATE_ERROR;
667         default:
668                 return -1;
669         }
670 }
671
672 static inline int to_ib_qp_state(int c4iw_qp_state)
673 {
674         switch (c4iw_qp_state) {
675         case C4IW_QP_STATE_IDLE:
676                 return IB_QPS_INIT;
677         case C4IW_QP_STATE_RTS:
678                 return IB_QPS_RTS;
679         case C4IW_QP_STATE_CLOSING:
680                 return IB_QPS_SQD;
681         case C4IW_QP_STATE_TERMINATE:
682                 return IB_QPS_SQE;
683         case C4IW_QP_STATE_ERROR:
684                 return IB_QPS_ERR;
685         }
686         return IB_QPS_ERR;
687 }
688
689 #define C4IW_DRAIN_OPCODE FW_RI_SGE_EC_CR_RETURN
690
691 static inline u32 c4iw_ib_to_tpt_access(int a)
692 {
693         return (a & IB_ACCESS_REMOTE_WRITE ? FW_RI_MEM_ACCESS_REM_WRITE : 0) |
694                (a & IB_ACCESS_REMOTE_READ ? FW_RI_MEM_ACCESS_REM_READ : 0) |
695                (a & IB_ACCESS_LOCAL_WRITE ? FW_RI_MEM_ACCESS_LOCAL_WRITE : 0) |
696                FW_RI_MEM_ACCESS_LOCAL_READ;
697 }
698
699 static inline u32 c4iw_ib_to_tpt_bind_access(int acc)
700 {
701         return (acc & IB_ACCESS_REMOTE_WRITE ? FW_RI_MEM_ACCESS_REM_WRITE : 0) |
702                (acc & IB_ACCESS_REMOTE_READ ? FW_RI_MEM_ACCESS_REM_READ : 0);
703 }
704
705 enum c4iw_mmid_state {
706         C4IW_STAG_STATE_VALID,
707         C4IW_STAG_STATE_INVALID
708 };
709
710 #define C4IW_NODE_DESC "cxgb4 Chelsio Communications"
711
712 #define MPA_KEY_REQ "MPA ID Req Frame"
713 #define MPA_KEY_REP "MPA ID Rep Frame"
714
715 #define MPA_MAX_PRIVATE_DATA    256
716 #define MPA_ENHANCED_RDMA_CONN  0x10
717 #define MPA_REJECT              0x20
718 #define MPA_CRC                 0x40
719 #define MPA_MARKERS             0x80
720 #define MPA_FLAGS_MASK          0xE0
721
722 #define MPA_V2_PEER2PEER_MODEL          0x8000
723 #define MPA_V2_ZERO_LEN_FPDU_RTR        0x4000
724 #define MPA_V2_RDMA_WRITE_RTR           0x8000
725 #define MPA_V2_RDMA_READ_RTR            0x4000
726 #define MPA_V2_IRD_ORD_MASK             0x3FFF
727
728 #define c4iw_put_ep(ep) {                                               \
729         pr_debug("put_ep ep %p refcnt %d\n",            \
730                  ep, kref_read(&((ep)->kref)));                         \
731         WARN_ON(kref_read(&((ep)->kref)) < 1);                          \
732         kref_put(&((ep)->kref), _c4iw_free_ep);                         \
733 }
734
735 #define c4iw_get_ep(ep) {                                               \
736         pr_debug("get_ep ep %p, refcnt %d\n",           \
737                  ep, kref_read(&((ep)->kref)));                         \
738         kref_get(&((ep)->kref));                                        \
739 }
740 void _c4iw_free_ep(struct kref *kref);
741
742 struct mpa_message {
743         u8 key[16];
744         u8 flags;
745         u8 revision;
746         __be16 private_data_size;
747         u8 private_data[0];
748 };
749
750 struct mpa_v2_conn_params {
751         __be16 ird;
752         __be16 ord;
753 };
754
755 struct terminate_message {
756         u8 layer_etype;
757         u8 ecode;
758         __be16 hdrct_rsvd;
759         u8 len_hdrs[0];
760 };
761
762 #define TERM_MAX_LENGTH (sizeof(struct terminate_message) + 2 + 18 + 28)
763
764 enum c4iw_layers_types {
765         LAYER_RDMAP             = 0x00,
766         LAYER_DDP               = 0x10,
767         LAYER_MPA               = 0x20,
768         RDMAP_LOCAL_CATA        = 0x00,
769         RDMAP_REMOTE_PROT       = 0x01,
770         RDMAP_REMOTE_OP         = 0x02,
771         DDP_LOCAL_CATA          = 0x00,
772         DDP_TAGGED_ERR          = 0x01,
773         DDP_UNTAGGED_ERR        = 0x02,
774         DDP_LLP                 = 0x03
775 };
776
777 enum c4iw_rdma_ecodes {
778         RDMAP_INV_STAG          = 0x00,
779         RDMAP_BASE_BOUNDS       = 0x01,
780         RDMAP_ACC_VIOL          = 0x02,
781         RDMAP_STAG_NOT_ASSOC    = 0x03,
782         RDMAP_TO_WRAP           = 0x04,
783         RDMAP_INV_VERS          = 0x05,
784         RDMAP_INV_OPCODE        = 0x06,
785         RDMAP_STREAM_CATA       = 0x07,
786         RDMAP_GLOBAL_CATA       = 0x08,
787         RDMAP_CANT_INV_STAG     = 0x09,
788         RDMAP_UNSPECIFIED       = 0xff
789 };
790
791 enum c4iw_ddp_ecodes {
792         DDPT_INV_STAG           = 0x00,
793         DDPT_BASE_BOUNDS        = 0x01,
794         DDPT_STAG_NOT_ASSOC     = 0x02,
795         DDPT_TO_WRAP            = 0x03,
796         DDPT_INV_VERS           = 0x04,
797         DDPU_INV_QN             = 0x01,
798         DDPU_INV_MSN_NOBUF      = 0x02,
799         DDPU_INV_MSN_RANGE      = 0x03,
800         DDPU_INV_MO             = 0x04,
801         DDPU_MSG_TOOBIG         = 0x05,
802         DDPU_INV_VERS           = 0x06
803 };
804
805 enum c4iw_mpa_ecodes {
806         MPA_CRC_ERR             = 0x02,
807         MPA_MARKER_ERR          = 0x03,
808         MPA_LOCAL_CATA          = 0x05,
809         MPA_INSUFF_IRD          = 0x06,
810         MPA_NOMATCH_RTR         = 0x07,
811 };
812
813 enum c4iw_ep_state {
814         IDLE = 0,
815         LISTEN,
816         CONNECTING,
817         MPA_REQ_WAIT,
818         MPA_REQ_SENT,
819         MPA_REQ_RCVD,
820         MPA_REP_SENT,
821         FPDU_MODE,
822         ABORTING,
823         CLOSING,
824         MORIBUND,
825         DEAD,
826 };
827
828 enum c4iw_ep_flags {
829         PEER_ABORT_IN_PROGRESS  = 0,
830         ABORT_REQ_IN_PROGRESS   = 1,
831         RELEASE_RESOURCES       = 2,
832         CLOSE_SENT              = 3,
833         TIMEOUT                 = 4,
834         QP_REFERENCED           = 5,
835         STOP_MPA_TIMER          = 7,
836 };
837
838 enum c4iw_ep_history {
839         ACT_OPEN_REQ            = 0,
840         ACT_OFLD_CONN           = 1,
841         ACT_OPEN_RPL            = 2,
842         ACT_ESTAB               = 3,
843         PASS_ACCEPT_REQ         = 4,
844         PASS_ESTAB              = 5,
845         ABORT_UPCALL            = 6,
846         ESTAB_UPCALL            = 7,
847         CLOSE_UPCALL            = 8,
848         ULP_ACCEPT              = 9,
849         ULP_REJECT              = 10,
850         TIMEDOUT                = 11,
851         PEER_ABORT              = 12,
852         PEER_CLOSE              = 13,
853         CONNREQ_UPCALL          = 14,
854         ABORT_CONN              = 15,
855         DISCONN_UPCALL          = 16,
856         EP_DISC_CLOSE           = 17,
857         EP_DISC_ABORT           = 18,
858         CONN_RPL_UPCALL         = 19,
859         ACT_RETRY_NOMEM         = 20,
860         ACT_RETRY_INUSE         = 21,
861         CLOSE_CON_RPL           = 22,
862         EP_DISC_FAIL            = 24,
863         QP_REFED                = 25,
864         QP_DEREFED              = 26,
865         CM_ID_REFED             = 27,
866         CM_ID_DEREFED           = 28,
867 };
868
869 enum conn_pre_alloc_buffers {
870         CN_ABORT_REQ_BUF,
871         CN_ABORT_RPL_BUF,
872         CN_CLOSE_CON_REQ_BUF,
873         CN_DESTROY_BUF,
874         CN_FLOWC_BUF,
875         CN_MAX_CON_BUF
876 };
877
878 #define FLOWC_LEN 80
879 union cpl_wr_size {
880         struct cpl_abort_req abrt_req;
881         struct cpl_abort_rpl abrt_rpl;
882         struct fw_ri_wr ri_req;
883         struct cpl_close_con_req close_req;
884         char flowc_buf[FLOWC_LEN];
885 };
886
887 struct c4iw_ep_common {
888         struct iw_cm_id *cm_id;
889         struct c4iw_qp *qp;
890         struct c4iw_dev *dev;
891         struct sk_buff_head ep_skb_list;
892         enum c4iw_ep_state state;
893         struct kref kref;
894         struct mutex mutex;
895         struct sockaddr_storage local_addr;
896         struct sockaddr_storage remote_addr;
897         struct c4iw_wr_wait *wr_waitp;
898         unsigned long flags;
899         unsigned long history;
900 };
901
902 struct c4iw_listen_ep {
903         struct c4iw_ep_common com;
904         unsigned int stid;
905         int backlog;
906 };
907
908 struct c4iw_ep_stats {
909         unsigned connect_neg_adv;
910         unsigned abort_neg_adv;
911 };
912
913 struct c4iw_ep {
914         struct c4iw_ep_common com;
915         struct c4iw_ep *parent_ep;
916         struct timer_list timer;
917         struct list_head entry;
918         unsigned int atid;
919         u32 hwtid;
920         u32 snd_seq;
921         u32 rcv_seq;
922         struct l2t_entry *l2t;
923         struct dst_entry *dst;
924         struct sk_buff *mpa_skb;
925         struct c4iw_mpa_attributes mpa_attr;
926         u8 mpa_pkt[sizeof(struct mpa_message) + MPA_MAX_PRIVATE_DATA];
927         unsigned int mpa_pkt_len;
928         u32 ird;
929         u32 ord;
930         u32 smac_idx;
931         u32 tx_chan;
932         u32 mtu;
933         u16 mss;
934         u16 emss;
935         u16 plen;
936         u16 rss_qid;
937         u16 txq_idx;
938         u16 ctrlq_idx;
939         u8 tos;
940         u8 retry_with_mpa_v1;
941         u8 tried_with_mpa_v1;
942         unsigned int retry_count;
943         int snd_win;
944         int rcv_win;
945         struct c4iw_ep_stats stats;
946 };
947
948 static inline struct c4iw_ep *to_ep(struct iw_cm_id *cm_id)
949 {
950         return cm_id->provider_data;
951 }
952
953 static inline struct c4iw_listen_ep *to_listen_ep(struct iw_cm_id *cm_id)
954 {
955         return cm_id->provider_data;
956 }
957
958 static inline int ocqp_supported(const struct cxgb4_lld_info *infop)
959 {
960 #if defined(__i386__) || defined(__x86_64__) || defined(CONFIG_PPC64)
961         return infop->vr->ocq.size > 0;
962 #else
963         return 0;
964 #endif
965 }
966
967 u32 c4iw_id_alloc(struct c4iw_id_table *alloc);
968 void c4iw_id_free(struct c4iw_id_table *alloc, u32 obj);
969 int c4iw_id_table_alloc(struct c4iw_id_table *alloc, u32 start, u32 num,
970                         u32 reserved, u32 flags);
971 void c4iw_id_table_free(struct c4iw_id_table *alloc);
972
973 typedef int (*c4iw_handler_func)(struct c4iw_dev *dev, struct sk_buff *skb);
974
975 int c4iw_ep_redirect(void *ctx, struct dst_entry *old, struct dst_entry *new,
976                      struct l2t_entry *l2t);
977 void c4iw_put_qpid(struct c4iw_rdev *rdev, u32 qpid,
978                    struct c4iw_dev_ucontext *uctx);
979 u32 c4iw_get_resource(struct c4iw_id_table *id_table);
980 void c4iw_put_resource(struct c4iw_id_table *id_table, u32 entry);
981 int c4iw_init_resource(struct c4iw_rdev *rdev, u32 nr_tpt, u32 nr_pdid);
982 int c4iw_init_ctrl_qp(struct c4iw_rdev *rdev);
983 int c4iw_pblpool_create(struct c4iw_rdev *rdev);
984 int c4iw_rqtpool_create(struct c4iw_rdev *rdev);
985 int c4iw_ocqp_pool_create(struct c4iw_rdev *rdev);
986 void c4iw_pblpool_destroy(struct c4iw_rdev *rdev);
987 void c4iw_rqtpool_destroy(struct c4iw_rdev *rdev);
988 void c4iw_ocqp_pool_destroy(struct c4iw_rdev *rdev);
989 void c4iw_destroy_resource(struct c4iw_resource *rscp);
990 int c4iw_destroy_ctrl_qp(struct c4iw_rdev *rdev);
991 int c4iw_register_device(struct c4iw_dev *dev);
992 void c4iw_unregister_device(struct c4iw_dev *dev);
993 int __init c4iw_cm_init(void);
994 void c4iw_cm_term(void);
995 void c4iw_release_dev_ucontext(struct c4iw_rdev *rdev,
996                                struct c4iw_dev_ucontext *uctx);
997 void c4iw_init_dev_ucontext(struct c4iw_rdev *rdev,
998                             struct c4iw_dev_ucontext *uctx);
999 int c4iw_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
1000 int c4iw_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1001                       struct ib_send_wr **bad_wr);
1002 int c4iw_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1003                       struct ib_recv_wr **bad_wr);
1004 int c4iw_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param);
1005 int c4iw_create_listen(struct iw_cm_id *cm_id, int backlog);
1006 int c4iw_destroy_listen(struct iw_cm_id *cm_id);
1007 int c4iw_accept_cr(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param);
1008 int c4iw_reject_cr(struct iw_cm_id *cm_id, const void *pdata, u8 pdata_len);
1009 void c4iw_qp_add_ref(struct ib_qp *qp);
1010 void c4iw_qp_rem_ref(struct ib_qp *qp);
1011 struct ib_mr *c4iw_alloc_mr(struct ib_pd *pd,
1012                             enum ib_mr_type mr_type,
1013                             u32 max_num_sg);
1014 int c4iw_map_mr_sg(struct ib_mr *ibmr, struct scatterlist *sg, int sg_nents,
1015                    unsigned int *sg_offset);
1016 int c4iw_dealloc_mw(struct ib_mw *mw);
1017 struct ib_mw *c4iw_alloc_mw(struct ib_pd *pd, enum ib_mw_type type,
1018                             struct ib_udata *udata);
1019 struct ib_mr *c4iw_reg_user_mr(struct ib_pd *pd, u64 start,
1020                                            u64 length, u64 virt, int acc,
1021                                            struct ib_udata *udata);
1022 struct ib_mr *c4iw_get_dma_mr(struct ib_pd *pd, int acc);
1023 int c4iw_dereg_mr(struct ib_mr *ib_mr);
1024 int c4iw_destroy_cq(struct ib_cq *ib_cq);
1025 struct ib_cq *c4iw_create_cq(struct ib_device *ibdev,
1026                              const struct ib_cq_init_attr *attr,
1027                              struct ib_ucontext *ib_context,
1028                              struct ib_udata *udata);
1029 int c4iw_resize_cq(struct ib_cq *cq, int cqe, struct ib_udata *udata);
1030 int c4iw_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags);
1031 int c4iw_destroy_qp(struct ib_qp *ib_qp);
1032 struct ib_qp *c4iw_create_qp(struct ib_pd *pd,
1033                              struct ib_qp_init_attr *attrs,
1034                              struct ib_udata *udata);
1035 int c4iw_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1036                                  int attr_mask, struct ib_udata *udata);
1037 int c4iw_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1038                      int attr_mask, struct ib_qp_init_attr *init_attr);
1039 struct ib_qp *c4iw_get_qp(struct ib_device *dev, int qpn);
1040 u32 c4iw_rqtpool_alloc(struct c4iw_rdev *rdev, int size);
1041 void c4iw_rqtpool_free(struct c4iw_rdev *rdev, u32 addr, int size);
1042 u32 c4iw_pblpool_alloc(struct c4iw_rdev *rdev, int size);
1043 void c4iw_pblpool_free(struct c4iw_rdev *rdev, u32 addr, int size);
1044 u32 c4iw_ocqp_pool_alloc(struct c4iw_rdev *rdev, int size);
1045 void c4iw_ocqp_pool_free(struct c4iw_rdev *rdev, u32 addr, int size);
1046 void c4iw_flush_hw_cq(struct c4iw_cq *chp);
1047 void c4iw_count_rcqes(struct t4_cq *cq, struct t4_wq *wq, int *count);
1048 int c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp);
1049 int c4iw_flush_rq(struct t4_wq *wq, struct t4_cq *cq, int count);
1050 int c4iw_flush_sq(struct c4iw_qp *qhp);
1051 int c4iw_ev_handler(struct c4iw_dev *rnicp, u32 qid);
1052 u16 c4iw_rqes_posted(struct c4iw_qp *qhp);
1053 int c4iw_post_terminate(struct c4iw_qp *qhp, struct t4_cqe *err_cqe);
1054 u32 c4iw_get_cqid(struct c4iw_rdev *rdev, struct c4iw_dev_ucontext *uctx);
1055 void c4iw_put_cqid(struct c4iw_rdev *rdev, u32 qid,
1056                 struct c4iw_dev_ucontext *uctx);
1057 u32 c4iw_get_qpid(struct c4iw_rdev *rdev, struct c4iw_dev_ucontext *uctx);
1058 void c4iw_put_qpid(struct c4iw_rdev *rdev, u32 qid,
1059                 struct c4iw_dev_ucontext *uctx);
1060 void c4iw_ev_dispatch(struct c4iw_dev *dev, struct t4_cqe *err_cqe);
1061
1062 extern struct cxgb4_client t4c_client;
1063 extern c4iw_handler_func c4iw_handlers[NUM_CPL_CMDS];
1064 void __iomem *c4iw_bar2_addrs(struct c4iw_rdev *rdev, unsigned int qid,
1065                               enum cxgb4_bar2_qtype qtype,
1066                               unsigned int *pbar2_qid, u64 *pbar2_pa);
1067 extern void c4iw_log_wr_stats(struct t4_wq *wq, struct t4_cqe *cqe);
1068 extern int c4iw_wr_log;
1069 extern int db_fc_threshold;
1070 extern int db_coalescing_threshold;
1071 extern int use_dsgl;
1072 void c4iw_invalidate_mr(struct c4iw_dev *rhp, u32 rkey);
1073 struct c4iw_wr_wait *c4iw_alloc_wr_wait(gfp_t gfp);
1074
1075 #endif