iwch_provider.c 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192
  1. /*
  2. * Copyright (c) 2006 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. *
  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>
  40. #include <linux/spinlock.h>
  41. #include <linux/ethtool.h>
  42. #include <asm/io.h>
  43. #include <asm/irq.h>
  44. #include <asm/byteorder.h>
  45. #include <rdma/iw_cm.h>
  46. #include <rdma/ib_verbs.h>
  47. #include <rdma/ib_smi.h>
  48. #include <rdma/ib_user_verbs.h>
  49. #include "cxio_hal.h"
  50. #include "iwch.h"
  51. #include "iwch_provider.h"
  52. #include "iwch_cm.h"
  53. #include "iwch_user.h"
  54. static int iwch_modify_port(struct ib_device *ibdev,
  55. u8 port, int port_modify_mask,
  56. struct ib_port_modify *props)
  57. {
  58. return -ENOSYS;
  59. }
  60. static struct ib_ah *iwch_ah_create(struct ib_pd *pd,
  61. struct ib_ah_attr *ah_attr)
  62. {
  63. return ERR_PTR(-ENOSYS);
  64. }
  65. static int iwch_ah_destroy(struct ib_ah *ah)
  66. {
  67. return -ENOSYS;
  68. }
  69. static int iwch_multicast_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
  70. {
  71. return -ENOSYS;
  72. }
  73. static int iwch_multicast_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
  74. {
  75. return -ENOSYS;
  76. }
  77. static int iwch_process_mad(struct ib_device *ibdev,
  78. int mad_flags,
  79. u8 port_num,
  80. struct ib_wc *in_wc,
  81. struct ib_grh *in_grh,
  82. struct ib_mad *in_mad, struct ib_mad *out_mad)
  83. {
  84. return -ENOSYS;
  85. }
  86. static int iwch_dealloc_ucontext(struct ib_ucontext *context)
  87. {
  88. struct iwch_dev *rhp = to_iwch_dev(context->device);
  89. struct iwch_ucontext *ucontext = to_iwch_ucontext(context);
  90. struct iwch_mm_entry *mm, *tmp;
  91. PDBG("%s context %p\n", __FUNCTION__, context);
  92. list_for_each_entry_safe(mm, tmp, &ucontext->mmaps, entry)
  93. kfree(mm);
  94. cxio_release_ucontext(&rhp->rdev, &ucontext->uctx);
  95. kfree(ucontext);
  96. return 0;
  97. }
  98. static struct ib_ucontext *iwch_alloc_ucontext(struct ib_device *ibdev,
  99. struct ib_udata *udata)
  100. {
  101. struct iwch_ucontext *context;
  102. struct iwch_dev *rhp = to_iwch_dev(ibdev);
  103. PDBG("%s ibdev %p\n", __FUNCTION__, ibdev);
  104. context = kzalloc(sizeof(*context), GFP_KERNEL);
  105. if (!context)
  106. return ERR_PTR(-ENOMEM);
  107. cxio_init_ucontext(&rhp->rdev, &context->uctx);
  108. INIT_LIST_HEAD(&context->mmaps);
  109. spin_lock_init(&context->mmap_lock);
  110. return &context->ibucontext;
  111. }
  112. static int iwch_destroy_cq(struct ib_cq *ib_cq)
  113. {
  114. struct iwch_cq *chp;
  115. PDBG("%s ib_cq %p\n", __FUNCTION__, ib_cq);
  116. chp = to_iwch_cq(ib_cq);
  117. remove_handle(chp->rhp, &chp->rhp->cqidr, chp->cq.cqid);
  118. atomic_dec(&chp->refcnt);
  119. wait_event(chp->wait, !atomic_read(&chp->refcnt));
  120. cxio_destroy_cq(&chp->rhp->rdev, &chp->cq);
  121. kfree(chp);
  122. return 0;
  123. }
  124. static struct ib_cq *iwch_create_cq(struct ib_device *ibdev, int entries, int vector,
  125. struct ib_ucontext *ib_context,
  126. struct ib_udata *udata)
  127. {
  128. struct iwch_dev *rhp;
  129. struct iwch_cq *chp;
  130. struct iwch_create_cq_resp uresp;
  131. struct iwch_create_cq_req ureq;
  132. struct iwch_ucontext *ucontext = NULL;
  133. PDBG("%s ib_dev %p entries %d\n", __FUNCTION__, ibdev, entries);
  134. rhp = to_iwch_dev(ibdev);
  135. chp = kzalloc(sizeof(*chp), GFP_KERNEL);
  136. if (!chp)
  137. return ERR_PTR(-ENOMEM);
  138. if (ib_context) {
  139. ucontext = to_iwch_ucontext(ib_context);
  140. if (!t3a_device(rhp)) {
  141. if (ib_copy_from_udata(&ureq, udata, sizeof (ureq))) {
  142. kfree(chp);
  143. return ERR_PTR(-EFAULT);
  144. }
  145. chp->user_rptr_addr = (u32 __user *)(unsigned long)ureq.user_rptr_addr;
  146. }
  147. }
  148. if (t3a_device(rhp)) {
  149. /*
  150. * T3A: Add some fluff to handle extra CQEs inserted
  151. * for various errors.
  152. * Additional CQE possibilities:
  153. * TERMINATE,
  154. * incoming RDMA WRITE Failures
  155. * incoming RDMA READ REQUEST FAILUREs
  156. * NOTE: We cannot ensure the CQ won't overflow.
  157. */
  158. entries += 16;
  159. }
  160. entries = roundup_pow_of_two(entries);
  161. chp->cq.size_log2 = ilog2(entries);
  162. if (cxio_create_cq(&rhp->rdev, &chp->cq)) {
  163. kfree(chp);
  164. return ERR_PTR(-ENOMEM);
  165. }
  166. chp->rhp = rhp;
  167. chp->ibcq.cqe = (1 << chp->cq.size_log2) - 1;
  168. spin_lock_init(&chp->lock);
  169. atomic_set(&chp->refcnt, 1);
  170. init_waitqueue_head(&chp->wait);
  171. insert_handle(rhp, &rhp->cqidr, chp, chp->cq.cqid);
  172. if (ucontext) {
  173. struct iwch_mm_entry *mm;
  174. mm = kmalloc(sizeof *mm, GFP_KERNEL);
  175. if (!mm) {
  176. iwch_destroy_cq(&chp->ibcq);
  177. return ERR_PTR(-ENOMEM);
  178. }
  179. uresp.cqid = chp->cq.cqid;
  180. uresp.size_log2 = chp->cq.size_log2;
  181. spin_lock(&ucontext->mmap_lock);
  182. uresp.key = ucontext->key;
  183. ucontext->key += PAGE_SIZE;
  184. spin_unlock(&ucontext->mmap_lock);
  185. if (ib_copy_to_udata(udata, &uresp, sizeof (uresp))) {
  186. kfree(mm);
  187. iwch_destroy_cq(&chp->ibcq);
  188. return ERR_PTR(-EFAULT);
  189. }
  190. mm->key = uresp.key;
  191. mm->addr = virt_to_phys(chp->cq.queue);
  192. mm->len = PAGE_ALIGN((1UL << uresp.size_log2) *
  193. sizeof (struct t3_cqe));
  194. insert_mmap(ucontext, mm);
  195. }
  196. PDBG("created cqid 0x%0x chp %p size 0x%0x, dma_addr 0x%0llx\n",
  197. chp->cq.cqid, chp, (1 << chp->cq.size_log2),
  198. (unsigned long long) chp->cq.dma_addr);
  199. return &chp->ibcq;
  200. }
  201. static int iwch_resize_cq(struct ib_cq *cq, int cqe, struct ib_udata *udata)
  202. {
  203. #ifdef notyet
  204. struct iwch_cq *chp = to_iwch_cq(cq);
  205. struct t3_cq oldcq, newcq;
  206. int ret;
  207. PDBG("%s ib_cq %p cqe %d\n", __FUNCTION__, cq, cqe);
  208. /* We don't downsize... */
  209. if (cqe <= cq->cqe)
  210. return 0;
  211. /* create new t3_cq with new size */
  212. cqe = roundup_pow_of_two(cqe+1);
  213. newcq.size_log2 = ilog2(cqe);
  214. /* Dont allow resize to less than the current wce count */
  215. if (cqe < Q_COUNT(chp->cq.rptr, chp->cq.wptr)) {
  216. return -ENOMEM;
  217. }
  218. /* Quiesce all QPs using this CQ */
  219. ret = iwch_quiesce_qps(chp);
  220. if (ret) {
  221. return ret;
  222. }
  223. ret = cxio_create_cq(&chp->rhp->rdev, &newcq);
  224. if (ret) {
  225. return ret;
  226. }
  227. /* copy CQEs */
  228. memcpy(newcq.queue, chp->cq.queue, (1 << chp->cq.size_log2) *
  229. sizeof(struct t3_cqe));
  230. /* old iwch_qp gets new t3_cq but keeps old cqid */
  231. oldcq = chp->cq;
  232. chp->cq = newcq;
  233. chp->cq.cqid = oldcq.cqid;
  234. /* resize new t3_cq to update the HW context */
  235. ret = cxio_resize_cq(&chp->rhp->rdev, &chp->cq);
  236. if (ret) {
  237. chp->cq = oldcq;
  238. return ret;
  239. }
  240. chp->ibcq.cqe = (1<<chp->cq.size_log2) - 1;
  241. /* destroy old t3_cq */
  242. oldcq.cqid = newcq.cqid;
  243. ret = cxio_destroy_cq(&chp->rhp->rdev, &oldcq);
  244. if (ret) {
  245. printk(KERN_ERR MOD "%s - cxio_destroy_cq failed %d\n",
  246. __FUNCTION__, ret);
  247. }
  248. /* add user hooks here */
  249. /* resume qps */
  250. ret = iwch_resume_qps(chp);
  251. return ret;
  252. #else
  253. return -ENOSYS;
  254. #endif
  255. }
  256. static int iwch_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify notify)
  257. {
  258. struct iwch_dev *rhp;
  259. struct iwch_cq *chp;
  260. enum t3_cq_opcode cq_op;
  261. int err;
  262. unsigned long flag;
  263. u32 rptr;
  264. chp = to_iwch_cq(ibcq);
  265. rhp = chp->rhp;
  266. if (notify == IB_CQ_SOLICITED)
  267. cq_op = CQ_ARM_SE;
  268. else
  269. cq_op = CQ_ARM_AN;
  270. if (chp->user_rptr_addr) {
  271. if (get_user(rptr, chp->user_rptr_addr))
  272. return -EFAULT;
  273. spin_lock_irqsave(&chp->lock, flag);
  274. chp->cq.rptr = rptr;
  275. } else
  276. spin_lock_irqsave(&chp->lock, flag);
  277. PDBG("%s rptr 0x%x\n", __FUNCTION__, chp->cq.rptr);
  278. err = cxio_hal_cq_op(&rhp->rdev, &chp->cq, cq_op, 0);
  279. spin_unlock_irqrestore(&chp->lock, flag);
  280. if (err)
  281. printk(KERN_ERR MOD "Error %d rearming CQID 0x%x\n", err,
  282. chp->cq.cqid);
  283. return err;
  284. }
  285. static int iwch_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
  286. {
  287. int len = vma->vm_end - vma->vm_start;
  288. u32 key = vma->vm_pgoff << PAGE_SHIFT;
  289. struct cxio_rdev *rdev_p;
  290. int ret = 0;
  291. struct iwch_mm_entry *mm;
  292. struct iwch_ucontext *ucontext;
  293. u64 addr;
  294. PDBG("%s pgoff 0x%lx key 0x%x len %d\n", __FUNCTION__, vma->vm_pgoff,
  295. key, len);
  296. if (vma->vm_start & (PAGE_SIZE-1)) {
  297. return -EINVAL;
  298. }
  299. rdev_p = &(to_iwch_dev(context->device)->rdev);
  300. ucontext = to_iwch_ucontext(context);
  301. mm = remove_mmap(ucontext, key, len);
  302. if (!mm)
  303. return -EINVAL;
  304. addr = mm->addr;
  305. kfree(mm);
  306. if ((addr >= rdev_p->rnic_info.udbell_physbase) &&
  307. (addr < (rdev_p->rnic_info.udbell_physbase +
  308. rdev_p->rnic_info.udbell_len))) {
  309. /*
  310. * Map T3 DB register.
  311. */
  312. if (vma->vm_flags & VM_READ) {
  313. return -EPERM;
  314. }
  315. vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
  316. vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND;
  317. vma->vm_flags &= ~VM_MAYREAD;
  318. ret = io_remap_pfn_range(vma, vma->vm_start,
  319. addr >> PAGE_SHIFT,
  320. len, vma->vm_page_prot);
  321. } else {
  322. /*
  323. * Map WQ or CQ contig dma memory...
  324. */
  325. ret = remap_pfn_range(vma, vma->vm_start,
  326. addr >> PAGE_SHIFT,
  327. len, vma->vm_page_prot);
  328. }
  329. return ret;
  330. }
  331. static int iwch_deallocate_pd(struct ib_pd *pd)
  332. {
  333. struct iwch_dev *rhp;
  334. struct iwch_pd *php;
  335. php = to_iwch_pd(pd);
  336. rhp = php->rhp;
  337. PDBG("%s ibpd %p pdid 0x%x\n", __FUNCTION__, pd, php->pdid);
  338. cxio_hal_put_pdid(rhp->rdev.rscp, php->pdid);
  339. kfree(php);
  340. return 0;
  341. }
  342. static struct ib_pd *iwch_allocate_pd(struct ib_device *ibdev,
  343. struct ib_ucontext *context,
  344. struct ib_udata *udata)
  345. {
  346. struct iwch_pd *php;
  347. u32 pdid;
  348. struct iwch_dev *rhp;
  349. PDBG("%s ibdev %p\n", __FUNCTION__, ibdev);
  350. rhp = (struct iwch_dev *) ibdev;
  351. pdid = cxio_hal_get_pdid(rhp->rdev.rscp);
  352. if (!pdid)
  353. return ERR_PTR(-EINVAL);
  354. php = kzalloc(sizeof(*php), GFP_KERNEL);
  355. if (!php) {
  356. cxio_hal_put_pdid(rhp->rdev.rscp, pdid);
  357. return ERR_PTR(-ENOMEM);
  358. }
  359. php->pdid = pdid;
  360. php->rhp = rhp;
  361. if (context) {
  362. if (ib_copy_to_udata(udata, &php->pdid, sizeof (__u32))) {
  363. iwch_deallocate_pd(&php->ibpd);
  364. return ERR_PTR(-EFAULT);
  365. }
  366. }
  367. PDBG("%s pdid 0x%0x ptr 0x%p\n", __FUNCTION__, pdid, php);
  368. return &php->ibpd;
  369. }
  370. static int iwch_dereg_mr(struct ib_mr *ib_mr)
  371. {
  372. struct iwch_dev *rhp;
  373. struct iwch_mr *mhp;
  374. u32 mmid;
  375. PDBG("%s ib_mr %p\n", __FUNCTION__, ib_mr);
  376. /* There can be no memory windows */
  377. if (atomic_read(&ib_mr->usecnt))
  378. return -EINVAL;
  379. mhp = to_iwch_mr(ib_mr);
  380. rhp = mhp->rhp;
  381. mmid = mhp->attr.stag >> 8;
  382. cxio_dereg_mem(&rhp->rdev, mhp->attr.stag, mhp->attr.pbl_size,
  383. mhp->attr.pbl_addr);
  384. remove_handle(rhp, &rhp->mmidr, mmid);
  385. if (mhp->kva)
  386. kfree((void *) (unsigned long) mhp->kva);
  387. PDBG("%s mmid 0x%x ptr %p\n", __FUNCTION__, mmid, mhp);
  388. kfree(mhp);
  389. return 0;
  390. }
  391. static struct ib_mr *iwch_register_phys_mem(struct ib_pd *pd,
  392. struct ib_phys_buf *buffer_list,
  393. int num_phys_buf,
  394. int acc,
  395. u64 *iova_start)
  396. {
  397. __be64 *page_list;
  398. int shift;
  399. u64 total_size;
  400. int npages;
  401. struct iwch_dev *rhp;
  402. struct iwch_pd *php;
  403. struct iwch_mr *mhp;
  404. int ret;
  405. PDBG("%s ib_pd %p\n", __FUNCTION__, pd);
  406. php = to_iwch_pd(pd);
  407. rhp = php->rhp;
  408. mhp = kzalloc(sizeof(*mhp), GFP_KERNEL);
  409. if (!mhp)
  410. return ERR_PTR(-ENOMEM);
  411. /* First check that we have enough alignment */
  412. if ((*iova_start & ~PAGE_MASK) != (buffer_list[0].addr & ~PAGE_MASK)) {
  413. ret = -EINVAL;
  414. goto err;
  415. }
  416. if (num_phys_buf > 1 &&
  417. ((buffer_list[0].addr + buffer_list[0].size) & ~PAGE_MASK)) {
  418. ret = -EINVAL;
  419. goto err;
  420. }
  421. ret = build_phys_page_list(buffer_list, num_phys_buf, iova_start,
  422. &total_size, &npages, &shift, &page_list);
  423. if (ret)
  424. goto err;
  425. mhp->rhp = rhp;
  426. mhp->attr.pdid = php->pdid;
  427. mhp->attr.zbva = 0;
  428. mhp->attr.perms = iwch_ib_to_tpt_access(acc);
  429. mhp->attr.va_fbo = *iova_start;
  430. mhp->attr.page_size = shift - 12;
  431. mhp->attr.len = (u32) total_size;
  432. mhp->attr.pbl_size = npages;
  433. ret = iwch_register_mem(rhp, php, mhp, shift, page_list);
  434. kfree(page_list);
  435. if (ret) {
  436. goto err;
  437. }
  438. return &mhp->ibmr;
  439. err:
  440. kfree(mhp);
  441. return ERR_PTR(ret);
  442. }
  443. static int iwch_reregister_phys_mem(struct ib_mr *mr,
  444. int mr_rereg_mask,
  445. struct ib_pd *pd,
  446. struct ib_phys_buf *buffer_list,
  447. int num_phys_buf,
  448. int acc, u64 * iova_start)
  449. {
  450. struct iwch_mr mh, *mhp;
  451. struct iwch_pd *php;
  452. struct iwch_dev *rhp;
  453. __be64 *page_list = NULL;
  454. int shift = 0;
  455. u64 total_size;
  456. int npages;
  457. int ret;
  458. PDBG("%s ib_mr %p ib_pd %p\n", __FUNCTION__, mr, pd);
  459. /* There can be no memory windows */
  460. if (atomic_read(&mr->usecnt))
  461. return -EINVAL;
  462. mhp = to_iwch_mr(mr);
  463. rhp = mhp->rhp;
  464. php = to_iwch_pd(mr->pd);
  465. /* make sure we are on the same adapter */
  466. if (rhp != php->rhp)
  467. return -EINVAL;
  468. memcpy(&mh, mhp, sizeof *mhp);
  469. if (mr_rereg_mask & IB_MR_REREG_PD)
  470. php = to_iwch_pd(pd);
  471. if (mr_rereg_mask & IB_MR_REREG_ACCESS)
  472. mh.attr.perms = iwch_ib_to_tpt_access(acc);
  473. if (mr_rereg_mask & IB_MR_REREG_TRANS) {
  474. ret = build_phys_page_list(buffer_list, num_phys_buf,
  475. iova_start,
  476. &total_size, &npages,
  477. &shift, &page_list);
  478. if (ret)
  479. return ret;
  480. }
  481. ret = iwch_reregister_mem(rhp, php, &mh, shift, page_list, npages);
  482. kfree(page_list);
  483. if (ret) {
  484. return ret;
  485. }
  486. if (mr_rereg_mask & IB_MR_REREG_PD)
  487. mhp->attr.pdid = php->pdid;
  488. if (mr_rereg_mask & IB_MR_REREG_ACCESS)
  489. mhp->attr.perms = iwch_ib_to_tpt_access(acc);
  490. if (mr_rereg_mask & IB_MR_REREG_TRANS) {
  491. mhp->attr.zbva = 0;
  492. mhp->attr.va_fbo = *iova_start;
  493. mhp->attr.page_size = shift - 12;
  494. mhp->attr.len = (u32) total_size;
  495. mhp->attr.pbl_size = npages;
  496. }
  497. return 0;
  498. }
  499. static struct ib_mr *iwch_reg_user_mr(struct ib_pd *pd, struct ib_umem *region,
  500. int acc, struct ib_udata *udata)
  501. {
  502. __be64 *pages;
  503. int shift, n, len;
  504. int i, j, k;
  505. int err = 0;
  506. struct ib_umem_chunk *chunk;
  507. struct iwch_dev *rhp;
  508. struct iwch_pd *php;
  509. struct iwch_mr *mhp;
  510. struct iwch_reg_user_mr_resp uresp;
  511. PDBG("%s ib_pd %p\n", __FUNCTION__, pd);
  512. shift = ffs(region->page_size) - 1;
  513. php = to_iwch_pd(pd);
  514. rhp = php->rhp;
  515. mhp = kzalloc(sizeof(*mhp), GFP_KERNEL);
  516. if (!mhp)
  517. return ERR_PTR(-ENOMEM);
  518. n = 0;
  519. list_for_each_entry(chunk, &region->chunk_list, list)
  520. n += chunk->nents;
  521. pages = kmalloc(n * sizeof(u64), GFP_KERNEL);
  522. if (!pages) {
  523. err = -ENOMEM;
  524. goto err;
  525. }
  526. i = n = 0;
  527. list_for_each_entry(chunk, &region->chunk_list, list)
  528. for (j = 0; j < chunk->nmap; ++j) {
  529. len = sg_dma_len(&chunk->page_list[j]) >> shift;
  530. for (k = 0; k < len; ++k) {
  531. pages[i++] = cpu_to_be64(sg_dma_address(
  532. &chunk->page_list[j]) +
  533. region->page_size * k);
  534. }
  535. }
  536. mhp->rhp = rhp;
  537. mhp->attr.pdid = php->pdid;
  538. mhp->attr.zbva = 0;
  539. mhp->attr.perms = iwch_ib_to_tpt_access(acc);
  540. mhp->attr.va_fbo = region->virt_base;
  541. mhp->attr.page_size = shift - 12;
  542. mhp->attr.len = (u32) region->length;
  543. mhp->attr.pbl_size = i;
  544. err = iwch_register_mem(rhp, php, mhp, shift, pages);
  545. kfree(pages);
  546. if (err)
  547. goto err;
  548. if (udata && t3b_device(rhp)) {
  549. uresp.pbl_addr = (mhp->attr.pbl_addr -
  550. rhp->rdev.rnic_info.pbl_base) >> 3;
  551. PDBG("%s user resp pbl_addr 0x%x\n", __FUNCTION__,
  552. uresp.pbl_addr);
  553. if (ib_copy_to_udata(udata, &uresp, sizeof (uresp))) {
  554. iwch_dereg_mr(&mhp->ibmr);
  555. err = -EFAULT;
  556. goto err;
  557. }
  558. }
  559. return &mhp->ibmr;
  560. err:
  561. kfree(mhp);
  562. return ERR_PTR(err);
  563. }
  564. static struct ib_mr *iwch_get_dma_mr(struct ib_pd *pd, int acc)
  565. {
  566. struct ib_phys_buf bl;
  567. u64 kva;
  568. struct ib_mr *ibmr;
  569. PDBG("%s ib_pd %p\n", __FUNCTION__, pd);
  570. /*
  571. * T3 only supports 32 bits of size.
  572. */
  573. bl.size = 0xffffffff;
  574. bl.addr = 0;
  575. kva = 0;
  576. ibmr = iwch_register_phys_mem(pd, &bl, 1, acc, &kva);
  577. return ibmr;
  578. }
  579. static struct ib_mw *iwch_alloc_mw(struct ib_pd *pd)
  580. {
  581. struct iwch_dev *rhp;
  582. struct iwch_pd *php;
  583. struct iwch_mw *mhp;
  584. u32 mmid;
  585. u32 stag = 0;
  586. int ret;
  587. php = to_iwch_pd(pd);
  588. rhp = php->rhp;
  589. mhp = kzalloc(sizeof(*mhp), GFP_KERNEL);
  590. if (!mhp)
  591. return ERR_PTR(-ENOMEM);
  592. ret = cxio_allocate_window(&rhp->rdev, &stag, php->pdid);
  593. if (ret) {
  594. kfree(mhp);
  595. return ERR_PTR(ret);
  596. }
  597. mhp->rhp = rhp;
  598. mhp->attr.pdid = php->pdid;
  599. mhp->attr.type = TPT_MW;
  600. mhp->attr.stag = stag;
  601. mmid = (stag) >> 8;
  602. insert_handle(rhp, &rhp->mmidr, mhp, mmid);
  603. PDBG("%s mmid 0x%x mhp %p stag 0x%x\n", __FUNCTION__, mmid, mhp, stag);
  604. return &(mhp->ibmw);
  605. }
  606. static int iwch_dealloc_mw(struct ib_mw *mw)
  607. {
  608. struct iwch_dev *rhp;
  609. struct iwch_mw *mhp;
  610. u32 mmid;
  611. mhp = to_iwch_mw(mw);
  612. rhp = mhp->rhp;
  613. mmid = (mw->rkey) >> 8;
  614. cxio_deallocate_window(&rhp->rdev, mhp->attr.stag);
  615. remove_handle(rhp, &rhp->mmidr, mmid);
  616. kfree(mhp);
  617. PDBG("%s ib_mw %p mmid 0x%x ptr %p\n", __FUNCTION__, mw, mmid, mhp);
  618. return 0;
  619. }
  620. static int iwch_destroy_qp(struct ib_qp *ib_qp)
  621. {
  622. struct iwch_dev *rhp;
  623. struct iwch_qp *qhp;
  624. struct iwch_qp_attributes attrs;
  625. struct iwch_ucontext *ucontext;
  626. qhp = to_iwch_qp(ib_qp);
  627. rhp = qhp->rhp;
  628. attrs.next_state = IWCH_QP_STATE_ERROR;
  629. iwch_modify_qp(rhp, qhp, IWCH_QP_ATTR_NEXT_STATE, &attrs, 0);
  630. wait_event(qhp->wait, !qhp->ep);
  631. remove_handle(rhp, &rhp->qpidr, qhp->wq.qpid);
  632. atomic_dec(&qhp->refcnt);
  633. wait_event(qhp->wait, !atomic_read(&qhp->refcnt));
  634. ucontext = ib_qp->uobject ? to_iwch_ucontext(ib_qp->uobject->context)
  635. : NULL;
  636. cxio_destroy_qp(&rhp->rdev, &qhp->wq,
  637. ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
  638. PDBG("%s ib_qp %p qpid 0x%0x qhp %p\n", __FUNCTION__,
  639. ib_qp, qhp->wq.qpid, qhp);
  640. kfree(qhp);
  641. return 0;
  642. }
  643. static struct ib_qp *iwch_create_qp(struct ib_pd *pd,
  644. struct ib_qp_init_attr *attrs,
  645. struct ib_udata *udata)
  646. {
  647. struct iwch_dev *rhp;
  648. struct iwch_qp *qhp;
  649. struct iwch_pd *php;
  650. struct iwch_cq *schp;
  651. struct iwch_cq *rchp;
  652. struct iwch_create_qp_resp uresp;
  653. int wqsize, sqsize, rqsize;
  654. struct iwch_ucontext *ucontext;
  655. PDBG("%s ib_pd %p\n", __FUNCTION__, pd);
  656. if (attrs->qp_type != IB_QPT_RC)
  657. return ERR_PTR(-EINVAL);
  658. php = to_iwch_pd(pd);
  659. rhp = php->rhp;
  660. schp = get_chp(rhp, ((struct iwch_cq *) attrs->send_cq)->cq.cqid);
  661. rchp = get_chp(rhp, ((struct iwch_cq *) attrs->recv_cq)->cq.cqid);
  662. if (!schp || !rchp)
  663. return ERR_PTR(-EINVAL);
  664. /* The RQT size must be # of entries + 1 rounded up to a power of two */
  665. rqsize = roundup_pow_of_two(attrs->cap.max_recv_wr);
  666. if (rqsize == attrs->cap.max_recv_wr)
  667. rqsize = roundup_pow_of_two(attrs->cap.max_recv_wr+1);
  668. /* T3 doesn't support RQT depth < 16 */
  669. if (rqsize < 16)
  670. rqsize = 16;
  671. if (rqsize > T3_MAX_RQ_SIZE)
  672. return ERR_PTR(-EINVAL);
  673. if (attrs->cap.max_inline_data > T3_MAX_INLINE)
  674. return ERR_PTR(-EINVAL);
  675. /*
  676. * NOTE: The SQ and total WQ sizes don't need to be
  677. * a power of two. However, all the code assumes
  678. * they are. EG: Q_FREECNT() and friends.
  679. */
  680. sqsize = roundup_pow_of_two(attrs->cap.max_send_wr);
  681. wqsize = roundup_pow_of_two(rqsize + sqsize);
  682. PDBG("%s wqsize %d sqsize %d rqsize %d\n", __FUNCTION__,
  683. wqsize, sqsize, rqsize);
  684. qhp = kzalloc(sizeof(*qhp), GFP_KERNEL);
  685. if (!qhp)
  686. return ERR_PTR(-ENOMEM);
  687. qhp->wq.size_log2 = ilog2(wqsize);
  688. qhp->wq.rq_size_log2 = ilog2(rqsize);
  689. qhp->wq.sq_size_log2 = ilog2(sqsize);
  690. ucontext = pd->uobject ? to_iwch_ucontext(pd->uobject->context) : NULL;
  691. if (cxio_create_qp(&rhp->rdev, !udata, &qhp->wq,
  692. ucontext ? &ucontext->uctx : &rhp->rdev.uctx)) {
  693. kfree(qhp);
  694. return ERR_PTR(-ENOMEM);
  695. }
  696. attrs->cap.max_recv_wr = rqsize - 1;
  697. attrs->cap.max_send_wr = sqsize;
  698. qhp->rhp = rhp;
  699. qhp->attr.pd = php->pdid;
  700. qhp->attr.scq = ((struct iwch_cq *) attrs->send_cq)->cq.cqid;
  701. qhp->attr.rcq = ((struct iwch_cq *) attrs->recv_cq)->cq.cqid;
  702. qhp->attr.sq_num_entries = attrs->cap.max_send_wr;
  703. qhp->attr.rq_num_entries = attrs->cap.max_recv_wr;
  704. qhp->attr.sq_max_sges = attrs->cap.max_send_sge;
  705. qhp->attr.sq_max_sges_rdma_write = attrs->cap.max_send_sge;
  706. qhp->attr.rq_max_sges = attrs->cap.max_recv_sge;
  707. qhp->attr.state = IWCH_QP_STATE_IDLE;
  708. qhp->attr.next_state = IWCH_QP_STATE_IDLE;
  709. /*
  710. * XXX - These don't get passed in from the openib user
  711. * at create time. The CM sets them via a QP modify.
  712. * Need to fix... I think the CM should
  713. */
  714. qhp->attr.enable_rdma_read = 1;
  715. qhp->attr.enable_rdma_write = 1;
  716. qhp->attr.enable_bind = 1;
  717. qhp->attr.max_ord = 1;
  718. qhp->attr.max_ird = 1;
  719. spin_lock_init(&qhp->lock);
  720. init_waitqueue_head(&qhp->wait);
  721. atomic_set(&qhp->refcnt, 1);
  722. insert_handle(rhp, &rhp->qpidr, qhp, qhp->wq.qpid);
  723. if (udata) {
  724. struct iwch_mm_entry *mm1, *mm2;
  725. mm1 = kmalloc(sizeof *mm1, GFP_KERNEL);
  726. if (!mm1) {
  727. iwch_destroy_qp(&qhp->ibqp);
  728. return ERR_PTR(-ENOMEM);
  729. }
  730. mm2 = kmalloc(sizeof *mm2, GFP_KERNEL);
  731. if (!mm2) {
  732. kfree(mm1);
  733. iwch_destroy_qp(&qhp->ibqp);
  734. return ERR_PTR(-ENOMEM);
  735. }
  736. uresp.qpid = qhp->wq.qpid;
  737. uresp.size_log2 = qhp->wq.size_log2;
  738. uresp.sq_size_log2 = qhp->wq.sq_size_log2;
  739. uresp.rq_size_log2 = qhp->wq.rq_size_log2;
  740. spin_lock(&ucontext->mmap_lock);
  741. uresp.key = ucontext->key;
  742. ucontext->key += PAGE_SIZE;
  743. uresp.db_key = ucontext->key;
  744. ucontext->key += PAGE_SIZE;
  745. spin_unlock(&ucontext->mmap_lock);
  746. if (ib_copy_to_udata(udata, &uresp, sizeof (uresp))) {
  747. kfree(mm1);
  748. kfree(mm2);
  749. iwch_destroy_qp(&qhp->ibqp);
  750. return ERR_PTR(-EFAULT);
  751. }
  752. mm1->key = uresp.key;
  753. mm1->addr = virt_to_phys(qhp->wq.queue);
  754. mm1->len = PAGE_ALIGN(wqsize * sizeof (union t3_wr));
  755. insert_mmap(ucontext, mm1);
  756. mm2->key = uresp.db_key;
  757. mm2->addr = qhp->wq.udb & PAGE_MASK;
  758. mm2->len = PAGE_SIZE;
  759. insert_mmap(ucontext, mm2);
  760. }
  761. qhp->ibqp.qp_num = qhp->wq.qpid;
  762. init_timer(&(qhp->timer));
  763. PDBG("%s sq_num_entries %d, rq_num_entries %d "
  764. "qpid 0x%0x qhp %p dma_addr 0x%llx size %d\n",
  765. __FUNCTION__, qhp->attr.sq_num_entries, qhp->attr.rq_num_entries,
  766. qhp->wq.qpid, qhp, (unsigned long long) qhp->wq.dma_addr,
  767. 1 << qhp->wq.size_log2);
  768. return &qhp->ibqp;
  769. }
  770. static int iwch_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
  771. int attr_mask, struct ib_udata *udata)
  772. {
  773. struct iwch_dev *rhp;
  774. struct iwch_qp *qhp;
  775. enum iwch_qp_attr_mask mask = 0;
  776. struct iwch_qp_attributes attrs;
  777. PDBG("%s ib_qp %p\n", __FUNCTION__, ibqp);
  778. /* iwarp does not support the RTR state */
  779. if ((attr_mask & IB_QP_STATE) && (attr->qp_state == IB_QPS_RTR))
  780. attr_mask &= ~IB_QP_STATE;
  781. /* Make sure we still have something left to do */
  782. if (!attr_mask)
  783. return 0;
  784. memset(&attrs, 0, sizeof attrs);
  785. qhp = to_iwch_qp(ibqp);
  786. rhp = qhp->rhp;
  787. attrs.next_state = iwch_convert_state(attr->qp_state);
  788. attrs.enable_rdma_read = (attr->qp_access_flags &
  789. IB_ACCESS_REMOTE_READ) ? 1 : 0;
  790. attrs.enable_rdma_write = (attr->qp_access_flags &
  791. IB_ACCESS_REMOTE_WRITE) ? 1 : 0;
  792. attrs.enable_bind = (attr->qp_access_flags & IB_ACCESS_MW_BIND) ? 1 : 0;
  793. mask |= (attr_mask & IB_QP_STATE) ? IWCH_QP_ATTR_NEXT_STATE : 0;
  794. mask |= (attr_mask & IB_QP_ACCESS_FLAGS) ?
  795. (IWCH_QP_ATTR_ENABLE_RDMA_READ |
  796. IWCH_QP_ATTR_ENABLE_RDMA_WRITE |
  797. IWCH_QP_ATTR_ENABLE_RDMA_BIND) : 0;
  798. return iwch_modify_qp(rhp, qhp, mask, &attrs, 0);
  799. }
  800. void iwch_qp_add_ref(struct ib_qp *qp)
  801. {
  802. PDBG("%s ib_qp %p\n", __FUNCTION__, qp);
  803. atomic_inc(&(to_iwch_qp(qp)->refcnt));
  804. }
  805. void iwch_qp_rem_ref(struct ib_qp *qp)
  806. {
  807. PDBG("%s ib_qp %p\n", __FUNCTION__, qp);
  808. if (atomic_dec_and_test(&(to_iwch_qp(qp)->refcnt)))
  809. wake_up(&(to_iwch_qp(qp)->wait));
  810. }
  811. static struct ib_qp *iwch_get_qp(struct ib_device *dev, int qpn)
  812. {
  813. PDBG("%s ib_dev %p qpn 0x%x\n", __FUNCTION__, dev, qpn);
  814. return (struct ib_qp *)get_qhp(to_iwch_dev(dev), qpn);
  815. }
  816. static int iwch_query_pkey(struct ib_device *ibdev,
  817. u8 port, u16 index, u16 * pkey)
  818. {
  819. PDBG("%s ibdev %p\n", __FUNCTION__, ibdev);
  820. *pkey = 0;
  821. return 0;
  822. }
  823. static int iwch_query_gid(struct ib_device *ibdev, u8 port,
  824. int index, union ib_gid *gid)
  825. {
  826. struct iwch_dev *dev;
  827. PDBG("%s ibdev %p, port %d, index %d, gid %p\n",
  828. __FUNCTION__, ibdev, port, index, gid);
  829. dev = to_iwch_dev(ibdev);
  830. BUG_ON(port == 0 || port > 2);
  831. memset(&(gid->raw[0]), 0, sizeof(gid->raw));
  832. memcpy(&(gid->raw[0]), dev->rdev.port_info.lldevs[port-1]->dev_addr, 6);
  833. return 0;
  834. }
  835. static int iwch_query_device(struct ib_device *ibdev,
  836. struct ib_device_attr *props)
  837. {
  838. struct iwch_dev *dev;
  839. PDBG("%s ibdev %p\n", __FUNCTION__, ibdev);
  840. dev = to_iwch_dev(ibdev);
  841. memset(props, 0, sizeof *props);
  842. memcpy(&props->sys_image_guid, dev->rdev.t3cdev_p->lldev->dev_addr, 6);
  843. props->device_cap_flags = dev->device_cap_flags;
  844. props->vendor_id = (u32)dev->rdev.rnic_info.pdev->vendor;
  845. props->vendor_part_id = (u32)dev->rdev.rnic_info.pdev->device;
  846. props->max_mr_size = ~0ull;
  847. props->max_qp = dev->attr.max_qps;
  848. props->max_qp_wr = dev->attr.max_wrs;
  849. props->max_sge = dev->attr.max_sge_per_wr;
  850. props->max_sge_rd = 1;
  851. props->max_qp_rd_atom = dev->attr.max_rdma_reads_per_qp;
  852. props->max_cq = dev->attr.max_cqs;
  853. props->max_cqe = dev->attr.max_cqes_per_cq;
  854. props->max_mr = dev->attr.max_mem_regs;
  855. props->max_pd = dev->attr.max_pds;
  856. props->local_ca_ack_delay = 0;
  857. return 0;
  858. }
  859. static int iwch_query_port(struct ib_device *ibdev,
  860. u8 port, struct ib_port_attr *props)
  861. {
  862. PDBG("%s ibdev %p\n", __FUNCTION__, ibdev);
  863. props->max_mtu = IB_MTU_4096;
  864. props->lid = 0;
  865. props->lmc = 0;
  866. props->sm_lid = 0;
  867. props->sm_sl = 0;
  868. props->state = IB_PORT_ACTIVE;
  869. props->phys_state = 0;
  870. props->port_cap_flags =
  871. IB_PORT_CM_SUP |
  872. IB_PORT_SNMP_TUNNEL_SUP |
  873. IB_PORT_REINIT_SUP |
  874. IB_PORT_DEVICE_MGMT_SUP |
  875. IB_PORT_VENDOR_CLASS_SUP | IB_PORT_BOOT_MGMT_SUP;
  876. props->gid_tbl_len = 1;
  877. props->pkey_tbl_len = 1;
  878. props->qkey_viol_cntr = 0;
  879. props->active_width = 2;
  880. props->active_speed = 2;
  881. props->max_msg_sz = -1;
  882. return 0;
  883. }
  884. static ssize_t show_rev(struct class_device *cdev, char *buf)
  885. {
  886. struct iwch_dev *dev = container_of(cdev, struct iwch_dev,
  887. ibdev.class_dev);
  888. PDBG("%s class dev 0x%p\n", __FUNCTION__, cdev);
  889. return sprintf(buf, "%d\n", dev->rdev.t3cdev_p->type);
  890. }
  891. static ssize_t show_fw_ver(struct class_device *cdev, char *buf)
  892. {
  893. struct iwch_dev *dev = container_of(cdev, struct iwch_dev,
  894. ibdev.class_dev);
  895. struct ethtool_drvinfo info;
  896. struct net_device *lldev = dev->rdev.t3cdev_p->lldev;
  897. PDBG("%s class dev 0x%p\n", __FUNCTION__, cdev);
  898. lldev->ethtool_ops->get_drvinfo(lldev, &info);
  899. return sprintf(buf, "%s\n", info.fw_version);
  900. }
  901. static ssize_t show_hca(struct class_device *cdev, char *buf)
  902. {
  903. struct iwch_dev *dev = container_of(cdev, struct iwch_dev,
  904. ibdev.class_dev);
  905. struct ethtool_drvinfo info;
  906. struct net_device *lldev = dev->rdev.t3cdev_p->lldev;
  907. PDBG("%s class dev 0x%p\n", __FUNCTION__, cdev);
  908. lldev->ethtool_ops->get_drvinfo(lldev, &info);
  909. return sprintf(buf, "%s\n", info.driver);
  910. }
  911. static ssize_t show_board(struct class_device *cdev, char *buf)
  912. {
  913. struct iwch_dev *dev = container_of(cdev, struct iwch_dev,
  914. ibdev.class_dev);
  915. PDBG("%s class dev 0x%p\n", __FUNCTION__, dev);
  916. return sprintf(buf, "%x.%x\n", dev->rdev.rnic_info.pdev->vendor,
  917. dev->rdev.rnic_info.pdev->device);
  918. }
  919. static CLASS_DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
  920. static CLASS_DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
  921. static CLASS_DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
  922. static CLASS_DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
  923. static struct class_device_attribute *iwch_class_attributes[] = {
  924. &class_device_attr_hw_rev,
  925. &class_device_attr_fw_ver,
  926. &class_device_attr_hca_type,
  927. &class_device_attr_board_id
  928. };
  929. int iwch_register_device(struct iwch_dev *dev)
  930. {
  931. int ret;
  932. int i;
  933. PDBG("%s iwch_dev %p\n", __FUNCTION__, dev);
  934. strlcpy(dev->ibdev.name, "cxgb3_%d", IB_DEVICE_NAME_MAX);
  935. memset(&dev->ibdev.node_guid, 0, sizeof(dev->ibdev.node_guid));
  936. memcpy(&dev->ibdev.node_guid, dev->rdev.t3cdev_p->lldev->dev_addr, 6);
  937. dev->ibdev.owner = THIS_MODULE;
  938. dev->device_cap_flags =
  939. (IB_DEVICE_ZERO_STAG |
  940. IB_DEVICE_SEND_W_INV | IB_DEVICE_MEM_WINDOW);
  941. dev->ibdev.uverbs_cmd_mask =
  942. (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
  943. (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
  944. (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
  945. (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
  946. (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
  947. (1ull << IB_USER_VERBS_CMD_REG_MR) |
  948. (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
  949. (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
  950. (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
  951. (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
  952. (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) |
  953. (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
  954. (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
  955. (1ull << IB_USER_VERBS_CMD_POLL_CQ) |
  956. (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
  957. (1ull << IB_USER_VERBS_CMD_POST_SEND) |
  958. (1ull << IB_USER_VERBS_CMD_POST_RECV);
  959. dev->ibdev.node_type = RDMA_NODE_RNIC;
  960. memcpy(dev->ibdev.node_desc, IWCH_NODE_DESC, sizeof(IWCH_NODE_DESC));
  961. dev->ibdev.phys_port_cnt = dev->rdev.port_info.nports;
  962. dev->ibdev.num_comp_vectors = 1;
  963. dev->ibdev.dma_device = &(dev->rdev.rnic_info.pdev->dev);
  964. dev->ibdev.query_device = iwch_query_device;
  965. dev->ibdev.query_port = iwch_query_port;
  966. dev->ibdev.modify_port = iwch_modify_port;
  967. dev->ibdev.query_pkey = iwch_query_pkey;
  968. dev->ibdev.query_gid = iwch_query_gid;
  969. dev->ibdev.alloc_ucontext = iwch_alloc_ucontext;
  970. dev->ibdev.dealloc_ucontext = iwch_dealloc_ucontext;
  971. dev->ibdev.mmap = iwch_mmap;
  972. dev->ibdev.alloc_pd = iwch_allocate_pd;
  973. dev->ibdev.dealloc_pd = iwch_deallocate_pd;
  974. dev->ibdev.create_ah = iwch_ah_create;
  975. dev->ibdev.destroy_ah = iwch_ah_destroy;
  976. dev->ibdev.create_qp = iwch_create_qp;
  977. dev->ibdev.modify_qp = iwch_ib_modify_qp;
  978. dev->ibdev.destroy_qp = iwch_destroy_qp;
  979. dev->ibdev.create_cq = iwch_create_cq;
  980. dev->ibdev.destroy_cq = iwch_destroy_cq;
  981. dev->ibdev.resize_cq = iwch_resize_cq;
  982. dev->ibdev.poll_cq = iwch_poll_cq;
  983. dev->ibdev.get_dma_mr = iwch_get_dma_mr;
  984. dev->ibdev.reg_phys_mr = iwch_register_phys_mem;
  985. dev->ibdev.rereg_phys_mr = iwch_reregister_phys_mem;
  986. dev->ibdev.reg_user_mr = iwch_reg_user_mr;
  987. dev->ibdev.dereg_mr = iwch_dereg_mr;
  988. dev->ibdev.alloc_mw = iwch_alloc_mw;
  989. dev->ibdev.bind_mw = iwch_bind_mw;
  990. dev->ibdev.dealloc_mw = iwch_dealloc_mw;
  991. dev->ibdev.attach_mcast = iwch_multicast_attach;
  992. dev->ibdev.detach_mcast = iwch_multicast_detach;
  993. dev->ibdev.process_mad = iwch_process_mad;
  994. dev->ibdev.req_notify_cq = iwch_arm_cq;
  995. dev->ibdev.post_send = iwch_post_send;
  996. dev->ibdev.post_recv = iwch_post_receive;
  997. dev->ibdev.iwcm =
  998. (struct iw_cm_verbs *) kmalloc(sizeof(struct iw_cm_verbs),
  999. GFP_KERNEL);
  1000. dev->ibdev.iwcm->connect = iwch_connect;
  1001. dev->ibdev.iwcm->accept = iwch_accept_cr;
  1002. dev->ibdev.iwcm->reject = iwch_reject_cr;
  1003. dev->ibdev.iwcm->create_listen = iwch_create_listen;
  1004. dev->ibdev.iwcm->destroy_listen = iwch_destroy_listen;
  1005. dev->ibdev.iwcm->add_ref = iwch_qp_add_ref;
  1006. dev->ibdev.iwcm->rem_ref = iwch_qp_rem_ref;
  1007. dev->ibdev.iwcm->get_qp = iwch_get_qp;
  1008. ret = ib_register_device(&dev->ibdev);
  1009. if (ret)
  1010. goto bail1;
  1011. for (i = 0; i < ARRAY_SIZE(iwch_class_attributes); ++i) {
  1012. ret = class_device_create_file(&dev->ibdev.class_dev,
  1013. iwch_class_attributes[i]);
  1014. if (ret) {
  1015. goto bail2;
  1016. }
  1017. }
  1018. return 0;
  1019. bail2:
  1020. ib_unregister_device(&dev->ibdev);
  1021. bail1:
  1022. return ret;
  1023. }
  1024. void iwch_unregister_device(struct iwch_dev *dev)
  1025. {
  1026. int i;
  1027. PDBG("%s iwch_dev %p\n", __FUNCTION__, dev);
  1028. for (i = 0; i < ARRAY_SIZE(iwch_class_attributes); ++i)
  1029. class_device_remove_file(&dev->ibdev.class_dev,
  1030. iwch_class_attributes[i]);
  1031. ib_unregister_device(&dev->ibdev);
  1032. return;
  1033. }