iwch.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /*
  2. * Copyright (c) 2006 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 <rdma/ib_verbs.h>
  35. #include "cxgb3_offload.h"
  36. #include "iwch_provider.h"
  37. #include "iwch_user.h"
  38. #include "iwch.h"
  39. #include "iwch_cm.h"
  40. #define DRV_VERSION "1.1"
  41. MODULE_AUTHOR("Boyd Faulkner, Steve Wise");
  42. MODULE_DESCRIPTION("Chelsio T3 RDMA Driver");
  43. MODULE_LICENSE("Dual BSD/GPL");
  44. MODULE_VERSION(DRV_VERSION);
  45. cxgb3_cpl_handler_func t3c_handlers[NUM_CPL_CMDS];
  46. static void open_rnic_dev(struct t3cdev *);
  47. static void close_rnic_dev(struct t3cdev *);
  48. struct cxgb3_client t3c_client = {
  49. .name = "iw_cxgb3",
  50. .add = open_rnic_dev,
  51. .remove = close_rnic_dev,
  52. .handlers = t3c_handlers,
  53. .redirect = iwch_ep_redirect
  54. };
  55. static LIST_HEAD(dev_list);
  56. static DEFINE_MUTEX(dev_mutex);
  57. static void rnic_init(struct iwch_dev *rnicp)
  58. {
  59. PDBG("%s iwch_dev %p\n", __FUNCTION__, rnicp);
  60. idr_init(&rnicp->cqidr);
  61. idr_init(&rnicp->qpidr);
  62. idr_init(&rnicp->mmidr);
  63. spin_lock_init(&rnicp->lock);
  64. rnicp->attr.vendor_id = 0x168;
  65. rnicp->attr.vendor_part_id = 7;
  66. rnicp->attr.max_qps = T3_MAX_NUM_QP - 32;
  67. rnicp->attr.max_wrs = (1UL << 24) - 1;
  68. rnicp->attr.max_sge_per_wr = T3_MAX_SGE;
  69. rnicp->attr.max_sge_per_rdma_write_wr = T3_MAX_SGE;
  70. rnicp->attr.max_cqs = T3_MAX_NUM_CQ - 1;
  71. rnicp->attr.max_cqes_per_cq = (1UL << 24) - 1;
  72. rnicp->attr.max_mem_regs = cxio_num_stags(&rnicp->rdev);
  73. rnicp->attr.max_phys_buf_entries = T3_MAX_PBL_SIZE;
  74. rnicp->attr.max_pds = T3_MAX_NUM_PD - 1;
  75. rnicp->attr.mem_pgsizes_bitmask = 0x7FFF; /* 4KB-128MB */
  76. rnicp->attr.can_resize_wq = 0;
  77. rnicp->attr.max_rdma_reads_per_qp = 8;
  78. rnicp->attr.max_rdma_read_resources =
  79. rnicp->attr.max_rdma_reads_per_qp * rnicp->attr.max_qps;
  80. rnicp->attr.max_rdma_read_qp_depth = 8; /* IRD */
  81. rnicp->attr.max_rdma_read_depth =
  82. rnicp->attr.max_rdma_read_qp_depth * rnicp->attr.max_qps;
  83. rnicp->attr.rq_overflow_handled = 0;
  84. rnicp->attr.can_modify_ird = 0;
  85. rnicp->attr.can_modify_ord = 0;
  86. rnicp->attr.max_mem_windows = rnicp->attr.max_mem_regs - 1;
  87. rnicp->attr.stag0_value = 1;
  88. rnicp->attr.zbva_support = 1;
  89. rnicp->attr.local_invalidate_fence = 1;
  90. rnicp->attr.cq_overflow_detection = 1;
  91. return;
  92. }
  93. static void open_rnic_dev(struct t3cdev *tdev)
  94. {
  95. struct iwch_dev *rnicp;
  96. static int vers_printed;
  97. PDBG("%s t3cdev %p\n", __FUNCTION__, tdev);
  98. if (!vers_printed++)
  99. printk(KERN_INFO MOD "Chelsio T3 RDMA Driver - version %s\n",
  100. DRV_VERSION);
  101. rnicp = (struct iwch_dev *)ib_alloc_device(sizeof(*rnicp));
  102. if (!rnicp) {
  103. printk(KERN_ERR MOD "Cannot allocate ib device\n");
  104. return;
  105. }
  106. rnicp->rdev.ulp = rnicp;
  107. rnicp->rdev.t3cdev_p = tdev;
  108. mutex_lock(&dev_mutex);
  109. if (cxio_rdev_open(&rnicp->rdev)) {
  110. mutex_unlock(&dev_mutex);
  111. printk(KERN_ERR MOD "Unable to open CXIO rdev\n");
  112. ib_dealloc_device(&rnicp->ibdev);
  113. return;
  114. }
  115. rnic_init(rnicp);
  116. list_add_tail(&rnicp->entry, &dev_list);
  117. mutex_unlock(&dev_mutex);
  118. if (iwch_register_device(rnicp)) {
  119. printk(KERN_ERR MOD "Unable to register device\n");
  120. close_rnic_dev(tdev);
  121. }
  122. printk(KERN_INFO MOD "Initialized device %s\n",
  123. pci_name(rnicp->rdev.rnic_info.pdev));
  124. return;
  125. }
  126. static void close_rnic_dev(struct t3cdev *tdev)
  127. {
  128. struct iwch_dev *dev, *tmp;
  129. PDBG("%s t3cdev %p\n", __FUNCTION__, tdev);
  130. mutex_lock(&dev_mutex);
  131. list_for_each_entry_safe(dev, tmp, &dev_list, entry) {
  132. if (dev->rdev.t3cdev_p == tdev) {
  133. list_del(&dev->entry);
  134. iwch_unregister_device(dev);
  135. cxio_rdev_close(&dev->rdev);
  136. idr_destroy(&dev->cqidr);
  137. idr_destroy(&dev->qpidr);
  138. idr_destroy(&dev->mmidr);
  139. ib_dealloc_device(&dev->ibdev);
  140. break;
  141. }
  142. }
  143. mutex_unlock(&dev_mutex);
  144. }
  145. static int __init iwch_init_module(void)
  146. {
  147. int err;
  148. err = cxio_hal_init();
  149. if (err)
  150. return err;
  151. err = iwch_cm_init();
  152. if (err)
  153. return err;
  154. cxio_register_ev_cb(iwch_ev_dispatch);
  155. cxgb3_register_client(&t3c_client);
  156. return 0;
  157. }
  158. static void __exit iwch_exit_module(void)
  159. {
  160. cxgb3_unregister_client(&t3c_client);
  161. cxio_unregister_ev_cb(iwch_ev_dispatch);
  162. iwch_cm_term();
  163. cxio_hal_exit();
  164. }
  165. module_init(iwch_init_module);
  166. module_exit(iwch_exit_module);