blob: f7b915378343dc17690f88c44e22f7392348b5b6 [file] [log] [blame]
Steve Wiseb038ced2007-02-12 16:16:18 -08001/*
2 * Copyright (c) 2006 Chelsio, Inc. All rights reserved.
Steve Wiseb038ced2007-02-12 16:16:18 -08003 *
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 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32#include <linux/module.h>
33#include <linux/moduleparam.h>
34#include <linux/device.h>
35#include <linux/netdevice.h>
36#include <linux/etherdevice.h>
37#include <linux/delay.h>
38#include <linux/errno.h>
39#include <linux/list.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040040#include <linux/sched.h>
Steve Wiseb038ced2007-02-12 16:16:18 -080041#include <linux/spinlock.h>
42#include <linux/ethtool.h>
Steve Wise7f049f22007-11-26 11:28:44 -060043#include <linux/rtnetlink.h>
Steve Wise7ab1a2b2009-05-27 14:42:36 -070044#include <linux/inetdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/slab.h>
Steve Wiseb038ced2007-02-12 16:16:18 -080046
47#include <asm/io.h>
48#include <asm/irq.h>
49#include <asm/byteorder.h>
50
51#include <rdma/iw_cm.h>
52#include <rdma/ib_verbs.h>
53#include <rdma/ib_smi.h>
Roland Dreierf7c6a7b2007-03-04 16:15:11 -080054#include <rdma/ib_umem.h>
Steve Wiseb038ced2007-02-12 16:16:18 -080055#include <rdma/ib_user_verbs.h>
56
57#include "cxio_hal.h"
58#include "iwch.h"
59#include "iwch_provider.h"
60#include "iwch_cm.h"
61#include "iwch_user.h"
Steve Wise14cc1802008-07-14 23:48:48 -070062#include "common.h"
Steve Wiseb038ced2007-02-12 16:16:18 -080063
Steve Wiseb038ced2007-02-12 16:16:18 -080064static struct ib_ah *iwch_ah_create(struct ib_pd *pd,
65 struct ib_ah_attr *ah_attr)
66{
67 return ERR_PTR(-ENOSYS);
68}
69
70static int iwch_ah_destroy(struct ib_ah *ah)
71{
72 return -ENOSYS;
73}
74
75static int iwch_multicast_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
76{
77 return -ENOSYS;
78}
79
80static int iwch_multicast_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
81{
82 return -ENOSYS;
83}
84
85static int iwch_process_mad(struct ib_device *ibdev,
86 int mad_flags,
87 u8 port_num,
Ira Weinya97e2d82015-05-31 17:15:30 -040088 const struct ib_wc *in_wc,
89 const struct ib_grh *in_grh,
Ira Weiny4cd7c942015-06-06 14:38:31 -040090 const struct ib_mad_hdr *in_mad,
91 size_t in_mad_size,
92 struct ib_mad_hdr *out_mad,
93 size_t *out_mad_size,
94 u16 *out_mad_pkey_index)
Steve Wiseb038ced2007-02-12 16:16:18 -080095{
96 return -ENOSYS;
97}
98
99static int iwch_dealloc_ucontext(struct ib_ucontext *context)
100{
101 struct iwch_dev *rhp = to_iwch_dev(context->device);
102 struct iwch_ucontext *ucontext = to_iwch_ucontext(context);
103 struct iwch_mm_entry *mm, *tmp;
104
Harvey Harrison33718362008-04-16 21:01:10 -0700105 PDBG("%s context %p\n", __func__, context);
Steve Wiseb038ced2007-02-12 16:16:18 -0800106 list_for_each_entry_safe(mm, tmp, &ucontext->mmaps, entry)
107 kfree(mm);
108 cxio_release_ucontext(&rhp->rdev, &ucontext->uctx);
109 kfree(ucontext);
110 return 0;
111}
112
113static struct ib_ucontext *iwch_alloc_ucontext(struct ib_device *ibdev,
114 struct ib_udata *udata)
115{
116 struct iwch_ucontext *context;
117 struct iwch_dev *rhp = to_iwch_dev(ibdev);
118
Harvey Harrison33718362008-04-16 21:01:10 -0700119 PDBG("%s ibdev %p\n", __func__, ibdev);
Steve Wiseb038ced2007-02-12 16:16:18 -0800120 context = kzalloc(sizeof(*context), GFP_KERNEL);
121 if (!context)
122 return ERR_PTR(-ENOMEM);
123 cxio_init_ucontext(&rhp->rdev, &context->uctx);
124 INIT_LIST_HEAD(&context->mmaps);
125 spin_lock_init(&context->mmap_lock);
126 return &context->ibucontext;
127}
128
129static int iwch_destroy_cq(struct ib_cq *ib_cq)
130{
131 struct iwch_cq *chp;
132
Harvey Harrison33718362008-04-16 21:01:10 -0700133 PDBG("%s ib_cq %p\n", __func__, ib_cq);
Steve Wiseb038ced2007-02-12 16:16:18 -0800134 chp = to_iwch_cq(ib_cq);
135
136 remove_handle(chp->rhp, &chp->rhp->cqidr, chp->cq.cqid);
137 atomic_dec(&chp->refcnt);
138 wait_event(chp->wait, !atomic_read(&chp->refcnt));
139
140 cxio_destroy_cq(&chp->rhp->rdev, &chp->cq);
141 kfree(chp);
142 return 0;
143}
144
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300145static struct ib_cq *iwch_create_cq(struct ib_device *ibdev,
146 const struct ib_cq_init_attr *attr,
147 struct ib_ucontext *ib_context,
148 struct ib_udata *udata)
Steve Wiseb038ced2007-02-12 16:16:18 -0800149{
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300150 int entries = attr->cqe;
Steve Wiseb038ced2007-02-12 16:16:18 -0800151 struct iwch_dev *rhp;
152 struct iwch_cq *chp;
153 struct iwch_create_cq_resp uresp;
154 struct iwch_create_cq_req ureq;
155 struct iwch_ucontext *ucontext = NULL;
Steve Wiseb9551502010-10-21 12:37:06 +0000156 static int warned;
157 size_t resplen;
Steve Wiseb038ced2007-02-12 16:16:18 -0800158
Harvey Harrison33718362008-04-16 21:01:10 -0700159 PDBG("%s ib_dev %p entries %d\n", __func__, ibdev, entries);
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300160 if (attr->flags)
161 return ERR_PTR(-EINVAL);
162
Steve Wiseb038ced2007-02-12 16:16:18 -0800163 rhp = to_iwch_dev(ibdev);
164 chp = kzalloc(sizeof(*chp), GFP_KERNEL);
165 if (!chp)
166 return ERR_PTR(-ENOMEM);
167
168 if (ib_context) {
169 ucontext = to_iwch_ucontext(ib_context);
170 if (!t3a_device(rhp)) {
171 if (ib_copy_from_udata(&ureq, udata, sizeof (ureq))) {
172 kfree(chp);
173 return ERR_PTR(-EFAULT);
174 }
175 chp->user_rptr_addr = (u32 __user *)(unsigned long)ureq.user_rptr_addr;
176 }
177 }
178
179 if (t3a_device(rhp)) {
180
181 /*
182 * T3A: Add some fluff to handle extra CQEs inserted
183 * for various errors.
184 * Additional CQE possibilities:
185 * TERMINATE,
186 * incoming RDMA WRITE Failures
187 * incoming RDMA READ REQUEST FAILUREs
188 * NOTE: We cannot ensure the CQ won't overflow.
189 */
190 entries += 16;
191 }
192 entries = roundup_pow_of_two(entries);
193 chp->cq.size_log2 = ilog2(entries);
194
Steve Wise5279d3a2010-01-27 20:22:34 +0000195 if (cxio_create_cq(&rhp->rdev, &chp->cq, !ucontext)) {
Steve Wiseb038ced2007-02-12 16:16:18 -0800196 kfree(chp);
197 return ERR_PTR(-ENOMEM);
198 }
199 chp->rhp = rhp;
Jon Mason4fa45722008-03-09 13:54:12 -0700200 chp->ibcq.cqe = 1 << chp->cq.size_log2;
Steve Wiseb038ced2007-02-12 16:16:18 -0800201 spin_lock_init(&chp->lock);
Kumar Sanghvif7cc25d2011-10-24 21:20:22 +0530202 spin_lock_init(&chp->comp_handler_lock);
Steve Wiseb038ced2007-02-12 16:16:18 -0800203 atomic_set(&chp->refcnt, 1);
204 init_waitqueue_head(&chp->wait);
Steve Wise13a23932009-09-09 11:25:55 -0700205 if (insert_handle(rhp, &rhp->cqidr, chp, chp->cq.cqid)) {
206 cxio_destroy_cq(&chp->rhp->rdev, &chp->cq);
207 kfree(chp);
208 return ERR_PTR(-ENOMEM);
209 }
Steve Wiseb038ced2007-02-12 16:16:18 -0800210
211 if (ucontext) {
212 struct iwch_mm_entry *mm;
213
214 mm = kmalloc(sizeof *mm, GFP_KERNEL);
215 if (!mm) {
216 iwch_destroy_cq(&chp->ibcq);
217 return ERR_PTR(-ENOMEM);
218 }
219 uresp.cqid = chp->cq.cqid;
220 uresp.size_log2 = chp->cq.size_log2;
221 spin_lock(&ucontext->mmap_lock);
222 uresp.key = ucontext->key;
223 ucontext->key += PAGE_SIZE;
224 spin_unlock(&ucontext->mmap_lock);
Steve Wiseb9551502010-10-21 12:37:06 +0000225 mm->key = uresp.key;
226 mm->addr = virt_to_phys(chp->cq.queue);
227 if (udata->outlen < sizeof uresp) {
228 if (!warned++)
229 printk(KERN_WARNING MOD "Warning - "
230 "downlevel libcxgb3 (non-fatal).\n");
231 mm->len = PAGE_ALIGN((1UL << uresp.size_log2) *
232 sizeof(struct t3_cqe));
233 resplen = sizeof(struct iwch_create_cq_resp_v0);
234 } else {
235 mm->len = PAGE_ALIGN(((1UL << uresp.size_log2) + 1) *
236 sizeof(struct t3_cqe));
237 uresp.memsize = mm->len;
Dan Carpenter246fcdb2013-07-29 22:19:14 +0300238 uresp.reserved = 0;
Steve Wiseb9551502010-10-21 12:37:06 +0000239 resplen = sizeof uresp;
240 }
241 if (ib_copy_to_udata(udata, &uresp, resplen)) {
Steve Wiseb038ced2007-02-12 16:16:18 -0800242 kfree(mm);
243 iwch_destroy_cq(&chp->ibcq);
244 return ERR_PTR(-EFAULT);
245 }
Steve Wiseb038ced2007-02-12 16:16:18 -0800246 insert_mmap(ucontext, mm);
247 }
248 PDBG("created cqid 0x%0x chp %p size 0x%0x, dma_addr 0x%0llx\n",
249 chp->cq.cqid, chp, (1 << chp->cq.size_log2),
250 (unsigned long long) chp->cq.dma_addr);
251 return &chp->ibcq;
252}
253
254static int iwch_resize_cq(struct ib_cq *cq, int cqe, struct ib_udata *udata)
255{
256#ifdef notyet
257 struct iwch_cq *chp = to_iwch_cq(cq);
258 struct t3_cq oldcq, newcq;
259 int ret;
260
Harvey Harrison33718362008-04-16 21:01:10 -0700261 PDBG("%s ib_cq %p cqe %d\n", __func__, cq, cqe);
Steve Wiseb038ced2007-02-12 16:16:18 -0800262
263 /* We don't downsize... */
264 if (cqe <= cq->cqe)
265 return 0;
266
267 /* create new t3_cq with new size */
268 cqe = roundup_pow_of_two(cqe+1);
269 newcq.size_log2 = ilog2(cqe);
270
271 /* Dont allow resize to less than the current wce count */
272 if (cqe < Q_COUNT(chp->cq.rptr, chp->cq.wptr)) {
273 return -ENOMEM;
274 }
275
276 /* Quiesce all QPs using this CQ */
277 ret = iwch_quiesce_qps(chp);
278 if (ret) {
279 return ret;
280 }
281
282 ret = cxio_create_cq(&chp->rhp->rdev, &newcq);
283 if (ret) {
284 return ret;
285 }
286
287 /* copy CQEs */
288 memcpy(newcq.queue, chp->cq.queue, (1 << chp->cq.size_log2) *
289 sizeof(struct t3_cqe));
290
291 /* old iwch_qp gets new t3_cq but keeps old cqid */
292 oldcq = chp->cq;
293 chp->cq = newcq;
294 chp->cq.cqid = oldcq.cqid;
295
296 /* resize new t3_cq to update the HW context */
297 ret = cxio_resize_cq(&chp->rhp->rdev, &chp->cq);
298 if (ret) {
299 chp->cq = oldcq;
300 return ret;
301 }
302 chp->ibcq.cqe = (1<<chp->cq.size_log2) - 1;
303
304 /* destroy old t3_cq */
305 oldcq.cqid = newcq.cqid;
306 ret = cxio_destroy_cq(&chp->rhp->rdev, &oldcq);
307 if (ret) {
308 printk(KERN_ERR MOD "%s - cxio_destroy_cq failed %d\n",
Harvey Harrison33718362008-04-16 21:01:10 -0700309 __func__, ret);
Steve Wiseb038ced2007-02-12 16:16:18 -0800310 }
311
312 /* add user hooks here */
313
314 /* resume qps */
315 ret = iwch_resume_qps(chp);
316 return ret;
317#else
318 return -ENOSYS;
319#endif
320}
321
Roland Dreiered23a722007-05-06 21:02:48 -0700322static int iwch_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags)
Steve Wiseb038ced2007-02-12 16:16:18 -0800323{
324 struct iwch_dev *rhp;
325 struct iwch_cq *chp;
326 enum t3_cq_opcode cq_op;
327 int err;
328 unsigned long flag;
329 u32 rptr;
330
331 chp = to_iwch_cq(ibcq);
332 rhp = chp->rhp;
Roland Dreiered23a722007-05-06 21:02:48 -0700333 if ((flags & IB_CQ_SOLICITED_MASK) == IB_CQ_SOLICITED)
Steve Wiseb038ced2007-02-12 16:16:18 -0800334 cq_op = CQ_ARM_SE;
335 else
336 cq_op = CQ_ARM_AN;
337 if (chp->user_rptr_addr) {
338 if (get_user(rptr, chp->user_rptr_addr))
339 return -EFAULT;
340 spin_lock_irqsave(&chp->lock, flag);
341 chp->cq.rptr = rptr;
342 } else
343 spin_lock_irqsave(&chp->lock, flag);
Harvey Harrison33718362008-04-16 21:01:10 -0700344 PDBG("%s rptr 0x%x\n", __func__, chp->cq.rptr);
Steve Wiseb038ced2007-02-12 16:16:18 -0800345 err = cxio_hal_cq_op(&rhp->rdev, &chp->cq, cq_op, 0);
346 spin_unlock_irqrestore(&chp->lock, flag);
Roland Dreiered23a722007-05-06 21:02:48 -0700347 if (err < 0)
Steve Wiseb038ced2007-02-12 16:16:18 -0800348 printk(KERN_ERR MOD "Error %d rearming CQID 0x%x\n", err,
349 chp->cq.cqid);
Roland Dreiered23a722007-05-06 21:02:48 -0700350 if (err > 0 && !(flags & IB_CQ_REPORT_MISSED_EVENTS))
351 err = 0;
Steve Wiseb038ced2007-02-12 16:16:18 -0800352 return err;
353}
354
355static int iwch_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
356{
357 int len = vma->vm_end - vma->vm_start;
358 u32 key = vma->vm_pgoff << PAGE_SHIFT;
359 struct cxio_rdev *rdev_p;
360 int ret = 0;
361 struct iwch_mm_entry *mm;
362 struct iwch_ucontext *ucontext;
Steve Wiseaeb100e2007-03-02 16:06:36 -0600363 u64 addr;
Steve Wiseb038ced2007-02-12 16:16:18 -0800364
Harvey Harrison33718362008-04-16 21:01:10 -0700365 PDBG("%s pgoff 0x%lx key 0x%x len %d\n", __func__, vma->vm_pgoff,
Steve Wiseb038ced2007-02-12 16:16:18 -0800366 key, len);
367
368 if (vma->vm_start & (PAGE_SIZE-1)) {
369 return -EINVAL;
370 }
371
372 rdev_p = &(to_iwch_dev(context->device)->rdev);
373 ucontext = to_iwch_ucontext(context);
374
375 mm = remove_mmap(ucontext, key, len);
376 if (!mm)
377 return -EINVAL;
Steve Wiseaeb100e2007-03-02 16:06:36 -0600378 addr = mm->addr;
Steve Wiseb038ced2007-02-12 16:16:18 -0800379 kfree(mm);
380
Steve Wiseaeb100e2007-03-02 16:06:36 -0600381 if ((addr >= rdev_p->rnic_info.udbell_physbase) &&
382 (addr < (rdev_p->rnic_info.udbell_physbase +
Steve Wiseb038ced2007-02-12 16:16:18 -0800383 rdev_p->rnic_info.udbell_len))) {
384
385 /*
386 * Map T3 DB register.
387 */
388 if (vma->vm_flags & VM_READ) {
389 return -EPERM;
390 }
391
392 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
393 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND;
394 vma->vm_flags &= ~VM_MAYREAD;
395 ret = io_remap_pfn_range(vma, vma->vm_start,
Steve Wiseaeb100e2007-03-02 16:06:36 -0600396 addr >> PAGE_SHIFT,
Steve Wiseb038ced2007-02-12 16:16:18 -0800397 len, vma->vm_page_prot);
398 } else {
399
400 /*
401 * Map WQ or CQ contig dma memory...
402 */
403 ret = remap_pfn_range(vma, vma->vm_start,
Steve Wiseaeb100e2007-03-02 16:06:36 -0600404 addr >> PAGE_SHIFT,
Steve Wiseb038ced2007-02-12 16:16:18 -0800405 len, vma->vm_page_prot);
406 }
407
408 return ret;
409}
410
411static int iwch_deallocate_pd(struct ib_pd *pd)
412{
413 struct iwch_dev *rhp;
414 struct iwch_pd *php;
415
416 php = to_iwch_pd(pd);
417 rhp = php->rhp;
Harvey Harrison33718362008-04-16 21:01:10 -0700418 PDBG("%s ibpd %p pdid 0x%x\n", __func__, pd, php->pdid);
Steve Wiseb038ced2007-02-12 16:16:18 -0800419 cxio_hal_put_pdid(rhp->rdev.rscp, php->pdid);
420 kfree(php);
421 return 0;
422}
423
424static struct ib_pd *iwch_allocate_pd(struct ib_device *ibdev,
425 struct ib_ucontext *context,
426 struct ib_udata *udata)
427{
428 struct iwch_pd *php;
429 u32 pdid;
430 struct iwch_dev *rhp;
431
Harvey Harrison33718362008-04-16 21:01:10 -0700432 PDBG("%s ibdev %p\n", __func__, ibdev);
Steve Wiseb038ced2007-02-12 16:16:18 -0800433 rhp = (struct iwch_dev *) ibdev;
434 pdid = cxio_hal_get_pdid(rhp->rdev.rscp);
435 if (!pdid)
436 return ERR_PTR(-EINVAL);
437 php = kzalloc(sizeof(*php), GFP_KERNEL);
438 if (!php) {
439 cxio_hal_put_pdid(rhp->rdev.rscp, pdid);
440 return ERR_PTR(-ENOMEM);
441 }
442 php->pdid = pdid;
443 php->rhp = rhp;
444 if (context) {
445 if (ib_copy_to_udata(udata, &php->pdid, sizeof (__u32))) {
446 iwch_deallocate_pd(&php->ibpd);
447 return ERR_PTR(-EFAULT);
448 }
449 }
Harvey Harrison33718362008-04-16 21:01:10 -0700450 PDBG("%s pdid 0x%0x ptr 0x%p\n", __func__, pdid, php);
Steve Wiseb038ced2007-02-12 16:16:18 -0800451 return &php->ibpd;
452}
453
454static int iwch_dereg_mr(struct ib_mr *ib_mr)
455{
456 struct iwch_dev *rhp;
457 struct iwch_mr *mhp;
458 u32 mmid;
459
Harvey Harrison33718362008-04-16 21:01:10 -0700460 PDBG("%s ib_mr %p\n", __func__, ib_mr);
Steve Wiseb038ced2007-02-12 16:16:18 -0800461 /* There can be no memory windows */
462 if (atomic_read(&ib_mr->usecnt))
463 return -EINVAL;
464
465 mhp = to_iwch_mr(ib_mr);
Sagi Grimberg14fb4172015-10-13 19:11:29 +0300466 kfree(mhp->pages);
Steve Wiseb038ced2007-02-12 16:16:18 -0800467 rhp = mhp->rhp;
468 mmid = mhp->attr.stag >> 8;
469 cxio_dereg_mem(&rhp->rdev, mhp->attr.stag, mhp->attr.pbl_size,
470 mhp->attr.pbl_addr);
Roland Dreier273748c2008-05-06 15:56:22 -0700471 iwch_free_pbl(mhp);
Steve Wiseb038ced2007-02-12 16:16:18 -0800472 remove_handle(rhp, &rhp->mmidr, mmid);
473 if (mhp->kva)
474 kfree((void *) (unsigned long) mhp->kva);
Roland Dreierf7c6a7b2007-03-04 16:15:11 -0800475 if (mhp->umem)
476 ib_umem_release(mhp->umem);
Harvey Harrison33718362008-04-16 21:01:10 -0700477 PDBG("%s mmid 0x%x ptr %p\n", __func__, mmid, mhp);
Steve Wiseb038ced2007-02-12 16:16:18 -0800478 kfree(mhp);
479 return 0;
480}
481
482static struct ib_mr *iwch_register_phys_mem(struct ib_pd *pd,
483 struct ib_phys_buf *buffer_list,
484 int num_phys_buf,
485 int acc,
486 u64 *iova_start)
487{
488 __be64 *page_list;
489 int shift;
490 u64 total_size;
491 int npages;
492 struct iwch_dev *rhp;
493 struct iwch_pd *php;
494 struct iwch_mr *mhp;
495 int ret;
496
Harvey Harrison33718362008-04-16 21:01:10 -0700497 PDBG("%s ib_pd %p\n", __func__, pd);
Steve Wiseb038ced2007-02-12 16:16:18 -0800498 php = to_iwch_pd(pd);
499 rhp = php->rhp;
500
Steve Wiseb038ced2007-02-12 16:16:18 -0800501 mhp = kzalloc(sizeof(*mhp), GFP_KERNEL);
502 if (!mhp)
503 return ERR_PTR(-ENOMEM);
504
Roland Dreier273748c2008-05-06 15:56:22 -0700505 mhp->rhp = rhp;
506
Steve Wiseb038ced2007-02-12 16:16:18 -0800507 /* First check that we have enough alignment */
508 if ((*iova_start & ~PAGE_MASK) != (buffer_list[0].addr & ~PAGE_MASK)) {
509 ret = -EINVAL;
510 goto err;
511 }
512
513 if (num_phys_buf > 1 &&
514 ((buffer_list[0].addr + buffer_list[0].size) & ~PAGE_MASK)) {
515 ret = -EINVAL;
516 goto err;
517 }
518
519 ret = build_phys_page_list(buffer_list, num_phys_buf, iova_start,
520 &total_size, &npages, &shift, &page_list);
521 if (ret)
522 goto err;
523
Roland Dreier273748c2008-05-06 15:56:22 -0700524 ret = iwch_alloc_pbl(mhp, npages);
525 if (ret) {
526 kfree(page_list);
527 goto err_pbl;
528 }
529
530 ret = iwch_write_pbl(mhp, page_list, npages, 0);
531 kfree(page_list);
532 if (ret)
533 goto err_pbl;
534
Steve Wiseb038ced2007-02-12 16:16:18 -0800535 mhp->attr.pdid = php->pdid;
536 mhp->attr.zbva = 0;
537
Steve Wisee64518f2007-03-06 14:44:07 -0600538 mhp->attr.perms = iwch_ib_to_tpt_access(acc);
Steve Wiseb038ced2007-02-12 16:16:18 -0800539 mhp->attr.va_fbo = *iova_start;
540 mhp->attr.page_size = shift - 12;
541
542 mhp->attr.len = (u32) total_size;
543 mhp->attr.pbl_size = npages;
Roland Dreier273748c2008-05-06 15:56:22 -0700544 ret = iwch_register_mem(rhp, php, mhp, shift);
545 if (ret)
546 goto err_pbl;
547
Steve Wiseb038ced2007-02-12 16:16:18 -0800548 return &mhp->ibmr;
Roland Dreier273748c2008-05-06 15:56:22 -0700549
550err_pbl:
551 iwch_free_pbl(mhp);
552
Steve Wiseb038ced2007-02-12 16:16:18 -0800553err:
554 kfree(mhp);
555 return ERR_PTR(ret);
556
557}
558
559static int iwch_reregister_phys_mem(struct ib_mr *mr,
560 int mr_rereg_mask,
561 struct ib_pd *pd,
562 struct ib_phys_buf *buffer_list,
563 int num_phys_buf,
564 int acc, u64 * iova_start)
565{
566
567 struct iwch_mr mh, *mhp;
568 struct iwch_pd *php;
569 struct iwch_dev *rhp;
Steve Wiseb038ced2007-02-12 16:16:18 -0800570 __be64 *page_list = NULL;
571 int shift = 0;
572 u64 total_size;
Cong Dingbc4ba942013-02-04 22:18:06 +0000573 int npages = 0;
Steve Wiseb038ced2007-02-12 16:16:18 -0800574 int ret;
575
Harvey Harrison33718362008-04-16 21:01:10 -0700576 PDBG("%s ib_mr %p ib_pd %p\n", __func__, mr, pd);
Steve Wiseb038ced2007-02-12 16:16:18 -0800577
578 /* There can be no memory windows */
579 if (atomic_read(&mr->usecnt))
580 return -EINVAL;
581
582 mhp = to_iwch_mr(mr);
583 rhp = mhp->rhp;
584 php = to_iwch_pd(mr->pd);
585
586 /* make sure we are on the same adapter */
587 if (rhp != php->rhp)
588 return -EINVAL;
589
Steve Wiseb038ced2007-02-12 16:16:18 -0800590 memcpy(&mh, mhp, sizeof *mhp);
591
592 if (mr_rereg_mask & IB_MR_REREG_PD)
593 php = to_iwch_pd(pd);
594 if (mr_rereg_mask & IB_MR_REREG_ACCESS)
Steve Wisee64518f2007-03-06 14:44:07 -0600595 mh.attr.perms = iwch_ib_to_tpt_access(acc);
Steve Wised6013472007-03-22 10:38:20 -0500596 if (mr_rereg_mask & IB_MR_REREG_TRANS) {
Steve Wiseb038ced2007-02-12 16:16:18 -0800597 ret = build_phys_page_list(buffer_list, num_phys_buf,
598 iova_start,
599 &total_size, &npages,
600 &shift, &page_list);
Steve Wised6013472007-03-22 10:38:20 -0500601 if (ret)
602 return ret;
603 }
Steve Wiseb038ced2007-02-12 16:16:18 -0800604
Roland Dreier273748c2008-05-06 15:56:22 -0700605 ret = iwch_reregister_mem(rhp, php, &mh, shift, npages);
Steve Wiseb038ced2007-02-12 16:16:18 -0800606 kfree(page_list);
607 if (ret) {
608 return ret;
609 }
610 if (mr_rereg_mask & IB_MR_REREG_PD)
611 mhp->attr.pdid = php->pdid;
612 if (mr_rereg_mask & IB_MR_REREG_ACCESS)
Steve Wisee64518f2007-03-06 14:44:07 -0600613 mhp->attr.perms = iwch_ib_to_tpt_access(acc);
Steve Wiseb038ced2007-02-12 16:16:18 -0800614 if (mr_rereg_mask & IB_MR_REREG_TRANS) {
615 mhp->attr.zbva = 0;
616 mhp->attr.va_fbo = *iova_start;
617 mhp->attr.page_size = shift - 12;
618 mhp->attr.len = (u32) total_size;
619 mhp->attr.pbl_size = npages;
620 }
621
622 return 0;
623}
624
625
Roland Dreierf7c6a7b2007-03-04 16:15:11 -0800626static struct ib_mr *iwch_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
627 u64 virt, int acc, struct ib_udata *udata)
Steve Wiseb038ced2007-02-12 16:16:18 -0800628{
629 __be64 *pages;
630 int shift, n, len;
Yishai Hadaseeb84612014-01-28 13:40:15 +0200631 int i, k, entry;
Steve Wiseb038ced2007-02-12 16:16:18 -0800632 int err = 0;
Steve Wiseb038ced2007-02-12 16:16:18 -0800633 struct iwch_dev *rhp;
634 struct iwch_pd *php;
635 struct iwch_mr *mhp;
636 struct iwch_reg_user_mr_resp uresp;
Yishai Hadaseeb84612014-01-28 13:40:15 +0200637 struct scatterlist *sg;
Harvey Harrison33718362008-04-16 21:01:10 -0700638 PDBG("%s ib_pd %p\n", __func__, pd);
Steve Wiseb038ced2007-02-12 16:16:18 -0800639
640 php = to_iwch_pd(pd);
641 rhp = php->rhp;
642 mhp = kzalloc(sizeof(*mhp), GFP_KERNEL);
643 if (!mhp)
644 return ERR_PTR(-ENOMEM);
645
Roland Dreier273748c2008-05-06 15:56:22 -0700646 mhp->rhp = rhp;
647
Arthur Kepnercb9fbc52008-04-29 01:00:34 -0700648 mhp->umem = ib_umem_get(pd->uobject->context, start, length, acc, 0);
Roland Dreierf7c6a7b2007-03-04 16:15:11 -0800649 if (IS_ERR(mhp->umem)) {
650 err = PTR_ERR(mhp->umem);
651 kfree(mhp);
652 return ERR_PTR(err);
653 }
654
655 shift = ffs(mhp->umem->page_size) - 1;
656
Yishai Hadaseeb84612014-01-28 13:40:15 +0200657 n = mhp->umem->nmap;
Steve Wiseb038ced2007-02-12 16:16:18 -0800658
Roland Dreier273748c2008-05-06 15:56:22 -0700659 err = iwch_alloc_pbl(mhp, n);
660 if (err)
661 goto err;
662
663 pages = (__be64 *) __get_free_page(GFP_KERNEL);
Steve Wiseb038ced2007-02-12 16:16:18 -0800664 if (!pages) {
665 err = -ENOMEM;
Roland Dreier273748c2008-05-06 15:56:22 -0700666 goto err_pbl;
Steve Wiseb038ced2007-02-12 16:16:18 -0800667 }
668
Steve Wiseb038ced2007-02-12 16:16:18 -0800669 i = n = 0;
670
Yishai Hadaseeb84612014-01-28 13:40:15 +0200671 for_each_sg(mhp->umem->sg_head.sgl, sg, mhp->umem->nmap, entry) {
672 len = sg_dma_len(sg) >> shift;
Steve Wiseb038ced2007-02-12 16:16:18 -0800673 for (k = 0; k < len; ++k) {
Yishai Hadaseeb84612014-01-28 13:40:15 +0200674 pages[i++] = cpu_to_be64(sg_dma_address(sg) +
Roland Dreierf7c6a7b2007-03-04 16:15:11 -0800675 mhp->umem->page_size * k);
Roland Dreier273748c2008-05-06 15:56:22 -0700676 if (i == PAGE_SIZE / sizeof *pages) {
677 err = iwch_write_pbl(mhp, pages, i, n);
678 if (err)
679 goto pbl_done;
680 n += i;
681 i = 0;
682 }
Steve Wiseb038ced2007-02-12 16:16:18 -0800683 }
Yishai Hadaseeb84612014-01-28 13:40:15 +0200684 }
Steve Wiseb038ced2007-02-12 16:16:18 -0800685
Roland Dreier273748c2008-05-06 15:56:22 -0700686 if (i)
687 err = iwch_write_pbl(mhp, pages, i, n);
688
689pbl_done:
690 free_page((unsigned long) pages);
691 if (err)
692 goto err_pbl;
693
Steve Wiseb038ced2007-02-12 16:16:18 -0800694 mhp->attr.pdid = php->pdid;
695 mhp->attr.zbva = 0;
Steve Wisee64518f2007-03-06 14:44:07 -0600696 mhp->attr.perms = iwch_ib_to_tpt_access(acc);
Roland Dreierf7c6a7b2007-03-04 16:15:11 -0800697 mhp->attr.va_fbo = virt;
Steve Wiseb038ced2007-02-12 16:16:18 -0800698 mhp->attr.page_size = shift - 12;
Roland Dreierf7c6a7b2007-03-04 16:15:11 -0800699 mhp->attr.len = (u32) length;
Roland Dreier273748c2008-05-06 15:56:22 -0700700
701 err = iwch_register_mem(rhp, php, mhp, shift);
Steve Wiseb038ced2007-02-12 16:16:18 -0800702 if (err)
Roland Dreier273748c2008-05-06 15:56:22 -0700703 goto err_pbl;
Steve Wiseb038ced2007-02-12 16:16:18 -0800704
Steve Wise8176d292008-01-24 16:30:16 -0600705 if (udata && !t3a_device(rhp)) {
Steve Wiseb038ced2007-02-12 16:16:18 -0800706 uresp.pbl_addr = (mhp->attr.pbl_addr -
Roland Dreier273748c2008-05-06 15:56:22 -0700707 rhp->rdev.rnic_info.pbl_base) >> 3;
Harvey Harrison33718362008-04-16 21:01:10 -0700708 PDBG("%s user resp pbl_addr 0x%x\n", __func__,
Steve Wiseb038ced2007-02-12 16:16:18 -0800709 uresp.pbl_addr);
710
711 if (ib_copy_to_udata(udata, &uresp, sizeof (uresp))) {
712 iwch_dereg_mr(&mhp->ibmr);
713 err = -EFAULT;
714 goto err;
715 }
716 }
717
718 return &mhp->ibmr;
719
Roland Dreier273748c2008-05-06 15:56:22 -0700720err_pbl:
721 iwch_free_pbl(mhp);
722
Steve Wiseb038ced2007-02-12 16:16:18 -0800723err:
Roland Dreierf7c6a7b2007-03-04 16:15:11 -0800724 ib_umem_release(mhp->umem);
Steve Wiseb038ced2007-02-12 16:16:18 -0800725 kfree(mhp);
726 return ERR_PTR(err);
727}
728
729static struct ib_mr *iwch_get_dma_mr(struct ib_pd *pd, int acc)
730{
731 struct ib_phys_buf bl;
732 u64 kva;
733 struct ib_mr *ibmr;
734
Harvey Harrison33718362008-04-16 21:01:10 -0700735 PDBG("%s ib_pd %p\n", __func__, pd);
Steve Wiseb038ced2007-02-12 16:16:18 -0800736
737 /*
738 * T3 only supports 32 bits of size.
739 */
Steve Wise49fa63d2015-07-22 14:14:17 -0500740 if (sizeof(phys_addr_t) > 4) {
741 pr_warn_once(MOD "Cannot support dma_mrs on this platform.\n");
742 return ERR_PTR(-ENOTSUPP);
743 }
Steve Wiseb038ced2007-02-12 16:16:18 -0800744 bl.size = 0xffffffff;
745 bl.addr = 0;
746 kva = 0;
747 ibmr = iwch_register_phys_mem(pd, &bl, 1, acc, &kva);
748 return ibmr;
749}
750
Shani Michaeli7083e422013-02-06 16:19:12 +0000751static struct ib_mw *iwch_alloc_mw(struct ib_pd *pd, enum ib_mw_type type)
Steve Wiseb038ced2007-02-12 16:16:18 -0800752{
753 struct iwch_dev *rhp;
754 struct iwch_pd *php;
755 struct iwch_mw *mhp;
756 u32 mmid;
757 u32 stag = 0;
758 int ret;
759
Shani Michaeli7083e422013-02-06 16:19:12 +0000760 if (type != IB_MW_TYPE_1)
761 return ERR_PTR(-EINVAL);
762
Steve Wiseb038ced2007-02-12 16:16:18 -0800763 php = to_iwch_pd(pd);
764 rhp = php->rhp;
765 mhp = kzalloc(sizeof(*mhp), GFP_KERNEL);
766 if (!mhp)
767 return ERR_PTR(-ENOMEM);
768 ret = cxio_allocate_window(&rhp->rdev, &stag, php->pdid);
769 if (ret) {
770 kfree(mhp);
771 return ERR_PTR(ret);
772 }
773 mhp->rhp = rhp;
774 mhp->attr.pdid = php->pdid;
775 mhp->attr.type = TPT_MW;
776 mhp->attr.stag = stag;
777 mmid = (stag) >> 8;
Steve Wise70fe1792008-07-14 23:48:49 -0700778 mhp->ibmw.rkey = stag;
Steve Wise13a23932009-09-09 11:25:55 -0700779 if (insert_handle(rhp, &rhp->mmidr, mhp, mmid)) {
780 cxio_deallocate_window(&rhp->rdev, mhp->attr.stag);
781 kfree(mhp);
782 return ERR_PTR(-ENOMEM);
783 }
Harvey Harrison33718362008-04-16 21:01:10 -0700784 PDBG("%s mmid 0x%x mhp %p stag 0x%x\n", __func__, mmid, mhp, stag);
Steve Wiseb038ced2007-02-12 16:16:18 -0800785 return &(mhp->ibmw);
786}
787
788static int iwch_dealloc_mw(struct ib_mw *mw)
789{
790 struct iwch_dev *rhp;
791 struct iwch_mw *mhp;
792 u32 mmid;
793
794 mhp = to_iwch_mw(mw);
795 rhp = mhp->rhp;
796 mmid = (mw->rkey) >> 8;
797 cxio_deallocate_window(&rhp->rdev, mhp->attr.stag);
798 remove_handle(rhp, &rhp->mmidr, mmid);
Harvey Harrison33718362008-04-16 21:01:10 -0700799 PDBG("%s ib_mw %p mmid 0x%x ptr %p\n", __func__, mw, mmid, mhp);
Jesper Juhlfe194f12013-01-14 20:34:09 +0100800 kfree(mhp);
Steve Wiseb038ced2007-02-12 16:16:18 -0800801 return 0;
802}
803
Sagi Grimbergf683d3b2015-07-30 10:32:45 +0300804static struct ib_mr *iwch_alloc_mr(struct ib_pd *pd,
805 enum ib_mr_type mr_type,
806 u32 max_num_sg)
Steve Wisee7e55822008-07-14 23:48:45 -0700807{
808 struct iwch_dev *rhp;
809 struct iwch_pd *php;
810 struct iwch_mr *mhp;
811 u32 mmid;
812 u32 stag = 0;
Steve Wise13a23932009-09-09 11:25:55 -0700813 int ret = 0;
Steve Wisee7e55822008-07-14 23:48:45 -0700814
Sagi Grimbergf683d3b2015-07-30 10:32:45 +0300815 if (mr_type != IB_MR_TYPE_MEM_REG ||
816 max_num_sg > T3_MAX_FASTREG_DEPTH)
817 return ERR_PTR(-EINVAL);
818
Steve Wisee7e55822008-07-14 23:48:45 -0700819 php = to_iwch_pd(pd);
820 rhp = php->rhp;
821 mhp = kzalloc(sizeof(*mhp), GFP_KERNEL);
822 if (!mhp)
Steve Wise13a23932009-09-09 11:25:55 -0700823 goto err;
Steve Wisee7e55822008-07-14 23:48:45 -0700824
Sagi Grimberg14fb4172015-10-13 19:11:29 +0300825 mhp->pages = kcalloc(max_num_sg, sizeof(u64), GFP_KERNEL);
826 if (!mhp->pages) {
827 ret = -ENOMEM;
828 goto pl_err;
829 }
830
Steve Wisee7e55822008-07-14 23:48:45 -0700831 mhp->rhp = rhp;
Sagi Grimbergf683d3b2015-07-30 10:32:45 +0300832 ret = iwch_alloc_pbl(mhp, max_num_sg);
Steve Wise13a23932009-09-09 11:25:55 -0700833 if (ret)
834 goto err1;
Sagi Grimbergf683d3b2015-07-30 10:32:45 +0300835 mhp->attr.pbl_size = max_num_sg;
Steve Wisee7e55822008-07-14 23:48:45 -0700836 ret = cxio_allocate_stag(&rhp->rdev, &stag, php->pdid,
837 mhp->attr.pbl_size, mhp->attr.pbl_addr);
Steve Wise13a23932009-09-09 11:25:55 -0700838 if (ret)
839 goto err2;
Steve Wisee7e55822008-07-14 23:48:45 -0700840 mhp->attr.pdid = php->pdid;
841 mhp->attr.type = TPT_NON_SHARED_MR;
842 mhp->attr.stag = stag;
843 mhp->attr.state = 1;
844 mmid = (stag) >> 8;
845 mhp->ibmr.rkey = mhp->ibmr.lkey = stag;
Steve Wise13a23932009-09-09 11:25:55 -0700846 if (insert_handle(rhp, &rhp->mmidr, mhp, mmid))
847 goto err3;
848
Steve Wisee7e55822008-07-14 23:48:45 -0700849 PDBG("%s mmid 0x%x mhp %p stag 0x%x\n", __func__, mmid, mhp, stag);
850 return &(mhp->ibmr);
Steve Wise13a23932009-09-09 11:25:55 -0700851err3:
852 cxio_dereg_mem(&rhp->rdev, stag, mhp->attr.pbl_size,
853 mhp->attr.pbl_addr);
854err2:
855 iwch_free_pbl(mhp);
856err1:
Sagi Grimberg14fb4172015-10-13 19:11:29 +0300857 kfree(mhp->pages);
858pl_err:
Steve Wise13a23932009-09-09 11:25:55 -0700859 kfree(mhp);
860err:
861 return ERR_PTR(ret);
Steve Wisee7e55822008-07-14 23:48:45 -0700862}
863
Sagi Grimberg14fb4172015-10-13 19:11:29 +0300864static int iwch_set_page(struct ib_mr *ibmr, u64 addr)
865{
866 struct iwch_mr *mhp = to_iwch_mr(ibmr);
867
868 if (unlikely(mhp->npages == mhp->attr.pbl_size))
869 return -ENOMEM;
870
871 mhp->pages[mhp->npages++] = addr;
872
873 return 0;
874}
875
876static int iwch_map_mr_sg(struct ib_mr *ibmr,
877 struct scatterlist *sg,
878 int sg_nents)
879{
880 struct iwch_mr *mhp = to_iwch_mr(ibmr);
881
882 mhp->npages = 0;
883
884 return ib_sg_to_pages(ibmr, sg, sg_nents, iwch_set_page);
885}
886
Steve Wisee7e55822008-07-14 23:48:45 -0700887static struct ib_fast_reg_page_list *iwch_alloc_fastreg_pbl(
888 struct ib_device *device,
889 int page_list_len)
890{
891 struct ib_fast_reg_page_list *page_list;
892
893 page_list = kmalloc(sizeof *page_list + page_list_len * sizeof(u64),
894 GFP_KERNEL);
895 if (!page_list)
896 return ERR_PTR(-ENOMEM);
897
898 page_list->page_list = (u64 *)(page_list + 1);
899 page_list->max_page_list_len = page_list_len;
900
901 return page_list;
902}
903
904static void iwch_free_fastreg_pbl(struct ib_fast_reg_page_list *page_list)
905{
906 kfree(page_list);
907}
908
Steve Wiseb038ced2007-02-12 16:16:18 -0800909static int iwch_destroy_qp(struct ib_qp *ib_qp)
910{
911 struct iwch_dev *rhp;
912 struct iwch_qp *qhp;
913 struct iwch_qp_attributes attrs;
914 struct iwch_ucontext *ucontext;
915
916 qhp = to_iwch_qp(ib_qp);
917 rhp = qhp->rhp;
918
Steve Wise2df50da2007-03-06 14:43:58 -0600919 attrs.next_state = IWCH_QP_STATE_ERROR;
920 iwch_modify_qp(rhp, qhp, IWCH_QP_ATTR_NEXT_STATE, &attrs, 0);
Steve Wiseb038ced2007-02-12 16:16:18 -0800921 wait_event(qhp->wait, !qhp->ep);
922
923 remove_handle(rhp, &rhp->qpidr, qhp->wq.qpid);
924
925 atomic_dec(&qhp->refcnt);
926 wait_event(qhp->wait, !atomic_read(&qhp->refcnt));
927
928 ucontext = ib_qp->uobject ? to_iwch_ucontext(ib_qp->uobject->context)
929 : NULL;
930 cxio_destroy_qp(&rhp->rdev, &qhp->wq,
931 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
932
Harvey Harrison33718362008-04-16 21:01:10 -0700933 PDBG("%s ib_qp %p qpid 0x%0x qhp %p\n", __func__,
Steve Wiseb038ced2007-02-12 16:16:18 -0800934 ib_qp, qhp->wq.qpid, qhp);
935 kfree(qhp);
936 return 0;
937}
938
939static struct ib_qp *iwch_create_qp(struct ib_pd *pd,
940 struct ib_qp_init_attr *attrs,
941 struct ib_udata *udata)
942{
943 struct iwch_dev *rhp;
944 struct iwch_qp *qhp;
945 struct iwch_pd *php;
946 struct iwch_cq *schp;
947 struct iwch_cq *rchp;
948 struct iwch_create_qp_resp uresp;
949 int wqsize, sqsize, rqsize;
950 struct iwch_ucontext *ucontext;
951
Harvey Harrison33718362008-04-16 21:01:10 -0700952 PDBG("%s ib_pd %p\n", __func__, pd);
Steve Wiseb038ced2007-02-12 16:16:18 -0800953 if (attrs->qp_type != IB_QPT_RC)
954 return ERR_PTR(-EINVAL);
955 php = to_iwch_pd(pd);
956 rhp = php->rhp;
957 schp = get_chp(rhp, ((struct iwch_cq *) attrs->send_cq)->cq.cqid);
958 rchp = get_chp(rhp, ((struct iwch_cq *) attrs->recv_cq)->cq.cqid);
959 if (!schp || !rchp)
960 return ERR_PTR(-EINVAL);
961
962 /* The RQT size must be # of entries + 1 rounded up to a power of two */
963 rqsize = roundup_pow_of_two(attrs->cap.max_recv_wr);
964 if (rqsize == attrs->cap.max_recv_wr)
965 rqsize = roundup_pow_of_two(attrs->cap.max_recv_wr+1);
966
967 /* T3 doesn't support RQT depth < 16 */
968 if (rqsize < 16)
969 rqsize = 16;
970
971 if (rqsize > T3_MAX_RQ_SIZE)
972 return ERR_PTR(-EINVAL);
973
Steve Wise1860cdf2007-04-26 15:21:09 -0500974 if (attrs->cap.max_inline_data > T3_MAX_INLINE)
975 return ERR_PTR(-EINVAL);
976
Steve Wiseb038ced2007-02-12 16:16:18 -0800977 /*
978 * NOTE: The SQ and total WQ sizes don't need to be
979 * a power of two. However, all the code assumes
980 * they are. EG: Q_FREECNT() and friends.
981 */
982 sqsize = roundup_pow_of_two(attrs->cap.max_send_wr);
983 wqsize = roundup_pow_of_two(rqsize + sqsize);
Steve Wisee7e55822008-07-14 23:48:45 -0700984
985 /*
986 * Kernel users need more wq space for fastreg WRs which can take
987 * 2 WR fragments.
988 */
989 ucontext = pd->uobject ? to_iwch_ucontext(pd->uobject->context) : NULL;
990 if (!ucontext && wqsize < (rqsize + (2 * sqsize)))
991 wqsize = roundup_pow_of_two(rqsize +
992 roundup_pow_of_two(attrs->cap.max_send_wr * 2));
Harvey Harrison33718362008-04-16 21:01:10 -0700993 PDBG("%s wqsize %d sqsize %d rqsize %d\n", __func__,
Steve Wiseb038ced2007-02-12 16:16:18 -0800994 wqsize, sqsize, rqsize);
995 qhp = kzalloc(sizeof(*qhp), GFP_KERNEL);
996 if (!qhp)
997 return ERR_PTR(-ENOMEM);
998 qhp->wq.size_log2 = ilog2(wqsize);
999 qhp->wq.rq_size_log2 = ilog2(rqsize);
1000 qhp->wq.sq_size_log2 = ilog2(sqsize);
Steve Wiseb038ced2007-02-12 16:16:18 -08001001 if (cxio_create_qp(&rhp->rdev, !udata, &qhp->wq,
1002 ucontext ? &ucontext->uctx : &rhp->rdev.uctx)) {
1003 kfree(qhp);
1004 return ERR_PTR(-ENOMEM);
1005 }
Jon Mason1bab74e2008-02-29 13:53:18 -08001006
Steve Wiseb038ced2007-02-12 16:16:18 -08001007 attrs->cap.max_recv_wr = rqsize - 1;
1008 attrs->cap.max_send_wr = sqsize;
Jon Mason1bab74e2008-02-29 13:53:18 -08001009 attrs->cap.max_inline_data = T3_MAX_INLINE;
1010
Steve Wiseb038ced2007-02-12 16:16:18 -08001011 qhp->rhp = rhp;
1012 qhp->attr.pd = php->pdid;
1013 qhp->attr.scq = ((struct iwch_cq *) attrs->send_cq)->cq.cqid;
1014 qhp->attr.rcq = ((struct iwch_cq *) attrs->recv_cq)->cq.cqid;
1015 qhp->attr.sq_num_entries = attrs->cap.max_send_wr;
1016 qhp->attr.rq_num_entries = attrs->cap.max_recv_wr;
1017 qhp->attr.sq_max_sges = attrs->cap.max_send_sge;
1018 qhp->attr.sq_max_sges_rdma_write = attrs->cap.max_send_sge;
1019 qhp->attr.rq_max_sges = attrs->cap.max_recv_sge;
1020 qhp->attr.state = IWCH_QP_STATE_IDLE;
1021 qhp->attr.next_state = IWCH_QP_STATE_IDLE;
1022
1023 /*
1024 * XXX - These don't get passed in from the openib user
1025 * at create time. The CM sets them via a QP modify.
1026 * Need to fix... I think the CM should
1027 */
1028 qhp->attr.enable_rdma_read = 1;
1029 qhp->attr.enable_rdma_write = 1;
1030 qhp->attr.enable_bind = 1;
1031 qhp->attr.max_ord = 1;
1032 qhp->attr.max_ird = 1;
1033
1034 spin_lock_init(&qhp->lock);
1035 init_waitqueue_head(&qhp->wait);
1036 atomic_set(&qhp->refcnt, 1);
Steve Wise13a23932009-09-09 11:25:55 -07001037
1038 if (insert_handle(rhp, &rhp->qpidr, qhp, qhp->wq.qpid)) {
1039 cxio_destroy_qp(&rhp->rdev, &qhp->wq,
1040 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
1041 kfree(qhp);
1042 return ERR_PTR(-ENOMEM);
1043 }
Steve Wiseb038ced2007-02-12 16:16:18 -08001044
1045 if (udata) {
1046
1047 struct iwch_mm_entry *mm1, *mm2;
1048
1049 mm1 = kmalloc(sizeof *mm1, GFP_KERNEL);
1050 if (!mm1) {
1051 iwch_destroy_qp(&qhp->ibqp);
1052 return ERR_PTR(-ENOMEM);
1053 }
1054
1055 mm2 = kmalloc(sizeof *mm2, GFP_KERNEL);
1056 if (!mm2) {
1057 kfree(mm1);
1058 iwch_destroy_qp(&qhp->ibqp);
1059 return ERR_PTR(-ENOMEM);
1060 }
1061
1062 uresp.qpid = qhp->wq.qpid;
1063 uresp.size_log2 = qhp->wq.size_log2;
1064 uresp.sq_size_log2 = qhp->wq.sq_size_log2;
1065 uresp.rq_size_log2 = qhp->wq.rq_size_log2;
1066 spin_lock(&ucontext->mmap_lock);
1067 uresp.key = ucontext->key;
1068 ucontext->key += PAGE_SIZE;
1069 uresp.db_key = ucontext->key;
1070 ucontext->key += PAGE_SIZE;
1071 spin_unlock(&ucontext->mmap_lock);
1072 if (ib_copy_to_udata(udata, &uresp, sizeof (uresp))) {
1073 kfree(mm1);
1074 kfree(mm2);
1075 iwch_destroy_qp(&qhp->ibqp);
1076 return ERR_PTR(-EFAULT);
1077 }
1078 mm1->key = uresp.key;
1079 mm1->addr = virt_to_phys(qhp->wq.queue);
1080 mm1->len = PAGE_ALIGN(wqsize * sizeof (union t3_wr));
1081 insert_mmap(ucontext, mm1);
1082 mm2->key = uresp.db_key;
1083 mm2->addr = qhp->wq.udb & PAGE_MASK;
1084 mm2->len = PAGE_SIZE;
1085 insert_mmap(ucontext, mm2);
1086 }
1087 qhp->ibqp.qp_num = qhp->wq.qpid;
1088 init_timer(&(qhp->timer));
1089 PDBG("%s sq_num_entries %d, rq_num_entries %d "
Steve Wise4ab928f2008-07-14 23:48:53 -07001090 "qpid 0x%0x qhp %p dma_addr 0x%llx size %d rq_addr 0x%x\n",
Harvey Harrison33718362008-04-16 21:01:10 -07001091 __func__, qhp->attr.sq_num_entries, qhp->attr.rq_num_entries,
Steve Wiseb038ced2007-02-12 16:16:18 -08001092 qhp->wq.qpid, qhp, (unsigned long long) qhp->wq.dma_addr,
Steve Wise4ab928f2008-07-14 23:48:53 -07001093 1 << qhp->wq.size_log2, qhp->wq.rq_addr);
Steve Wiseb038ced2007-02-12 16:16:18 -08001094 return &qhp->ibqp;
1095}
1096
1097static int iwch_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1098 int attr_mask, struct ib_udata *udata)
1099{
1100 struct iwch_dev *rhp;
1101 struct iwch_qp *qhp;
1102 enum iwch_qp_attr_mask mask = 0;
1103 struct iwch_qp_attributes attrs;
1104
Harvey Harrison33718362008-04-16 21:01:10 -07001105 PDBG("%s ib_qp %p\n", __func__, ibqp);
Steve Wiseb038ced2007-02-12 16:16:18 -08001106
1107 /* iwarp does not support the RTR state */
1108 if ((attr_mask & IB_QP_STATE) && (attr->qp_state == IB_QPS_RTR))
1109 attr_mask &= ~IB_QP_STATE;
1110
1111 /* Make sure we still have something left to do */
1112 if (!attr_mask)
1113 return 0;
1114
1115 memset(&attrs, 0, sizeof attrs);
1116 qhp = to_iwch_qp(ibqp);
1117 rhp = qhp->rhp;
1118
1119 attrs.next_state = iwch_convert_state(attr->qp_state);
1120 attrs.enable_rdma_read = (attr->qp_access_flags &
1121 IB_ACCESS_REMOTE_READ) ? 1 : 0;
1122 attrs.enable_rdma_write = (attr->qp_access_flags &
1123 IB_ACCESS_REMOTE_WRITE) ? 1 : 0;
1124 attrs.enable_bind = (attr->qp_access_flags & IB_ACCESS_MW_BIND) ? 1 : 0;
1125
1126
1127 mask |= (attr_mask & IB_QP_STATE) ? IWCH_QP_ATTR_NEXT_STATE : 0;
1128 mask |= (attr_mask & IB_QP_ACCESS_FLAGS) ?
1129 (IWCH_QP_ATTR_ENABLE_RDMA_READ |
1130 IWCH_QP_ATTR_ENABLE_RDMA_WRITE |
1131 IWCH_QP_ATTR_ENABLE_RDMA_BIND) : 0;
1132
1133 return iwch_modify_qp(rhp, qhp, mask, &attrs, 0);
1134}
1135
1136void iwch_qp_add_ref(struct ib_qp *qp)
1137{
Harvey Harrison33718362008-04-16 21:01:10 -07001138 PDBG("%s ib_qp %p\n", __func__, qp);
Steve Wiseb038ced2007-02-12 16:16:18 -08001139 atomic_inc(&(to_iwch_qp(qp)->refcnt));
1140}
1141
1142void iwch_qp_rem_ref(struct ib_qp *qp)
1143{
Harvey Harrison33718362008-04-16 21:01:10 -07001144 PDBG("%s ib_qp %p\n", __func__, qp);
Steve Wiseb038ced2007-02-12 16:16:18 -08001145 if (atomic_dec_and_test(&(to_iwch_qp(qp)->refcnt)))
1146 wake_up(&(to_iwch_qp(qp)->wait));
1147}
1148
Adrian Bunk2b540352007-02-21 11:52:49 +01001149static struct ib_qp *iwch_get_qp(struct ib_device *dev, int qpn)
Steve Wiseb038ced2007-02-12 16:16:18 -08001150{
Harvey Harrison33718362008-04-16 21:01:10 -07001151 PDBG("%s ib_dev %p qpn 0x%x\n", __func__, dev, qpn);
Steve Wiseb038ced2007-02-12 16:16:18 -08001152 return (struct ib_qp *)get_qhp(to_iwch_dev(dev), qpn);
1153}
1154
1155
1156static int iwch_query_pkey(struct ib_device *ibdev,
1157 u8 port, u16 index, u16 * pkey)
1158{
Harvey Harrison33718362008-04-16 21:01:10 -07001159 PDBG("%s ibdev %p\n", __func__, ibdev);
Steve Wiseb038ced2007-02-12 16:16:18 -08001160 *pkey = 0;
1161 return 0;
1162}
1163
1164static int iwch_query_gid(struct ib_device *ibdev, u8 port,
1165 int index, union ib_gid *gid)
1166{
1167 struct iwch_dev *dev;
1168
1169 PDBG("%s ibdev %p, port %d, index %d, gid %p\n",
Harvey Harrison33718362008-04-16 21:01:10 -07001170 __func__, ibdev, port, index, gid);
Steve Wiseb038ced2007-02-12 16:16:18 -08001171 dev = to_iwch_dev(ibdev);
1172 BUG_ON(port == 0 || port > 2);
1173 memset(&(gid->raw[0]), 0, sizeof(gid->raw));
1174 memcpy(&(gid->raw[0]), dev->rdev.port_info.lldevs[port-1]->dev_addr, 6);
1175 return 0;
1176}
1177
Steve Wise97d1cc82008-07-14 23:48:47 -07001178static u64 fw_vers_string_to_u64(struct iwch_dev *iwch_dev)
1179{
1180 struct ethtool_drvinfo info;
1181 struct net_device *lldev = iwch_dev->rdev.t3cdev_p->lldev;
1182 char *cp, *next;
1183 unsigned fw_maj, fw_min, fw_mic;
1184
Steve Wise97d1cc82008-07-14 23:48:47 -07001185 lldev->ethtool_ops->get_drvinfo(lldev, &info);
Steve Wise97d1cc82008-07-14 23:48:47 -07001186
1187 next = info.fw_version + 1;
1188 cp = strsep(&next, ".");
1189 sscanf(cp, "%i", &fw_maj);
1190 cp = strsep(&next, ".");
1191 sscanf(cp, "%i", &fw_min);
1192 cp = strsep(&next, ".");
1193 sscanf(cp, "%i", &fw_mic);
1194
1195 return (((u64)fw_maj & 0xffff) << 32) | ((fw_min & 0xffff) << 16) |
1196 (fw_mic & 0xffff);
1197}
1198
Matan Barak2528e332015-06-11 16:35:25 +03001199static int iwch_query_device(struct ib_device *ibdev, struct ib_device_attr *props,
1200 struct ib_udata *uhw)
Steve Wiseb038ced2007-02-12 16:16:18 -08001201{
1202
1203 struct iwch_dev *dev;
Matan Barak2528e332015-06-11 16:35:25 +03001204
Harvey Harrison33718362008-04-16 21:01:10 -07001205 PDBG("%s ibdev %p\n", __func__, ibdev);
Steve Wiseb038ced2007-02-12 16:16:18 -08001206
Matan Barak2528e332015-06-11 16:35:25 +03001207 if (uhw->inlen || uhw->outlen)
1208 return -EINVAL;
1209
Steve Wiseb038ced2007-02-12 16:16:18 -08001210 dev = to_iwch_dev(ibdev);
1211 memset(props, 0, sizeof *props);
1212 memcpy(&props->sys_image_guid, dev->rdev.t3cdev_p->lldev->dev_addr, 6);
Steve Wise97d1cc82008-07-14 23:48:47 -07001213 props->hw_ver = dev->rdev.t3cdev_p->type;
1214 props->fw_ver = fw_vers_string_to_u64(dev);
Steve Wiseb038ced2007-02-12 16:16:18 -08001215 props->device_cap_flags = dev->device_cap_flags;
Jon Mason52c80842008-07-14 23:48:49 -07001216 props->page_size_cap = dev->attr.mem_pgsizes_bitmask;
Steve Wiseb038ced2007-02-12 16:16:18 -08001217 props->vendor_id = (u32)dev->rdev.rnic_info.pdev->vendor;
1218 props->vendor_part_id = (u32)dev->rdev.rnic_info.pdev->device;
Steve Wiseccaf10d2008-04-29 13:46:52 -07001219 props->max_mr_size = dev->attr.max_mr_size;
Steve Wiseb038ced2007-02-12 16:16:18 -08001220 props->max_qp = dev->attr.max_qps;
1221 props->max_qp_wr = dev->attr.max_wrs;
1222 props->max_sge = dev->attr.max_sge_per_wr;
1223 props->max_sge_rd = 1;
1224 props->max_qp_rd_atom = dev->attr.max_rdma_reads_per_qp;
Steve Wise9a766642007-11-09 09:21:58 -06001225 props->max_qp_init_rd_atom = dev->attr.max_rdma_reads_per_qp;
Steve Wiseb038ced2007-02-12 16:16:18 -08001226 props->max_cq = dev->attr.max_cqs;
1227 props->max_cqe = dev->attr.max_cqes_per_cq;
1228 props->max_mr = dev->attr.max_mem_regs;
1229 props->max_pd = dev->attr.max_pds;
1230 props->local_ca_ack_delay = 0;
Steve Wisee7e55822008-07-14 23:48:45 -07001231 props->max_fast_reg_page_list_len = T3_MAX_FASTREG_DEPTH;
Steve Wiseb038ced2007-02-12 16:16:18 -08001232
1233 return 0;
1234}
1235
1236static int iwch_query_port(struct ib_device *ibdev,
1237 u8 port, struct ib_port_attr *props)
1238{
Steve Wise7ab1a2b2009-05-27 14:42:36 -07001239 struct iwch_dev *dev;
1240 struct net_device *netdev;
1241 struct in_device *inetdev;
1242
Harvey Harrison33718362008-04-16 21:01:10 -07001243 PDBG("%s ibdev %p\n", __func__, ibdev);
Jon Masonc752c782008-09-30 14:51:19 -07001244
Steve Wise7ab1a2b2009-05-27 14:42:36 -07001245 dev = to_iwch_dev(ibdev);
1246 netdev = dev->rdev.port_info.lldevs[port-1];
1247
Jon Masonc752c782008-09-30 14:51:19 -07001248 memset(props, 0, sizeof(struct ib_port_attr));
Steve Wiseb038ced2007-02-12 16:16:18 -08001249 props->max_mtu = IB_MTU_4096;
Steve Wise7ab1a2b2009-05-27 14:42:36 -07001250 if (netdev->mtu >= 4096)
1251 props->active_mtu = IB_MTU_4096;
1252 else if (netdev->mtu >= 2048)
1253 props->active_mtu = IB_MTU_2048;
1254 else if (netdev->mtu >= 1024)
1255 props->active_mtu = IB_MTU_1024;
1256 else if (netdev->mtu >= 512)
1257 props->active_mtu = IB_MTU_512;
1258 else
1259 props->active_mtu = IB_MTU_256;
1260
1261 if (!netif_carrier_ok(netdev))
1262 props->state = IB_PORT_DOWN;
1263 else {
1264 inetdev = in_dev_get(netdev);
Steve Wisee5da4ed2009-10-07 15:51:07 -07001265 if (inetdev) {
1266 if (inetdev->ifa_list)
1267 props->state = IB_PORT_ACTIVE;
1268 else
1269 props->state = IB_PORT_INIT;
1270 in_dev_put(inetdev);
1271 } else
Steve Wise7ab1a2b2009-05-27 14:42:36 -07001272 props->state = IB_PORT_INIT;
Steve Wise7ab1a2b2009-05-27 14:42:36 -07001273 }
1274
Steve Wiseb038ced2007-02-12 16:16:18 -08001275 props->port_cap_flags =
1276 IB_PORT_CM_SUP |
1277 IB_PORT_SNMP_TUNNEL_SUP |
1278 IB_PORT_REINIT_SUP |
1279 IB_PORT_DEVICE_MGMT_SUP |
1280 IB_PORT_VENDOR_CLASS_SUP | IB_PORT_BOOT_MGMT_SUP;
1281 props->gid_tbl_len = 1;
1282 props->pkey_tbl_len = 1;
Steve Wiseb038ced2007-02-12 16:16:18 -08001283 props->active_width = 2;
Or Gerlitz2e966912012-02-28 18:49:50 +02001284 props->active_speed = IB_SPEED_DDR;
Steve Wiseb038ced2007-02-12 16:16:18 -08001285 props->max_msg_sz = -1;
1286
1287 return 0;
1288}
1289
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001290static ssize_t show_rev(struct device *dev, struct device_attribute *attr,
1291 char *buf)
Steve Wiseb038ced2007-02-12 16:16:18 -08001292{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001293 struct iwch_dev *iwch_dev = container_of(dev, struct iwch_dev,
1294 ibdev.dev);
1295 PDBG("%s dev 0x%p\n", __func__, dev);
1296 return sprintf(buf, "%d\n", iwch_dev->rdev.t3cdev_p->type);
Steve Wiseb038ced2007-02-12 16:16:18 -08001297}
1298
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001299static ssize_t show_fw_ver(struct device *dev, struct device_attribute *attr, char *buf)
Steve Wiseb038ced2007-02-12 16:16:18 -08001300{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001301 struct iwch_dev *iwch_dev = container_of(dev, struct iwch_dev,
1302 ibdev.dev);
Steve Wiseb038ced2007-02-12 16:16:18 -08001303 struct ethtool_drvinfo info;
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001304 struct net_device *lldev = iwch_dev->rdev.t3cdev_p->lldev;
Steve Wiseb038ced2007-02-12 16:16:18 -08001305
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001306 PDBG("%s dev 0x%p\n", __func__, dev);
Steve Wiseb038ced2007-02-12 16:16:18 -08001307 lldev->ethtool_ops->get_drvinfo(lldev, &info);
1308 return sprintf(buf, "%s\n", info.fw_version);
1309}
1310
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001311static ssize_t show_hca(struct device *dev, struct device_attribute *attr,
1312 char *buf)
Steve Wiseb038ced2007-02-12 16:16:18 -08001313{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001314 struct iwch_dev *iwch_dev = container_of(dev, struct iwch_dev,
1315 ibdev.dev);
Steve Wiseb038ced2007-02-12 16:16:18 -08001316 struct ethtool_drvinfo info;
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001317 struct net_device *lldev = iwch_dev->rdev.t3cdev_p->lldev;
Steve Wiseb038ced2007-02-12 16:16:18 -08001318
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001319 PDBG("%s dev 0x%p\n", __func__, dev);
Steve Wiseb038ced2007-02-12 16:16:18 -08001320 lldev->ethtool_ops->get_drvinfo(lldev, &info);
1321 return sprintf(buf, "%s\n", info.driver);
1322}
1323
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001324static ssize_t show_board(struct device *dev, struct device_attribute *attr,
1325 char *buf)
Steve Wiseb038ced2007-02-12 16:16:18 -08001326{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001327 struct iwch_dev *iwch_dev = container_of(dev, struct iwch_dev,
1328 ibdev.dev);
1329 PDBG("%s dev 0x%p\n", __func__, dev);
1330 return sprintf(buf, "%x.%x\n", iwch_dev->rdev.rnic_info.pdev->vendor,
1331 iwch_dev->rdev.rnic_info.pdev->device);
Steve Wiseb038ced2007-02-12 16:16:18 -08001332}
1333
Steve Wise14cc1802008-07-14 23:48:48 -07001334static int iwch_get_mib(struct ib_device *ibdev,
1335 union rdma_protocol_stats *stats)
1336{
1337 struct iwch_dev *dev;
1338 struct tp_mib_stats m;
1339 int ret;
1340
1341 PDBG("%s ibdev %p\n", __func__, ibdev);
1342 dev = to_iwch_dev(ibdev);
1343 ret = dev->rdev.t3cdev_p->ctl(dev->rdev.t3cdev_p, RDMA_GET_MIB, &m);
1344 if (ret)
1345 return -ENOSYS;
1346
1347 memset(stats, 0, sizeof *stats);
1348 stats->iw.ipInReceives = ((u64) m.ipInReceive_hi << 32) +
1349 m.ipInReceive_lo;
1350 stats->iw.ipInHdrErrors = ((u64) m.ipInHdrErrors_hi << 32) +
1351 m.ipInHdrErrors_lo;
1352 stats->iw.ipInAddrErrors = ((u64) m.ipInAddrErrors_hi << 32) +
1353 m.ipInAddrErrors_lo;
1354 stats->iw.ipInUnknownProtos = ((u64) m.ipInUnknownProtos_hi << 32) +
1355 m.ipInUnknownProtos_lo;
1356 stats->iw.ipInDiscards = ((u64) m.ipInDiscards_hi << 32) +
1357 m.ipInDiscards_lo;
1358 stats->iw.ipInDelivers = ((u64) m.ipInDelivers_hi << 32) +
1359 m.ipInDelivers_lo;
1360 stats->iw.ipOutRequests = ((u64) m.ipOutRequests_hi << 32) +
1361 m.ipOutRequests_lo;
1362 stats->iw.ipOutDiscards = ((u64) m.ipOutDiscards_hi << 32) +
1363 m.ipOutDiscards_lo;
1364 stats->iw.ipOutNoRoutes = ((u64) m.ipOutNoRoutes_hi << 32) +
1365 m.ipOutNoRoutes_lo;
1366 stats->iw.ipReasmTimeout = (u64) m.ipReasmTimeout;
1367 stats->iw.ipReasmReqds = (u64) m.ipReasmReqds;
1368 stats->iw.ipReasmOKs = (u64) m.ipReasmOKs;
1369 stats->iw.ipReasmFails = (u64) m.ipReasmFails;
1370 stats->iw.tcpActiveOpens = (u64) m.tcpActiveOpens;
1371 stats->iw.tcpPassiveOpens = (u64) m.tcpPassiveOpens;
1372 stats->iw.tcpAttemptFails = (u64) m.tcpAttemptFails;
1373 stats->iw.tcpEstabResets = (u64) m.tcpEstabResets;
1374 stats->iw.tcpOutRsts = (u64) m.tcpOutRsts;
1375 stats->iw.tcpCurrEstab = (u64) m.tcpCurrEstab;
1376 stats->iw.tcpInSegs = ((u64) m.tcpInSegs_hi << 32) +
1377 m.tcpInSegs_lo;
1378 stats->iw.tcpOutSegs = ((u64) m.tcpOutSegs_hi << 32) +
1379 m.tcpOutSegs_lo;
1380 stats->iw.tcpRetransSegs = ((u64) m.tcpRetransSeg_hi << 32) +
1381 m.tcpRetransSeg_lo;
1382 stats->iw.tcpInErrs = ((u64) m.tcpInErrs_hi << 32) +
1383 m.tcpInErrs_lo;
1384 stats->iw.tcpRtoMin = (u64) m.tcpRtoMin;
1385 stats->iw.tcpRtoMax = (u64) m.tcpRtoMax;
1386 return 0;
1387}
1388
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001389static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
1390static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
1391static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
1392static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
Steve Wiseb038ced2007-02-12 16:16:18 -08001393
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001394static struct device_attribute *iwch_class_attributes[] = {
1395 &dev_attr_hw_rev,
1396 &dev_attr_fw_ver,
1397 &dev_attr_hca_type,
Steve Wise14cc1802008-07-14 23:48:48 -07001398 &dev_attr_board_id,
Steve Wiseb038ced2007-02-12 16:16:18 -08001399};
1400
Ira Weiny77386132015-05-13 20:02:58 -04001401static int iwch_port_immutable(struct ib_device *ibdev, u8 port_num,
1402 struct ib_port_immutable *immutable)
1403{
1404 struct ib_port_attr attr;
1405 int err;
1406
1407 err = iwch_query_port(ibdev, port_num, &attr);
1408 if (err)
1409 return err;
1410
1411 immutable->pkey_tbl_len = attr.pkey_tbl_len;
1412 immutable->gid_tbl_len = attr.gid_tbl_len;
Ira Weinyf9b22e32015-05-13 20:02:59 -04001413 immutable->core_cap_flags = RDMA_CORE_PORT_IWARP;
Ira Weiny77386132015-05-13 20:02:58 -04001414
1415 return 0;
1416}
1417
Steve Wiseb038ced2007-02-12 16:16:18 -08001418int iwch_register_device(struct iwch_dev *dev)
1419{
1420 int ret;
1421 int i;
1422
Harvey Harrison33718362008-04-16 21:01:10 -07001423 PDBG("%s iwch_dev %p\n", __func__, dev);
Steve Wiseb038ced2007-02-12 16:16:18 -08001424 strlcpy(dev->ibdev.name, "cxgb3_%d", IB_DEVICE_NAME_MAX);
1425 memset(&dev->ibdev.node_guid, 0, sizeof(dev->ibdev.node_guid));
1426 memcpy(&dev->ibdev.node_guid, dev->rdev.t3cdev_p->lldev->dev_addr, 6);
1427 dev->ibdev.owner = THIS_MODULE;
Steve Wisebe433242008-08-04 11:08:37 -07001428 dev->device_cap_flags = IB_DEVICE_LOCAL_DMA_LKEY |
1429 IB_DEVICE_MEM_WINDOW |
1430 IB_DEVICE_MEM_MGT_EXTENSIONS;
Steve Wise96f15c02008-07-14 23:48:53 -07001431
1432 /* cxgb3 supports STag 0. */
1433 dev->ibdev.local_dma_lkey = 0;
Steve Wiseb038ced2007-02-12 16:16:18 -08001434
1435 dev->ibdev.uverbs_cmd_mask =
1436 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
1437 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
1438 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
1439 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
1440 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
1441 (1ull << IB_USER_VERBS_CMD_REG_MR) |
1442 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
1443 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
1444 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
1445 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
1446 (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) |
1447 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
1448 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
1449 (1ull << IB_USER_VERBS_CMD_POLL_CQ) |
1450 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
1451 (1ull << IB_USER_VERBS_CMD_POST_SEND) |
1452 (1ull << IB_USER_VERBS_CMD_POST_RECV);
1453 dev->ibdev.node_type = RDMA_NODE_RNIC;
1454 memcpy(dev->ibdev.node_desc, IWCH_NODE_DESC, sizeof(IWCH_NODE_DESC));
1455 dev->ibdev.phys_port_cnt = dev->rdev.port_info.nports;
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +03001456 dev->ibdev.num_comp_vectors = 1;
Steve Wiseb038ced2007-02-12 16:16:18 -08001457 dev->ibdev.dma_device = &(dev->rdev.rnic_info.pdev->dev);
Steve Wiseb038ced2007-02-12 16:16:18 -08001458 dev->ibdev.query_device = iwch_query_device;
1459 dev->ibdev.query_port = iwch_query_port;
Steve Wiseb038ced2007-02-12 16:16:18 -08001460 dev->ibdev.query_pkey = iwch_query_pkey;
1461 dev->ibdev.query_gid = iwch_query_gid;
1462 dev->ibdev.alloc_ucontext = iwch_alloc_ucontext;
1463 dev->ibdev.dealloc_ucontext = iwch_dealloc_ucontext;
1464 dev->ibdev.mmap = iwch_mmap;
1465 dev->ibdev.alloc_pd = iwch_allocate_pd;
1466 dev->ibdev.dealloc_pd = iwch_deallocate_pd;
1467 dev->ibdev.create_ah = iwch_ah_create;
1468 dev->ibdev.destroy_ah = iwch_ah_destroy;
1469 dev->ibdev.create_qp = iwch_create_qp;
1470 dev->ibdev.modify_qp = iwch_ib_modify_qp;
1471 dev->ibdev.destroy_qp = iwch_destroy_qp;
1472 dev->ibdev.create_cq = iwch_create_cq;
1473 dev->ibdev.destroy_cq = iwch_destroy_cq;
1474 dev->ibdev.resize_cq = iwch_resize_cq;
1475 dev->ibdev.poll_cq = iwch_poll_cq;
1476 dev->ibdev.get_dma_mr = iwch_get_dma_mr;
1477 dev->ibdev.reg_phys_mr = iwch_register_phys_mem;
1478 dev->ibdev.rereg_phys_mr = iwch_reregister_phys_mem;
1479 dev->ibdev.reg_user_mr = iwch_reg_user_mr;
1480 dev->ibdev.dereg_mr = iwch_dereg_mr;
1481 dev->ibdev.alloc_mw = iwch_alloc_mw;
1482 dev->ibdev.bind_mw = iwch_bind_mw;
1483 dev->ibdev.dealloc_mw = iwch_dealloc_mw;
Sagi Grimbergf683d3b2015-07-30 10:32:45 +03001484 dev->ibdev.alloc_mr = iwch_alloc_mr;
Sagi Grimberg14fb4172015-10-13 19:11:29 +03001485 dev->ibdev.map_mr_sg = iwch_map_mr_sg;
Steve Wisee7e55822008-07-14 23:48:45 -07001486 dev->ibdev.alloc_fast_reg_page_list = iwch_alloc_fastreg_pbl;
1487 dev->ibdev.free_fast_reg_page_list = iwch_free_fastreg_pbl;
Steve Wiseb038ced2007-02-12 16:16:18 -08001488 dev->ibdev.attach_mcast = iwch_multicast_attach;
1489 dev->ibdev.detach_mcast = iwch_multicast_detach;
1490 dev->ibdev.process_mad = iwch_process_mad;
Steve Wiseb038ced2007-02-12 16:16:18 -08001491 dev->ibdev.req_notify_cq = iwch_arm_cq;
1492 dev->ibdev.post_send = iwch_post_send;
1493 dev->ibdev.post_recv = iwch_post_receive;
Steve Wise14cc1802008-07-14 23:48:48 -07001494 dev->ibdev.get_protocol_stats = iwch_get_mib;
Steve Wiseb9551502010-10-21 12:37:06 +00001495 dev->ibdev.uverbs_abi_ver = IWCH_UVERBS_ABI_VERSION;
Ira Weiny77386132015-05-13 20:02:58 -04001496 dev->ibdev.get_port_immutable = iwch_port_immutable;
Steve Wiseb038ced2007-02-12 16:16:18 -08001497
WANG Cong6abb6ea2007-07-09 20:12:26 -07001498 dev->ibdev.iwcm = kmalloc(sizeof(struct iw_cm_verbs), GFP_KERNEL);
1499 if (!dev->ibdev.iwcm)
1500 return -ENOMEM;
1501
Steve Wiseb038ced2007-02-12 16:16:18 -08001502 dev->ibdev.iwcm->connect = iwch_connect;
1503 dev->ibdev.iwcm->accept = iwch_accept_cr;
1504 dev->ibdev.iwcm->reject = iwch_reject_cr;
1505 dev->ibdev.iwcm->create_listen = iwch_create_listen;
1506 dev->ibdev.iwcm->destroy_listen = iwch_destroy_listen;
1507 dev->ibdev.iwcm->add_ref = iwch_qp_add_ref;
1508 dev->ibdev.iwcm->rem_ref = iwch_qp_rem_ref;
1509 dev->ibdev.iwcm->get_qp = iwch_get_qp;
1510
Ralph Campbell9a6edb62010-05-06 17:03:25 -07001511 ret = ib_register_device(&dev->ibdev, NULL);
Steve Wiseb038ced2007-02-12 16:16:18 -08001512 if (ret)
1513 goto bail1;
1514
1515 for (i = 0; i < ARRAY_SIZE(iwch_class_attributes); ++i) {
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001516 ret = device_create_file(&dev->ibdev.dev,
1517 iwch_class_attributes[i]);
Steve Wiseb038ced2007-02-12 16:16:18 -08001518 if (ret) {
1519 goto bail2;
1520 }
1521 }
1522 return 0;
1523bail2:
1524 ib_unregister_device(&dev->ibdev);
1525bail1:
Steve Wise3793d2f2009-09-05 20:22:36 -07001526 kfree(dev->ibdev.iwcm);
Steve Wiseb038ced2007-02-12 16:16:18 -08001527 return ret;
1528}
1529
1530void iwch_unregister_device(struct iwch_dev *dev)
1531{
1532 int i;
1533
Harvey Harrison33718362008-04-16 21:01:10 -07001534 PDBG("%s iwch_dev %p\n", __func__, dev);
Steve Wiseb038ced2007-02-12 16:16:18 -08001535 for (i = 0; i < ARRAY_SIZE(iwch_class_attributes); ++i)
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001536 device_remove_file(&dev->ibdev.dev,
1537 iwch_class_attributes[i]);
Steve Wiseb038ced2007-02-12 16:16:18 -08001538 ib_unregister_device(&dev->ibdev);
Steve Wise3793d2f2009-09-05 20:22:36 -07001539 kfree(dev->ibdev.iwcm);
Steve Wiseb038ced2007-02-12 16:16:18 -08001540 return;
1541}