provider.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  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 struct ib_ah *c4iw_ah_create(struct ib_pd *pd,
  57. struct rdma_ah_attr *ah_attr,
  58. struct ib_udata *udata)
  59. {
  60. return ERR_PTR(-ENOSYS);
  61. }
  62. static int c4iw_ah_destroy(struct ib_ah *ah)
  63. {
  64. return -ENOSYS;
  65. }
  66. static int c4iw_multicast_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
  67. {
  68. return -ENOSYS;
  69. }
  70. static int c4iw_multicast_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
  71. {
  72. return -ENOSYS;
  73. }
  74. static int c4iw_process_mad(struct ib_device *ibdev, int mad_flags,
  75. u8 port_num, const struct ib_wc *in_wc,
  76. const struct ib_grh *in_grh,
  77. const struct ib_mad_hdr *in_mad,
  78. size_t in_mad_size,
  79. struct ib_mad_hdr *out_mad,
  80. size_t *out_mad_size,
  81. u16 *out_mad_pkey_index)
  82. {
  83. return -ENOSYS;
  84. }
  85. void _c4iw_free_ucontext(struct kref *kref)
  86. {
  87. struct c4iw_ucontext *ucontext;
  88. struct c4iw_dev *rhp;
  89. struct c4iw_mm_entry *mm, *tmp;
  90. ucontext = container_of(kref, struct c4iw_ucontext, kref);
  91. rhp = to_c4iw_dev(ucontext->ibucontext.device);
  92. pr_debug("%s ucontext %p\n", __func__, ucontext);
  93. list_for_each_entry_safe(mm, tmp, &ucontext->mmaps, entry)
  94. kfree(mm);
  95. c4iw_release_dev_ucontext(&rhp->rdev, &ucontext->uctx);
  96. kfree(ucontext);
  97. }
  98. static int c4iw_dealloc_ucontext(struct ib_ucontext *context)
  99. {
  100. struct c4iw_ucontext *ucontext = to_c4iw_ucontext(context);
  101. pr_debug("%s context %p\n", __func__, context);
  102. c4iw_put_ucontext(ucontext);
  103. return 0;
  104. }
  105. static struct ib_ucontext *c4iw_alloc_ucontext(struct ib_device *ibdev,
  106. struct ib_udata *udata)
  107. {
  108. struct c4iw_ucontext *context;
  109. struct c4iw_dev *rhp = to_c4iw_dev(ibdev);
  110. struct c4iw_alloc_ucontext_resp uresp;
  111. int ret = 0;
  112. struct c4iw_mm_entry *mm = NULL;
  113. pr_debug("%s ibdev %p\n", __func__, ibdev);
  114. context = kzalloc(sizeof(*context), GFP_KERNEL);
  115. if (!context) {
  116. ret = -ENOMEM;
  117. goto err;
  118. }
  119. c4iw_init_dev_ucontext(&rhp->rdev, &context->uctx);
  120. INIT_LIST_HEAD(&context->mmaps);
  121. spin_lock_init(&context->mmap_lock);
  122. kref_init(&context->kref);
  123. if (udata->outlen < sizeof(uresp) - sizeof(uresp.reserved)) {
  124. pr_err_once("Warning - downlevel libcxgb4 (non-fatal), device status page disabled\n");
  125. rhp->rdev.flags |= T4_STATUS_PAGE_DISABLED;
  126. } else {
  127. mm = kmalloc(sizeof(*mm), GFP_KERNEL);
  128. if (!mm) {
  129. ret = -ENOMEM;
  130. goto err_free;
  131. }
  132. uresp.status_page_size = PAGE_SIZE;
  133. spin_lock(&context->mmap_lock);
  134. uresp.status_page_key = context->key;
  135. context->key += PAGE_SIZE;
  136. spin_unlock(&context->mmap_lock);
  137. ret = ib_copy_to_udata(udata, &uresp,
  138. sizeof(uresp) - sizeof(uresp.reserved));
  139. if (ret)
  140. goto err_mm;
  141. mm->key = uresp.status_page_key;
  142. mm->addr = virt_to_phys(rhp->rdev.status_page);
  143. mm->len = PAGE_SIZE;
  144. insert_mmap(context, mm);
  145. }
  146. return &context->ibucontext;
  147. err_mm:
  148. kfree(mm);
  149. err_free:
  150. kfree(context);
  151. err:
  152. return ERR_PTR(ret);
  153. }
  154. static int c4iw_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
  155. {
  156. int len = vma->vm_end - vma->vm_start;
  157. u32 key = vma->vm_pgoff << PAGE_SHIFT;
  158. struct c4iw_rdev *rdev;
  159. int ret = 0;
  160. struct c4iw_mm_entry *mm;
  161. struct c4iw_ucontext *ucontext;
  162. u64 addr;
  163. pr_debug("%s pgoff 0x%lx key 0x%x len %d\n", __func__, vma->vm_pgoff,
  164. key, len);
  165. if (vma->vm_start & (PAGE_SIZE-1))
  166. return -EINVAL;
  167. rdev = &(to_c4iw_dev(context->device)->rdev);
  168. ucontext = to_c4iw_ucontext(context);
  169. mm = remove_mmap(ucontext, key, len);
  170. if (!mm)
  171. return -EINVAL;
  172. addr = mm->addr;
  173. kfree(mm);
  174. if ((addr >= pci_resource_start(rdev->lldi.pdev, 0)) &&
  175. (addr < (pci_resource_start(rdev->lldi.pdev, 0) +
  176. pci_resource_len(rdev->lldi.pdev, 0)))) {
  177. /*
  178. * MA_SYNC register...
  179. */
  180. vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
  181. ret = io_remap_pfn_range(vma, vma->vm_start,
  182. addr >> PAGE_SHIFT,
  183. len, vma->vm_page_prot);
  184. } else if ((addr >= pci_resource_start(rdev->lldi.pdev, 2)) &&
  185. (addr < (pci_resource_start(rdev->lldi.pdev, 2) +
  186. pci_resource_len(rdev->lldi.pdev, 2)))) {
  187. /*
  188. * Map user DB or OCQP memory...
  189. */
  190. if (addr >= rdev->oc_mw_pa)
  191. vma->vm_page_prot = t4_pgprot_wc(vma->vm_page_prot);
  192. else {
  193. if (!is_t4(rdev->lldi.adapter_type))
  194. vma->vm_page_prot =
  195. t4_pgprot_wc(vma->vm_page_prot);
  196. else
  197. vma->vm_page_prot =
  198. pgprot_noncached(vma->vm_page_prot);
  199. }
  200. ret = io_remap_pfn_range(vma, vma->vm_start,
  201. addr >> PAGE_SHIFT,
  202. len, vma->vm_page_prot);
  203. } else {
  204. /*
  205. * Map WQ or CQ contig dma memory...
  206. */
  207. ret = remap_pfn_range(vma, vma->vm_start,
  208. addr >> PAGE_SHIFT,
  209. len, vma->vm_page_prot);
  210. }
  211. return ret;
  212. }
  213. static int c4iw_deallocate_pd(struct ib_pd *pd)
  214. {
  215. struct c4iw_dev *rhp;
  216. struct c4iw_pd *php;
  217. php = to_c4iw_pd(pd);
  218. rhp = php->rhp;
  219. pr_debug("%s ibpd %p pdid 0x%x\n", __func__, pd, php->pdid);
  220. c4iw_put_resource(&rhp->rdev.resource.pdid_table, php->pdid);
  221. mutex_lock(&rhp->rdev.stats.lock);
  222. rhp->rdev.stats.pd.cur--;
  223. mutex_unlock(&rhp->rdev.stats.lock);
  224. kfree(php);
  225. return 0;
  226. }
  227. static struct ib_pd *c4iw_allocate_pd(struct ib_device *ibdev,
  228. struct ib_ucontext *context,
  229. struct ib_udata *udata)
  230. {
  231. struct c4iw_pd *php;
  232. u32 pdid;
  233. struct c4iw_dev *rhp;
  234. pr_debug("%s ibdev %p\n", __func__, ibdev);
  235. rhp = (struct c4iw_dev *) ibdev;
  236. pdid = c4iw_get_resource(&rhp->rdev.resource.pdid_table);
  237. if (!pdid)
  238. return ERR_PTR(-EINVAL);
  239. php = kzalloc(sizeof(*php), GFP_KERNEL);
  240. if (!php) {
  241. c4iw_put_resource(&rhp->rdev.resource.pdid_table, pdid);
  242. return ERR_PTR(-ENOMEM);
  243. }
  244. php->pdid = pdid;
  245. php->rhp = rhp;
  246. if (context) {
  247. if (ib_copy_to_udata(udata, &php->pdid, sizeof(u32))) {
  248. c4iw_deallocate_pd(&php->ibpd);
  249. return ERR_PTR(-EFAULT);
  250. }
  251. }
  252. mutex_lock(&rhp->rdev.stats.lock);
  253. rhp->rdev.stats.pd.cur++;
  254. if (rhp->rdev.stats.pd.cur > rhp->rdev.stats.pd.max)
  255. rhp->rdev.stats.pd.max = rhp->rdev.stats.pd.cur;
  256. mutex_unlock(&rhp->rdev.stats.lock);
  257. pr_debug("%s pdid 0x%0x ptr 0x%p\n", __func__, pdid, php);
  258. return &php->ibpd;
  259. }
  260. static int c4iw_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
  261. u16 *pkey)
  262. {
  263. pr_debug("%s ibdev %p\n", __func__, ibdev);
  264. *pkey = 0;
  265. return 0;
  266. }
  267. static int c4iw_query_gid(struct ib_device *ibdev, u8 port, int index,
  268. union ib_gid *gid)
  269. {
  270. struct c4iw_dev *dev;
  271. pr_debug("%s ibdev %p, port %d, index %d, gid %p\n",
  272. __func__, ibdev, port, index, gid);
  273. dev = to_c4iw_dev(ibdev);
  274. BUG_ON(port == 0);
  275. memset(&(gid->raw[0]), 0, sizeof(gid->raw));
  276. memcpy(&(gid->raw[0]), dev->rdev.lldi.ports[port-1]->dev_addr, 6);
  277. return 0;
  278. }
  279. static int c4iw_query_device(struct ib_device *ibdev, struct ib_device_attr *props,
  280. struct ib_udata *uhw)
  281. {
  282. struct c4iw_dev *dev;
  283. pr_debug("%s ibdev %p\n", __func__, ibdev);
  284. if (uhw->inlen || uhw->outlen)
  285. return -EINVAL;
  286. dev = to_c4iw_dev(ibdev);
  287. memset(props, 0, sizeof *props);
  288. memcpy(&props->sys_image_guid, dev->rdev.lldi.ports[0]->dev_addr, 6);
  289. props->hw_ver = CHELSIO_CHIP_RELEASE(dev->rdev.lldi.adapter_type);
  290. props->fw_ver = dev->rdev.lldi.fw_vers;
  291. props->device_cap_flags = dev->device_cap_flags;
  292. props->page_size_cap = T4_PAGESIZE_MASK;
  293. props->vendor_id = (u32)dev->rdev.lldi.pdev->vendor;
  294. props->vendor_part_id = (u32)dev->rdev.lldi.pdev->device;
  295. props->max_mr_size = T4_MAX_MR_SIZE;
  296. props->max_qp = dev->rdev.lldi.vr->qp.size / 2;
  297. props->max_qp_wr = dev->rdev.hw_queue.t4_max_qp_depth;
  298. props->max_sge = T4_MAX_RECV_SGE;
  299. props->max_sge_rd = 1;
  300. props->max_res_rd_atom = dev->rdev.lldi.max_ird_adapter;
  301. props->max_qp_rd_atom = min(dev->rdev.lldi.max_ordird_qp,
  302. c4iw_max_read_depth);
  303. props->max_qp_init_rd_atom = props->max_qp_rd_atom;
  304. props->max_cq = dev->rdev.lldi.vr->qp.size;
  305. props->max_cqe = dev->rdev.hw_queue.t4_max_cq_depth;
  306. props->max_mr = c4iw_num_stags(&dev->rdev);
  307. props->max_pd = T4_MAX_NUM_PD;
  308. props->local_ca_ack_delay = 0;
  309. props->max_fast_reg_page_list_len =
  310. t4_max_fr_depth(dev->rdev.lldi.ulptx_memwrite_dsgl && use_dsgl);
  311. return 0;
  312. }
  313. static int c4iw_query_port(struct ib_device *ibdev, u8 port,
  314. struct ib_port_attr *props)
  315. {
  316. struct c4iw_dev *dev;
  317. struct net_device *netdev;
  318. struct in_device *inetdev;
  319. pr_debug("%s ibdev %p\n", __func__, ibdev);
  320. dev = to_c4iw_dev(ibdev);
  321. netdev = dev->rdev.lldi.ports[port-1];
  322. /* props being zeroed by the caller, avoid zeroing it here */
  323. props->max_mtu = IB_MTU_4096;
  324. props->active_mtu = ib_mtu_int_to_enum(netdev->mtu);
  325. if (!netif_carrier_ok(netdev))
  326. props->state = IB_PORT_DOWN;
  327. else {
  328. inetdev = in_dev_get(netdev);
  329. if (inetdev) {
  330. if (inetdev->ifa_list)
  331. props->state = IB_PORT_ACTIVE;
  332. else
  333. props->state = IB_PORT_INIT;
  334. in_dev_put(inetdev);
  335. } else
  336. props->state = IB_PORT_INIT;
  337. }
  338. props->port_cap_flags =
  339. IB_PORT_CM_SUP |
  340. IB_PORT_SNMP_TUNNEL_SUP |
  341. IB_PORT_REINIT_SUP |
  342. IB_PORT_DEVICE_MGMT_SUP |
  343. IB_PORT_VENDOR_CLASS_SUP | IB_PORT_BOOT_MGMT_SUP;
  344. props->gid_tbl_len = 1;
  345. props->pkey_tbl_len = 1;
  346. props->active_width = 2;
  347. props->active_speed = IB_SPEED_DDR;
  348. props->max_msg_sz = -1;
  349. return 0;
  350. }
  351. static ssize_t show_rev(struct device *dev, struct device_attribute *attr,
  352. char *buf)
  353. {
  354. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  355. ibdev.dev);
  356. pr_debug("%s dev 0x%p\n", __func__, dev);
  357. return sprintf(buf, "%d\n",
  358. CHELSIO_CHIP_RELEASE(c4iw_dev->rdev.lldi.adapter_type));
  359. }
  360. static ssize_t show_hca(struct device *dev, struct device_attribute *attr,
  361. char *buf)
  362. {
  363. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  364. ibdev.dev);
  365. struct ethtool_drvinfo info;
  366. struct net_device *lldev = c4iw_dev->rdev.lldi.ports[0];
  367. pr_debug("%s dev 0x%p\n", __func__, dev);
  368. lldev->ethtool_ops->get_drvinfo(lldev, &info);
  369. return sprintf(buf, "%s\n", info.driver);
  370. }
  371. static ssize_t show_board(struct device *dev, struct device_attribute *attr,
  372. char *buf)
  373. {
  374. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  375. ibdev.dev);
  376. pr_debug("%s dev 0x%p\n", __func__, dev);
  377. return sprintf(buf, "%x.%x\n", c4iw_dev->rdev.lldi.pdev->vendor,
  378. c4iw_dev->rdev.lldi.pdev->device);
  379. }
  380. enum counters {
  381. IP4INSEGS,
  382. IP4OUTSEGS,
  383. IP4RETRANSSEGS,
  384. IP4OUTRSTS,
  385. IP6INSEGS,
  386. IP6OUTSEGS,
  387. IP6RETRANSSEGS,
  388. IP6OUTRSTS,
  389. NR_COUNTERS
  390. };
  391. static const char * const names[] = {
  392. [IP4INSEGS] = "ip4InSegs",
  393. [IP4OUTSEGS] = "ip4OutSegs",
  394. [IP4RETRANSSEGS] = "ip4RetransSegs",
  395. [IP4OUTRSTS] = "ip4OutRsts",
  396. [IP6INSEGS] = "ip6InSegs",
  397. [IP6OUTSEGS] = "ip6OutSegs",
  398. [IP6RETRANSSEGS] = "ip6RetransSegs",
  399. [IP6OUTRSTS] = "ip6OutRsts"
  400. };
  401. static struct rdma_hw_stats *c4iw_alloc_stats(struct ib_device *ibdev,
  402. u8 port_num)
  403. {
  404. BUILD_BUG_ON(ARRAY_SIZE(names) != NR_COUNTERS);
  405. if (port_num != 0)
  406. return NULL;
  407. return rdma_alloc_hw_stats_struct(names, NR_COUNTERS,
  408. RDMA_HW_STATS_DEFAULT_LIFESPAN);
  409. }
  410. static int c4iw_get_mib(struct ib_device *ibdev,
  411. struct rdma_hw_stats *stats,
  412. u8 port, int index)
  413. {
  414. struct tp_tcp_stats v4, v6;
  415. struct c4iw_dev *c4iw_dev = to_c4iw_dev(ibdev);
  416. cxgb4_get_tcp_stats(c4iw_dev->rdev.lldi.pdev, &v4, &v6);
  417. stats->value[IP4INSEGS] = v4.tcp_in_segs;
  418. stats->value[IP4OUTSEGS] = v4.tcp_out_segs;
  419. stats->value[IP4RETRANSSEGS] = v4.tcp_retrans_segs;
  420. stats->value[IP4OUTRSTS] = v4.tcp_out_rsts;
  421. stats->value[IP6INSEGS] = v6.tcp_in_segs;
  422. stats->value[IP6OUTSEGS] = v6.tcp_out_segs;
  423. stats->value[IP6RETRANSSEGS] = v6.tcp_retrans_segs;
  424. stats->value[IP6OUTRSTS] = v6.tcp_out_rsts;
  425. return stats->num_counters;
  426. }
  427. static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
  428. static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
  429. static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
  430. static struct device_attribute *c4iw_class_attributes[] = {
  431. &dev_attr_hw_rev,
  432. &dev_attr_hca_type,
  433. &dev_attr_board_id,
  434. };
  435. static int c4iw_port_immutable(struct ib_device *ibdev, u8 port_num,
  436. struct ib_port_immutable *immutable)
  437. {
  438. struct ib_port_attr attr;
  439. int err;
  440. immutable->core_cap_flags = RDMA_CORE_PORT_IWARP;
  441. err = ib_query_port(ibdev, port_num, &attr);
  442. if (err)
  443. return err;
  444. immutable->pkey_tbl_len = attr.pkey_tbl_len;
  445. immutable->gid_tbl_len = attr.gid_tbl_len;
  446. return 0;
  447. }
  448. static void get_dev_fw_str(struct ib_device *dev, char *str)
  449. {
  450. struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev,
  451. ibdev);
  452. pr_debug("%s dev 0x%p\n", __func__, dev);
  453. snprintf(str, IB_FW_VERSION_NAME_MAX, "%u.%u.%u.%u",
  454. FW_HDR_FW_VER_MAJOR_G(c4iw_dev->rdev.lldi.fw_vers),
  455. FW_HDR_FW_VER_MINOR_G(c4iw_dev->rdev.lldi.fw_vers),
  456. FW_HDR_FW_VER_MICRO_G(c4iw_dev->rdev.lldi.fw_vers),
  457. FW_HDR_FW_VER_BUILD_G(c4iw_dev->rdev.lldi.fw_vers));
  458. }
  459. int c4iw_register_device(struct c4iw_dev *dev)
  460. {
  461. int ret;
  462. int i;
  463. pr_debug("%s c4iw_dev %p\n", __func__, dev);
  464. BUG_ON(!dev->rdev.lldi.ports[0]);
  465. strlcpy(dev->ibdev.name, "cxgb4_%d", IB_DEVICE_NAME_MAX);
  466. memset(&dev->ibdev.node_guid, 0, sizeof(dev->ibdev.node_guid));
  467. memcpy(&dev->ibdev.node_guid, dev->rdev.lldi.ports[0]->dev_addr, 6);
  468. dev->ibdev.owner = THIS_MODULE;
  469. dev->device_cap_flags = IB_DEVICE_LOCAL_DMA_LKEY | IB_DEVICE_MEM_WINDOW;
  470. if (fastreg_support)
  471. dev->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS;
  472. dev->ibdev.local_dma_lkey = 0;
  473. dev->ibdev.uverbs_cmd_mask =
  474. (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
  475. (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
  476. (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
  477. (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
  478. (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
  479. (1ull << IB_USER_VERBS_CMD_REG_MR) |
  480. (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
  481. (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
  482. (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
  483. (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
  484. (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) |
  485. (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
  486. (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
  487. (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
  488. (1ull << IB_USER_VERBS_CMD_POLL_CQ) |
  489. (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
  490. (1ull << IB_USER_VERBS_CMD_POST_SEND) |
  491. (1ull << IB_USER_VERBS_CMD_POST_RECV);
  492. dev->ibdev.node_type = RDMA_NODE_RNIC;
  493. BUILD_BUG_ON(sizeof(C4IW_NODE_DESC) > IB_DEVICE_NODE_DESC_MAX);
  494. memcpy(dev->ibdev.node_desc, C4IW_NODE_DESC, sizeof(C4IW_NODE_DESC));
  495. dev->ibdev.phys_port_cnt = dev->rdev.lldi.nports;
  496. dev->ibdev.num_comp_vectors = dev->rdev.lldi.nciq;
  497. dev->ibdev.dev.parent = &dev->rdev.lldi.pdev->dev;
  498. dev->ibdev.query_device = c4iw_query_device;
  499. dev->ibdev.query_port = c4iw_query_port;
  500. dev->ibdev.query_pkey = c4iw_query_pkey;
  501. dev->ibdev.query_gid = c4iw_query_gid;
  502. dev->ibdev.alloc_ucontext = c4iw_alloc_ucontext;
  503. dev->ibdev.dealloc_ucontext = c4iw_dealloc_ucontext;
  504. dev->ibdev.mmap = c4iw_mmap;
  505. dev->ibdev.alloc_pd = c4iw_allocate_pd;
  506. dev->ibdev.dealloc_pd = c4iw_deallocate_pd;
  507. dev->ibdev.create_ah = c4iw_ah_create;
  508. dev->ibdev.destroy_ah = c4iw_ah_destroy;
  509. dev->ibdev.create_qp = c4iw_create_qp;
  510. dev->ibdev.modify_qp = c4iw_ib_modify_qp;
  511. dev->ibdev.query_qp = c4iw_ib_query_qp;
  512. dev->ibdev.destroy_qp = c4iw_destroy_qp;
  513. dev->ibdev.create_cq = c4iw_create_cq;
  514. dev->ibdev.destroy_cq = c4iw_destroy_cq;
  515. dev->ibdev.resize_cq = c4iw_resize_cq;
  516. dev->ibdev.poll_cq = c4iw_poll_cq;
  517. dev->ibdev.get_dma_mr = c4iw_get_dma_mr;
  518. dev->ibdev.reg_user_mr = c4iw_reg_user_mr;
  519. dev->ibdev.dereg_mr = c4iw_dereg_mr;
  520. dev->ibdev.alloc_mw = c4iw_alloc_mw;
  521. dev->ibdev.dealloc_mw = c4iw_dealloc_mw;
  522. dev->ibdev.alloc_mr = c4iw_alloc_mr;
  523. dev->ibdev.map_mr_sg = c4iw_map_mr_sg;
  524. dev->ibdev.attach_mcast = c4iw_multicast_attach;
  525. dev->ibdev.detach_mcast = c4iw_multicast_detach;
  526. dev->ibdev.process_mad = c4iw_process_mad;
  527. dev->ibdev.req_notify_cq = c4iw_arm_cq;
  528. dev->ibdev.post_send = c4iw_post_send;
  529. dev->ibdev.post_recv = c4iw_post_receive;
  530. dev->ibdev.alloc_hw_stats = c4iw_alloc_stats;
  531. dev->ibdev.get_hw_stats = c4iw_get_mib;
  532. dev->ibdev.uverbs_abi_ver = C4IW_UVERBS_ABI_VERSION;
  533. dev->ibdev.get_port_immutable = c4iw_port_immutable;
  534. dev->ibdev.get_dev_fw_str = get_dev_fw_str;
  535. dev->ibdev.iwcm = kmalloc(sizeof(struct iw_cm_verbs), GFP_KERNEL);
  536. if (!dev->ibdev.iwcm)
  537. return -ENOMEM;
  538. dev->ibdev.iwcm->connect = c4iw_connect;
  539. dev->ibdev.iwcm->accept = c4iw_accept_cr;
  540. dev->ibdev.iwcm->reject = c4iw_reject_cr;
  541. dev->ibdev.iwcm->create_listen = c4iw_create_listen;
  542. dev->ibdev.iwcm->destroy_listen = c4iw_destroy_listen;
  543. dev->ibdev.iwcm->add_ref = c4iw_qp_add_ref;
  544. dev->ibdev.iwcm->rem_ref = c4iw_qp_rem_ref;
  545. dev->ibdev.iwcm->get_qp = c4iw_get_qp;
  546. memcpy(dev->ibdev.iwcm->ifname, dev->rdev.lldi.ports[0]->name,
  547. sizeof(dev->ibdev.iwcm->ifname));
  548. ret = ib_register_device(&dev->ibdev, NULL);
  549. if (ret)
  550. goto bail1;
  551. for (i = 0; i < ARRAY_SIZE(c4iw_class_attributes); ++i) {
  552. ret = device_create_file(&dev->ibdev.dev,
  553. c4iw_class_attributes[i]);
  554. if (ret)
  555. goto bail2;
  556. }
  557. return 0;
  558. bail2:
  559. ib_unregister_device(&dev->ibdev);
  560. bail1:
  561. kfree(dev->ibdev.iwcm);
  562. return ret;
  563. }
  564. void c4iw_unregister_device(struct c4iw_dev *dev)
  565. {
  566. int i;
  567. pr_debug("%s c4iw_dev %p\n", __func__, dev);
  568. for (i = 0; i < ARRAY_SIZE(c4iw_class_attributes); ++i)
  569. device_remove_file(&dev->ibdev.dev,
  570. c4iw_class_attributes[i]);
  571. ib_unregister_device(&dev->ibdev);
  572. kfree(dev->ibdev.iwcm);
  573. return;
  574. }