provider.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. /*
  2. * Copyright (c) 2009-2010 Chelsio, Inc. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * OpenIB.org BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  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 <linux/rtnetlink.h>
  43. #include <linux/inetdevice.h>
  44. #include <linux/io.h>
  45. #include <asm/irq.h>
  46. #include <asm/byteorder.h>
  47. #include <rdma/iw_cm.h>
  48. #include <rdma/ib_verbs.h>
  49. #include <rdma/ib_smi.h>
  50. #include <rdma/ib_umem.h>
  51. #include <rdma/ib_user_verbs.h>
  52. #include "iw_cxgb4.h"
  53. static int fastreg_support = 1;
  54. module_param(fastreg_support, int, 0644);
  55. MODULE_PARM_DESC(fastreg_support, "Advertise fastreg support (default=1)");
  56. static int c4iw_modify_port(struct ib_device *ibdev,
  57. u8 port, int port_modify_mask,
  58. struct ib_port_modify *props)
  59. {
  60. return -ENOSYS;
  61. }
  62. static struct ib_ah *c4iw_ah_create(struct ib_pd *pd,
  63. struct ib_ah_attr *ah_attr)
  64. {
  65. return ERR_PTR(-ENOSYS);
  66. }
  67. static int c4iw_ah_destroy(struct ib_ah *ah)
  68. {
  69. return -ENOSYS;
  70. }
  71. static int c4iw_multicast_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
  72. {
  73. return -ENOSYS;
  74. }
  75. static int c4iw_multicast_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
  76. {
  77. return -ENOSYS;
  78. }
  79. static int c4iw_process_mad(struct ib_device *ibdev, int mad_flags,
  80. u8 port_num, struct ib_wc *in_wc,
  81. struct ib_grh *in_grh, struct ib_mad *in_mad,
  82. struct ib_mad *out_mad)
  83. {
  84. return -ENOSYS;
  85. }
  86. static int c4iw_dealloc_ucontext(struct ib_ucontext *context)
  87. {
  88. struct c4iw_dev *rhp = to_c4iw_dev(context->device);
  89. struct c4iw_ucontext *ucontext = to_c4iw_ucontext(context);
  90. struct c4iw_mm_entry *mm, *tmp;
  91. PDBG("%s context %p\n", __func__, context);
  92. list_for_each_entry_safe(mm, tmp, &ucontext->mmaps, entry)
  93. kfree(mm);
  94. c4iw_release_dev_ucontext(&rhp->rdev, &ucontext->uctx);
  95. kfree(ucontext);
  96. return 0;
  97. }
  98. static struct ib_ucontext *c4iw_alloc_ucontext(struct ib_device *ibdev,
  99. struct ib_udata *udata)
  100. {
  101. struct c4iw_ucontext *context;
  102. struct c4iw_dev *rhp = to_c4iw_dev(ibdev);
  103. PDBG("%s ibdev %p\n", __func__, ibdev);
  104. context = kzalloc(sizeof(*context), GFP_KERNEL);
  105. if (!context)
  106. return ERR_PTR(-ENOMEM);
  107. c4iw_init_dev_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 c4iw_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
  113. {
  114. int len = vma->vm_end - vma->vm_start;
  115. u32 key = vma->vm_pgoff << PAGE_SHIFT;
  116. struct c4iw_rdev *rdev;
  117. int ret = 0;
  118. struct c4iw_mm_entry *mm;
  119. struct c4iw_ucontext *ucontext;
  120. u64 addr;
  121. PDBG("%s pgoff 0x%lx key 0x%x len %d\n", __func__, vma->vm_pgoff,
  122. key, len);
  123. if (vma->vm_start & (PAGE_SIZE-1))
  124. return -EINVAL;
  125. rdev = &(to_c4iw_dev(context->device)->rdev);
  126. ucontext = to_c4iw_ucontext(context);
  127. mm = remove_mmap(ucontext, key, len);
  128. if (!mm)
  129. return -EINVAL;
  130. addr = mm->addr;
  131. kfree(mm);
  132. if ((addr >= pci_resource_start(rdev->lldi.pdev, 0)) &&
  133. (addr < (pci_resource_start(rdev->lldi.pdev, 0) +
  134. pci_resource_len(rdev->lldi.pdev, 0)))) {
  135. /*
  136. * MA_SYNC register...
  137. */
  138. vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
  139. ret = io_remap_pfn_range(vma, vma->vm_start,
  140. addr >> PAGE_SHIFT,
  141. len, vma->vm_page_prot);
  142. } else if ((addr >= pci_resource_start(rdev->lldi.pdev, 2)) &&
  143. (addr < (pci_resource_start(rdev->lldi.pdev, 2) +
  144. pci_resource_len(rdev->lldi.pdev, 2)))) {
  145. /*
  146. * Map user DB or OCQP memory...
  147. */
  148. if (addr >= rdev->oc_mw_pa)
  149. vma->vm_page_prot = t4_pgprot_wc(vma->vm_page_prot);
  150. else
  151. vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
  152. ret = io_remap_pfn_range(vma, vma->vm_start,
  153. addr >> PAGE_SHIFT,
  154. len, vma->vm_page_prot);
  155. } else {
  156. /*
  157. * Map WQ or CQ contig dma memory...
  158. */
  159. ret = remap_pfn_range(vma, vma->vm_start,
  160. addr >> PAGE_SHIFT,
  161. len, vma->vm_page_prot);
  162. }
  163. return ret;
  164. }
  165. static int c4iw_deallocate_pd(struct ib_pd *pd)
  166. {
  167. struct c4iw_dev *rhp;
  168. struct c4iw_pd *php;
  169. php = to_c4iw_pd(pd);
  170. rhp = php->rhp;
  171. PDBG("%s ibpd %p pdid 0x%x\n", __func__, pd, php->pdid);
  172. c4iw_put_resource(&rhp->rdev.resource.pdid_fifo, php->pdid,
  173. &rhp->rdev.resource.pdid_fifo_lock);
  174. kfree(php);
  175. return 0;
  176. }
  177. static struct ib_pd *c4iw_allocate_pd(struct ib_device *ibdev,
  178. struct ib_ucontext *context,
  179. struct ib_udata *udata)
  180. {
  181. struct c4iw_pd *php;
  182. u32 pdid;
  183. struct c4iw_dev *rhp;
  184. PDBG("%s ibdev %p\n", __func__, ibdev);
  185. rhp = (struct c4iw_dev *) ibdev;
  186. pdid = c4iw_get_resource(&rhp->rdev.resource.pdid_fifo,
  187. &rhp->rdev.resource.pdid_fifo_lock);
  188. if (!pdid)
  189. return ERR_PTR(-EINVAL);
  190. php = kzalloc(sizeof(*php), GFP_KERNEL);
  191. if (!php) {
  192. c4iw_put_resource(&rhp->rdev.resource.pdid_fifo, pdid,
  193. &rhp->rdev.resource.pdid_fifo_lock);
  194. return ERR_PTR(-ENOMEM);
  195. }
  196. php->pdid = pdid;
  197. php->rhp = rhp;
  198. if (context) {
  199. if (ib_copy_to_udata(udata, &php->pdid, sizeof(u32))) {
  200. c4iw_deallocate_pd(&php->ibpd);
  201. return ERR_PTR(-EFAULT);
  202. }
  203. }
  204. PDBG("%s pdid 0x%0x ptr 0x%p\n", __func__, pdid, php);
  205. return &php->ibpd;
  206. }
  207. static int c4iw_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
  208. u16 *pkey)
  209. {
  210. PDBG("%s ibdev %p\n", __func__, ibdev);
  211. *pkey = 0;
  212. return 0;
  213. }
  214. static int c4iw_query_gid(struct ib_device *ibdev, u8 port, int index,
  215. union ib_gid *gid)
  216. {
  217. struct c4iw_dev *dev;
  218. PDBG("%s ibdev %p, port %d, index %d, gid %p\n",
  219. __func__, ibdev, port, index, gid);
  220. dev = to_c4iw_dev(ibdev);
  221. BUG_ON(port == 0);
  222. memset(&(gid->raw[0]), 0, sizeof(gid->raw));
  223. memcpy(&(gid->raw[0]), dev->rdev.lldi.ports[port-1]->dev_addr, 6);
  224. return 0;
  225. }
  226. static int c4iw_query_device(struct ib_device *ibdev,
  227. struct ib_device_attr *props)
  228. {
  229. struct c4iw_dev *dev;
  230. PDBG("%s ibdev %p\n", __func__, ibdev);
  231. dev = to_c4iw_dev(ibdev);
  232. memset(props, 0, sizeof *props);
  233. memcpy(&props->sys_image_guid, dev->rdev.lldi.ports[0]->dev_addr, 6);
  234. props->hw_ver = dev->rdev.lldi.adapter_type;
  235. props->fw_ver = dev->rdev.lldi.fw_vers;
  236. props->device_cap_flags = dev->device_cap_flags;
  237. props->page_size_cap = T4_PAGESIZE_MASK;
  238. props->vendor_id = (u32)dev->rdev.lldi.pdev->vendor;
  239. props->vendor_part_id = (u32)dev->rdev.lldi.pdev->device;
  240. props->max_mr_size = T4_MAX_MR_SIZE;
  241. props->max_qp = T4_MAX_NUM_QP;
  242. props->max_qp_wr = T4_MAX_QP_DEPTH;
  243. props->max_sge = T4_MAX_RECV_SGE;
  244. props->max_sge_rd = 1;
  245. props->max_qp_rd_atom = c4iw_max_read_depth;
  246. props->max_qp_init_rd_atom = c4iw_max_read_depth;
  247. props->max_cq = T4_MAX_NUM_CQ;
  248. props->max_cqe = T4_MAX_CQ_DEPTH;
  249. props->max_mr = c4iw_num_stags(&dev->rdev);
  250. props->max_pd = T4_MAX_NUM_PD;
  251. props->local_ca_ack_delay = 0;
  252. props->max_fast_reg_page_list_len = T4_MAX_FR_DEPTH;
  253. return 0;
  254. }
  255. static int c4iw_query_port(struct ib_device *ibdev, u8 port,
  256. struct ib_port_attr *props)
  257. {
  258. struct c4iw_dev *dev;
  259. struct net_device *netdev;
  260. struct in_device *inetdev;
  261. PDBG("%s ibdev %p\n", __func__, ibdev);
  262. dev = to_c4iw_dev(ibdev);
  263. netdev = dev->rdev.lldi.ports[port-1];
  264. memset(props, 0, sizeof(struct ib_port_attr));
  265. props->max_mtu = IB_MTU_4096;
  266. if (netdev->mtu >= 4096)
  267. props->active_mtu = IB_MTU_4096;
  268. else if (netdev->mtu >= 2048)
  269. props->active_mtu = IB_MTU_2048;
  270. else if (netdev->mtu >= 1024)
  271. props->active_mtu = IB_MTU_1024;
  272. else if (netdev->mtu >= 512)
  273. props->active_mtu = IB_MTU_512;
  274. else
  275. props->active_mtu = IB_MTU_256;
  276. if (!netif_carrier_ok(netdev))
  277. props->state = IB_PORT_DOWN;
  278. else {
  279. inetdev = in_dev_get(netdev);
  280. if (inetdev) {
  281. if (inetdev->ifa_list)
  282. props->state = IB_PORT_ACTIVE;
  283. else
  284. props->state = IB_PORT_INIT;
  285. in_dev_put(inetdev);
  286. } else
  287. props->state = IB_PORT_INIT;
  288. }
  289. props->port_cap_flags =
  290. IB_PORT_CM_SUP |
  291. IB_PORT_SNMP_TUNNEL_SUP |
  292. IB_PORT_REINIT_SUP |
  293. IB_PORT_DEVICE_MGMT_SUP |
  294. IB_PORT_VENDOR_CLASS_SUP | IB_PORT_BOOT_MGMT_SUP;
  295. props->gid_tbl_len = 1;
  296. props->pkey_tbl_len = 1;
  297. props->active_width = 2;
  298. props->active_speed = 2;
  299. props->max_msg_sz = -1;
  300. return 0;
  301. }
  302. static ssize_t show_rev(struct device *dev, struct device_attribute *attr,
  303. char *buf)
  304. {
  305. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  306. ibdev.dev);
  307. PDBG("%s dev 0x%p\n", __func__, dev);
  308. return sprintf(buf, "%d\n", c4iw_dev->rdev.lldi.adapter_type);
  309. }
  310. static ssize_t show_fw_ver(struct device *dev, struct device_attribute *attr,
  311. char *buf)
  312. {
  313. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  314. ibdev.dev);
  315. PDBG("%s dev 0x%p\n", __func__, dev);
  316. return sprintf(buf, "%u.%u.%u.%u\n",
  317. FW_HDR_FW_VER_MAJOR_GET(c4iw_dev->rdev.lldi.fw_vers),
  318. FW_HDR_FW_VER_MINOR_GET(c4iw_dev->rdev.lldi.fw_vers),
  319. FW_HDR_FW_VER_MICRO_GET(c4iw_dev->rdev.lldi.fw_vers),
  320. FW_HDR_FW_VER_BUILD_GET(c4iw_dev->rdev.lldi.fw_vers));
  321. }
  322. static ssize_t show_hca(struct device *dev, struct device_attribute *attr,
  323. char *buf)
  324. {
  325. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  326. ibdev.dev);
  327. struct ethtool_drvinfo info;
  328. struct net_device *lldev = c4iw_dev->rdev.lldi.ports[0];
  329. PDBG("%s dev 0x%p\n", __func__, dev);
  330. lldev->ethtool_ops->get_drvinfo(lldev, &info);
  331. return sprintf(buf, "%s\n", info.driver);
  332. }
  333. static ssize_t show_board(struct device *dev, struct device_attribute *attr,
  334. char *buf)
  335. {
  336. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  337. ibdev.dev);
  338. PDBG("%s dev 0x%p\n", __func__, dev);
  339. return sprintf(buf, "%x.%x\n", c4iw_dev->rdev.lldi.pdev->vendor,
  340. c4iw_dev->rdev.lldi.pdev->device);
  341. }
  342. static int c4iw_get_mib(struct ib_device *ibdev,
  343. union rdma_protocol_stats *stats)
  344. {
  345. struct tp_tcp_stats v4, v6;
  346. struct c4iw_dev *c4iw_dev = to_c4iw_dev(ibdev);
  347. cxgb4_get_tcp_stats(c4iw_dev->rdev.lldi.pdev, &v4, &v6);
  348. memset(stats, 0, sizeof *stats);
  349. stats->iw.tcpInSegs = v4.tcpInSegs + v6.tcpInSegs;
  350. stats->iw.tcpOutSegs = v4.tcpOutSegs + v6.tcpOutSegs;
  351. stats->iw.tcpRetransSegs = v4.tcpRetransSegs + v6.tcpRetransSegs;
  352. stats->iw.tcpOutRsts = v4.tcpOutRsts + v6.tcpOutSegs;
  353. return 0;
  354. }
  355. static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
  356. static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
  357. static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
  358. static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
  359. static struct device_attribute *c4iw_class_attributes[] = {
  360. &dev_attr_hw_rev,
  361. &dev_attr_fw_ver,
  362. &dev_attr_hca_type,
  363. &dev_attr_board_id,
  364. };
  365. int c4iw_register_device(struct c4iw_dev *dev)
  366. {
  367. int ret;
  368. int i;
  369. PDBG("%s c4iw_dev %p\n", __func__, dev);
  370. BUG_ON(!dev->rdev.lldi.ports[0]);
  371. strlcpy(dev->ibdev.name, "cxgb4_%d", IB_DEVICE_NAME_MAX);
  372. memset(&dev->ibdev.node_guid, 0, sizeof(dev->ibdev.node_guid));
  373. memcpy(&dev->ibdev.node_guid, dev->rdev.lldi.ports[0]->dev_addr, 6);
  374. dev->ibdev.owner = THIS_MODULE;
  375. dev->device_cap_flags = IB_DEVICE_LOCAL_DMA_LKEY | IB_DEVICE_MEM_WINDOW;
  376. if (fastreg_support)
  377. dev->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
  378. dev->ibdev.local_dma_lkey = 0;
  379. dev->ibdev.uverbs_cmd_mask =
  380. (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
  381. (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
  382. (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
  383. (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
  384. (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
  385. (1ull << IB_USER_VERBS_CMD_REG_MR) |
  386. (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
  387. (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
  388. (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
  389. (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
  390. (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) |
  391. (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
  392. (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
  393. (1ull << IB_USER_VERBS_CMD_POLL_CQ) |
  394. (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
  395. (1ull << IB_USER_VERBS_CMD_POST_SEND) |
  396. (1ull << IB_USER_VERBS_CMD_POST_RECV);
  397. dev->ibdev.node_type = RDMA_NODE_RNIC;
  398. memcpy(dev->ibdev.node_desc, C4IW_NODE_DESC, sizeof(C4IW_NODE_DESC));
  399. dev->ibdev.phys_port_cnt = dev->rdev.lldi.nports;
  400. dev->ibdev.num_comp_vectors = 1;
  401. dev->ibdev.dma_device = &(dev->rdev.lldi.pdev->dev);
  402. dev->ibdev.query_device = c4iw_query_device;
  403. dev->ibdev.query_port = c4iw_query_port;
  404. dev->ibdev.modify_port = c4iw_modify_port;
  405. dev->ibdev.query_pkey = c4iw_query_pkey;
  406. dev->ibdev.query_gid = c4iw_query_gid;
  407. dev->ibdev.alloc_ucontext = c4iw_alloc_ucontext;
  408. dev->ibdev.dealloc_ucontext = c4iw_dealloc_ucontext;
  409. dev->ibdev.mmap = c4iw_mmap;
  410. dev->ibdev.alloc_pd = c4iw_allocate_pd;
  411. dev->ibdev.dealloc_pd = c4iw_deallocate_pd;
  412. dev->ibdev.create_ah = c4iw_ah_create;
  413. dev->ibdev.destroy_ah = c4iw_ah_destroy;
  414. dev->ibdev.create_qp = c4iw_create_qp;
  415. dev->ibdev.modify_qp = c4iw_ib_modify_qp;
  416. dev->ibdev.destroy_qp = c4iw_destroy_qp;
  417. dev->ibdev.create_cq = c4iw_create_cq;
  418. dev->ibdev.destroy_cq = c4iw_destroy_cq;
  419. dev->ibdev.resize_cq = c4iw_resize_cq;
  420. dev->ibdev.poll_cq = c4iw_poll_cq;
  421. dev->ibdev.get_dma_mr = c4iw_get_dma_mr;
  422. dev->ibdev.reg_phys_mr = c4iw_register_phys_mem;
  423. dev->ibdev.rereg_phys_mr = c4iw_reregister_phys_mem;
  424. dev->ibdev.reg_user_mr = c4iw_reg_user_mr;
  425. dev->ibdev.dereg_mr = c4iw_dereg_mr;
  426. dev->ibdev.alloc_mw = c4iw_alloc_mw;
  427. dev->ibdev.bind_mw = c4iw_bind_mw;
  428. dev->ibdev.dealloc_mw = c4iw_dealloc_mw;
  429. dev->ibdev.alloc_fast_reg_mr = c4iw_alloc_fast_reg_mr;
  430. dev->ibdev.alloc_fast_reg_page_list = c4iw_alloc_fastreg_pbl;
  431. dev->ibdev.free_fast_reg_page_list = c4iw_free_fastreg_pbl;
  432. dev->ibdev.attach_mcast = c4iw_multicast_attach;
  433. dev->ibdev.detach_mcast = c4iw_multicast_detach;
  434. dev->ibdev.process_mad = c4iw_process_mad;
  435. dev->ibdev.req_notify_cq = c4iw_arm_cq;
  436. dev->ibdev.post_send = c4iw_post_send;
  437. dev->ibdev.post_recv = c4iw_post_receive;
  438. dev->ibdev.get_protocol_stats = c4iw_get_mib;
  439. dev->ibdev.uverbs_abi_ver = C4IW_UVERBS_ABI_VERSION;
  440. dev->ibdev.iwcm = kmalloc(sizeof(struct iw_cm_verbs), GFP_KERNEL);
  441. if (!dev->ibdev.iwcm)
  442. return -ENOMEM;
  443. dev->ibdev.iwcm->connect = c4iw_connect;
  444. dev->ibdev.iwcm->accept = c4iw_accept_cr;
  445. dev->ibdev.iwcm->reject = c4iw_reject_cr;
  446. dev->ibdev.iwcm->create_listen = c4iw_create_listen;
  447. dev->ibdev.iwcm->destroy_listen = c4iw_destroy_listen;
  448. dev->ibdev.iwcm->add_ref = c4iw_qp_add_ref;
  449. dev->ibdev.iwcm->rem_ref = c4iw_qp_rem_ref;
  450. dev->ibdev.iwcm->get_qp = c4iw_get_qp;
  451. ret = ib_register_device(&dev->ibdev, NULL);
  452. if (ret)
  453. goto bail1;
  454. for (i = 0; i < ARRAY_SIZE(c4iw_class_attributes); ++i) {
  455. ret = device_create_file(&dev->ibdev.dev,
  456. c4iw_class_attributes[i]);
  457. if (ret)
  458. goto bail2;
  459. }
  460. dev->registered = 1;
  461. return 0;
  462. bail2:
  463. ib_unregister_device(&dev->ibdev);
  464. bail1:
  465. kfree(dev->ibdev.iwcm);
  466. return ret;
  467. }
  468. void c4iw_unregister_device(struct c4iw_dev *dev)
  469. {
  470. int i;
  471. PDBG("%s c4iw_dev %p\n", __func__, dev);
  472. for (i = 0; i < ARRAY_SIZE(c4iw_class_attributes); ++i)
  473. device_remove_file(&dev->ibdev.dev,
  474. c4iw_class_attributes[i]);
  475. ib_unregister_device(&dev->ibdev);
  476. kfree(dev->ibdev.iwcm);
  477. dev->registered = 0;
  478. return;
  479. }