provider.c 19 KB

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