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