provider.c 19 KB

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