provider.c 19 KB

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