provider.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  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;
  54. module_param(fastreg_support, int, 0644);
  55. MODULE_PARM_DESC(fastreg_support, "Advertise fastreg support (default=0)");
  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, 2)) &&
  133. (addr < (pci_resource_start(rdev->lldi.pdev, 2) +
  134. pci_resource_len(rdev->lldi.pdev, 2)))) {
  135. /*
  136. * Map T4 DB register.
  137. */
  138. if (vma->vm_flags & VM_READ)
  139. return -EPERM;
  140. vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
  141. vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND;
  142. vma->vm_flags &= ~VM_MAYREAD;
  143. ret = io_remap_pfn_range(vma, vma->vm_start,
  144. addr >> PAGE_SHIFT,
  145. len, vma->vm_page_prot);
  146. } else {
  147. /*
  148. * Map WQ or CQ contig dma memory...
  149. */
  150. ret = remap_pfn_range(vma, vma->vm_start,
  151. addr >> PAGE_SHIFT,
  152. len, vma->vm_page_prot);
  153. }
  154. return ret;
  155. }
  156. static int c4iw_deallocate_pd(struct ib_pd *pd)
  157. {
  158. struct c4iw_dev *rhp;
  159. struct c4iw_pd *php;
  160. php = to_c4iw_pd(pd);
  161. rhp = php->rhp;
  162. PDBG("%s ibpd %p pdid 0x%x\n", __func__, pd, php->pdid);
  163. c4iw_put_resource(&rhp->rdev.resource.pdid_fifo, php->pdid,
  164. &rhp->rdev.resource.pdid_fifo_lock);
  165. kfree(php);
  166. return 0;
  167. }
  168. static struct ib_pd *c4iw_allocate_pd(struct ib_device *ibdev,
  169. struct ib_ucontext *context,
  170. struct ib_udata *udata)
  171. {
  172. struct c4iw_pd *php;
  173. u32 pdid;
  174. struct c4iw_dev *rhp;
  175. PDBG("%s ibdev %p\n", __func__, ibdev);
  176. rhp = (struct c4iw_dev *) ibdev;
  177. pdid = c4iw_get_resource(&rhp->rdev.resource.pdid_fifo,
  178. &rhp->rdev.resource.pdid_fifo_lock);
  179. if (!pdid)
  180. return ERR_PTR(-EINVAL);
  181. php = kzalloc(sizeof(*php), GFP_KERNEL);
  182. if (!php) {
  183. c4iw_put_resource(&rhp->rdev.resource.pdid_fifo, pdid,
  184. &rhp->rdev.resource.pdid_fifo_lock);
  185. return ERR_PTR(-ENOMEM);
  186. }
  187. php->pdid = pdid;
  188. php->rhp = rhp;
  189. if (context) {
  190. if (ib_copy_to_udata(udata, &php->pdid, sizeof(u32))) {
  191. c4iw_deallocate_pd(&php->ibpd);
  192. return ERR_PTR(-EFAULT);
  193. }
  194. }
  195. PDBG("%s pdid 0x%0x ptr 0x%p\n", __func__, pdid, php);
  196. return &php->ibpd;
  197. }
  198. static int c4iw_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
  199. u16 *pkey)
  200. {
  201. PDBG("%s ibdev %p\n", __func__, ibdev);
  202. *pkey = 0;
  203. return 0;
  204. }
  205. static int c4iw_query_gid(struct ib_device *ibdev, u8 port, int index,
  206. union ib_gid *gid)
  207. {
  208. struct c4iw_dev *dev;
  209. PDBG("%s ibdev %p, port %d, index %d, gid %p\n",
  210. __func__, ibdev, port, index, gid);
  211. dev = to_c4iw_dev(ibdev);
  212. BUG_ON(port == 0);
  213. memset(&(gid->raw[0]), 0, sizeof(gid->raw));
  214. memcpy(&(gid->raw[0]), dev->rdev.lldi.ports[port-1]->dev_addr, 6);
  215. return 0;
  216. }
  217. static int c4iw_query_device(struct ib_device *ibdev,
  218. struct ib_device_attr *props)
  219. {
  220. struct c4iw_dev *dev;
  221. PDBG("%s ibdev %p\n", __func__, ibdev);
  222. dev = to_c4iw_dev(ibdev);
  223. memset(props, 0, sizeof *props);
  224. memcpy(&props->sys_image_guid, dev->rdev.lldi.ports[0]->dev_addr, 6);
  225. props->hw_ver = dev->rdev.lldi.adapter_type;
  226. props->fw_ver = dev->rdev.lldi.fw_vers;
  227. props->device_cap_flags = dev->device_cap_flags;
  228. props->page_size_cap = T4_PAGESIZE_MASK;
  229. props->vendor_id = (u32)dev->rdev.lldi.pdev->vendor;
  230. props->vendor_part_id = (u32)dev->rdev.lldi.pdev->device;
  231. props->max_mr_size = T4_MAX_MR_SIZE;
  232. props->max_qp = T4_MAX_NUM_QP;
  233. props->max_qp_wr = T4_MAX_QP_DEPTH;
  234. props->max_sge = T4_MAX_RECV_SGE;
  235. props->max_sge_rd = 1;
  236. props->max_qp_rd_atom = c4iw_max_read_depth;
  237. props->max_qp_init_rd_atom = c4iw_max_read_depth;
  238. props->max_cq = T4_MAX_NUM_CQ;
  239. props->max_cqe = T4_MAX_CQ_DEPTH;
  240. props->max_mr = c4iw_num_stags(&dev->rdev);
  241. props->max_pd = T4_MAX_NUM_PD;
  242. props->local_ca_ack_delay = 0;
  243. props->max_fast_reg_page_list_len = T4_MAX_FR_DEPTH;
  244. return 0;
  245. }
  246. static int c4iw_query_port(struct ib_device *ibdev, u8 port,
  247. struct ib_port_attr *props)
  248. {
  249. struct c4iw_dev *dev;
  250. struct net_device *netdev;
  251. struct in_device *inetdev;
  252. PDBG("%s ibdev %p\n", __func__, ibdev);
  253. dev = to_c4iw_dev(ibdev);
  254. netdev = dev->rdev.lldi.ports[port-1];
  255. memset(props, 0, sizeof(struct ib_port_attr));
  256. props->max_mtu = IB_MTU_4096;
  257. if (netdev->mtu >= 4096)
  258. props->active_mtu = IB_MTU_4096;
  259. else if (netdev->mtu >= 2048)
  260. props->active_mtu = IB_MTU_2048;
  261. else if (netdev->mtu >= 1024)
  262. props->active_mtu = IB_MTU_1024;
  263. else if (netdev->mtu >= 512)
  264. props->active_mtu = IB_MTU_512;
  265. else
  266. props->active_mtu = IB_MTU_256;
  267. if (!netif_carrier_ok(netdev))
  268. props->state = IB_PORT_DOWN;
  269. else {
  270. inetdev = in_dev_get(netdev);
  271. if (inetdev) {
  272. if (inetdev->ifa_list)
  273. props->state = IB_PORT_ACTIVE;
  274. else
  275. props->state = IB_PORT_INIT;
  276. in_dev_put(inetdev);
  277. } else
  278. props->state = IB_PORT_INIT;
  279. }
  280. props->port_cap_flags =
  281. IB_PORT_CM_SUP |
  282. IB_PORT_SNMP_TUNNEL_SUP |
  283. IB_PORT_REINIT_SUP |
  284. IB_PORT_DEVICE_MGMT_SUP |
  285. IB_PORT_VENDOR_CLASS_SUP | IB_PORT_BOOT_MGMT_SUP;
  286. props->gid_tbl_len = 1;
  287. props->pkey_tbl_len = 1;
  288. props->active_width = 2;
  289. props->active_speed = 2;
  290. props->max_msg_sz = -1;
  291. return 0;
  292. }
  293. static ssize_t show_rev(struct device *dev, struct device_attribute *attr,
  294. char *buf)
  295. {
  296. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  297. ibdev.dev);
  298. PDBG("%s dev 0x%p\n", __func__, dev);
  299. return sprintf(buf, "%d\n", c4iw_dev->rdev.lldi.adapter_type);
  300. }
  301. static ssize_t show_fw_ver(struct device *dev, struct device_attribute *attr,
  302. char *buf)
  303. {
  304. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  305. ibdev.dev);
  306. PDBG("%s dev 0x%p\n", __func__, dev);
  307. return sprintf(buf, "%u.%u.%u.%u\n",
  308. FW_HDR_FW_VER_MAJOR_GET(c4iw_dev->rdev.lldi.fw_vers),
  309. FW_HDR_FW_VER_MINOR_GET(c4iw_dev->rdev.lldi.fw_vers),
  310. FW_HDR_FW_VER_MICRO_GET(c4iw_dev->rdev.lldi.fw_vers),
  311. FW_HDR_FW_VER_BUILD_GET(c4iw_dev->rdev.lldi.fw_vers));
  312. }
  313. static ssize_t show_hca(struct device *dev, struct device_attribute *attr,
  314. char *buf)
  315. {
  316. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  317. ibdev.dev);
  318. struct ethtool_drvinfo info;
  319. struct net_device *lldev = c4iw_dev->rdev.lldi.ports[0];
  320. PDBG("%s dev 0x%p\n", __func__, dev);
  321. lldev->ethtool_ops->get_drvinfo(lldev, &info);
  322. return sprintf(buf, "%s\n", info.driver);
  323. }
  324. static ssize_t show_board(struct device *dev, struct device_attribute *attr,
  325. char *buf)
  326. {
  327. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  328. ibdev.dev);
  329. PDBG("%s dev 0x%p\n", __func__, dev);
  330. return sprintf(buf, "%x.%x\n", c4iw_dev->rdev.lldi.pdev->vendor,
  331. c4iw_dev->rdev.lldi.pdev->device);
  332. }
  333. static int c4iw_get_mib(struct ib_device *ibdev,
  334. union rdma_protocol_stats *stats)
  335. {
  336. return -ENOSYS;
  337. }
  338. static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
  339. static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
  340. static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
  341. static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
  342. static struct device_attribute *c4iw_class_attributes[] = {
  343. &dev_attr_hw_rev,
  344. &dev_attr_fw_ver,
  345. &dev_attr_hca_type,
  346. &dev_attr_board_id,
  347. };
  348. int c4iw_register_device(struct c4iw_dev *dev)
  349. {
  350. int ret;
  351. int i;
  352. PDBG("%s c4iw_dev %p\n", __func__, dev);
  353. BUG_ON(!dev->rdev.lldi.ports[0]);
  354. strlcpy(dev->ibdev.name, "cxgb4_%d", IB_DEVICE_NAME_MAX);
  355. memset(&dev->ibdev.node_guid, 0, sizeof(dev->ibdev.node_guid));
  356. memcpy(&dev->ibdev.node_guid, dev->rdev.lldi.ports[0]->dev_addr, 6);
  357. dev->ibdev.owner = THIS_MODULE;
  358. dev->device_cap_flags = IB_DEVICE_LOCAL_DMA_LKEY | IB_DEVICE_MEM_WINDOW;
  359. if (fastreg_support)
  360. dev->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
  361. dev->ibdev.local_dma_lkey = 0;
  362. dev->ibdev.uverbs_cmd_mask =
  363. (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
  364. (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
  365. (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
  366. (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
  367. (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
  368. (1ull << IB_USER_VERBS_CMD_REG_MR) |
  369. (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
  370. (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
  371. (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
  372. (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
  373. (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) |
  374. (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
  375. (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
  376. (1ull << IB_USER_VERBS_CMD_POLL_CQ) |
  377. (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
  378. (1ull << IB_USER_VERBS_CMD_POST_SEND) |
  379. (1ull << IB_USER_VERBS_CMD_POST_RECV);
  380. dev->ibdev.node_type = RDMA_NODE_RNIC;
  381. memcpy(dev->ibdev.node_desc, C4IW_NODE_DESC, sizeof(C4IW_NODE_DESC));
  382. dev->ibdev.phys_port_cnt = dev->rdev.lldi.nports;
  383. dev->ibdev.num_comp_vectors = 1;
  384. dev->ibdev.dma_device = &(dev->rdev.lldi.pdev->dev);
  385. dev->ibdev.query_device = c4iw_query_device;
  386. dev->ibdev.query_port = c4iw_query_port;
  387. dev->ibdev.modify_port = c4iw_modify_port;
  388. dev->ibdev.query_pkey = c4iw_query_pkey;
  389. dev->ibdev.query_gid = c4iw_query_gid;
  390. dev->ibdev.alloc_ucontext = c4iw_alloc_ucontext;
  391. dev->ibdev.dealloc_ucontext = c4iw_dealloc_ucontext;
  392. dev->ibdev.mmap = c4iw_mmap;
  393. dev->ibdev.alloc_pd = c4iw_allocate_pd;
  394. dev->ibdev.dealloc_pd = c4iw_deallocate_pd;
  395. dev->ibdev.create_ah = c4iw_ah_create;
  396. dev->ibdev.destroy_ah = c4iw_ah_destroy;
  397. dev->ibdev.create_qp = c4iw_create_qp;
  398. dev->ibdev.modify_qp = c4iw_ib_modify_qp;
  399. dev->ibdev.destroy_qp = c4iw_destroy_qp;
  400. dev->ibdev.create_cq = c4iw_create_cq;
  401. dev->ibdev.destroy_cq = c4iw_destroy_cq;
  402. dev->ibdev.resize_cq = c4iw_resize_cq;
  403. dev->ibdev.poll_cq = c4iw_poll_cq;
  404. dev->ibdev.get_dma_mr = c4iw_get_dma_mr;
  405. dev->ibdev.reg_phys_mr = c4iw_register_phys_mem;
  406. dev->ibdev.rereg_phys_mr = c4iw_reregister_phys_mem;
  407. dev->ibdev.reg_user_mr = c4iw_reg_user_mr;
  408. dev->ibdev.dereg_mr = c4iw_dereg_mr;
  409. dev->ibdev.alloc_mw = c4iw_alloc_mw;
  410. dev->ibdev.bind_mw = c4iw_bind_mw;
  411. dev->ibdev.dealloc_mw = c4iw_dealloc_mw;
  412. dev->ibdev.alloc_fast_reg_mr = c4iw_alloc_fast_reg_mr;
  413. dev->ibdev.alloc_fast_reg_page_list = c4iw_alloc_fastreg_pbl;
  414. dev->ibdev.free_fast_reg_page_list = c4iw_free_fastreg_pbl;
  415. dev->ibdev.attach_mcast = c4iw_multicast_attach;
  416. dev->ibdev.detach_mcast = c4iw_multicast_detach;
  417. dev->ibdev.process_mad = c4iw_process_mad;
  418. dev->ibdev.req_notify_cq = c4iw_arm_cq;
  419. dev->ibdev.post_send = c4iw_post_send;
  420. dev->ibdev.post_recv = c4iw_post_receive;
  421. dev->ibdev.get_protocol_stats = c4iw_get_mib;
  422. dev->ibdev.iwcm = kmalloc(sizeof(struct iw_cm_verbs), GFP_KERNEL);
  423. if (!dev->ibdev.iwcm)
  424. return -ENOMEM;
  425. dev->ibdev.iwcm->connect = c4iw_connect;
  426. dev->ibdev.iwcm->accept = c4iw_accept_cr;
  427. dev->ibdev.iwcm->reject = c4iw_reject_cr;
  428. dev->ibdev.iwcm->create_listen = c4iw_create_listen;
  429. dev->ibdev.iwcm->destroy_listen = c4iw_destroy_listen;
  430. dev->ibdev.iwcm->add_ref = c4iw_qp_add_ref;
  431. dev->ibdev.iwcm->rem_ref = c4iw_qp_rem_ref;
  432. dev->ibdev.iwcm->get_qp = c4iw_get_qp;
  433. ret = ib_register_device(&dev->ibdev, NULL);
  434. if (ret)
  435. goto bail1;
  436. for (i = 0; i < ARRAY_SIZE(c4iw_class_attributes); ++i) {
  437. ret = device_create_file(&dev->ibdev.dev,
  438. c4iw_class_attributes[i]);
  439. if (ret)
  440. goto bail2;
  441. }
  442. dev->registered = 1;
  443. return 0;
  444. bail2:
  445. ib_unregister_device(&dev->ibdev);
  446. bail1:
  447. kfree(dev->ibdev.iwcm);
  448. return ret;
  449. }
  450. void c4iw_unregister_device(struct c4iw_dev *dev)
  451. {
  452. int i;
  453. PDBG("%s c4iw_dev %p\n", __func__, dev);
  454. for (i = 0; i < ARRAY_SIZE(c4iw_class_attributes); ++i)
  455. device_remove_file(&dev->ibdev.dev,
  456. c4iw_class_attributes[i]);
  457. ib_unregister_device(&dev->ibdev);
  458. kfree(dev->ibdev.iwcm);
  459. dev->registered = 0;
  460. return;
  461. }