mthca_provider.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /*
  2. * Copyright (c) 2004 Topspin Communications. All rights reserved.
  3. * Copyright (c) 2005, 2006 Cisco Systems. All rights reserved.
  4. * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
  5. *
  6. * This software is available to you under a choice of one of two
  7. * licenses. You may choose to be licensed under the terms of the GNU
  8. * General Public License (GPL) Version 2, available from the file
  9. * COPYING in the main directory of this source tree, or the
  10. * OpenIB.org BSD license below:
  11. *
  12. * Redistribution and use in source and binary forms, with or
  13. * without modification, are permitted provided that the following
  14. * conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above
  17. * copyright notice, this list of conditions and the following
  18. * disclaimer.
  19. *
  20. * - Redistributions in binary form must reproduce the above
  21. * copyright notice, this list of conditions and the following
  22. * disclaimer in the documentation and/or other materials
  23. * provided with the distribution.
  24. *
  25. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  26. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  27. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  28. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  29. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  30. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  31. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  32. * SOFTWARE.
  33. */
  34. #ifndef MTHCA_PROVIDER_H
  35. #define MTHCA_PROVIDER_H
  36. #include <rdma/ib_verbs.h>
  37. #include <rdma/ib_pack.h>
  38. #define MTHCA_MPT_FLAG_ATOMIC (1 << 14)
  39. #define MTHCA_MPT_FLAG_REMOTE_WRITE (1 << 13)
  40. #define MTHCA_MPT_FLAG_REMOTE_READ (1 << 12)
  41. #define MTHCA_MPT_FLAG_LOCAL_WRITE (1 << 11)
  42. #define MTHCA_MPT_FLAG_LOCAL_READ (1 << 10)
  43. struct mthca_buf_list {
  44. void *buf;
  45. DEFINE_DMA_UNMAP_ADDR(mapping);
  46. };
  47. union mthca_buf {
  48. struct mthca_buf_list direct;
  49. struct mthca_buf_list *page_list;
  50. };
  51. struct mthca_uar {
  52. unsigned long pfn;
  53. int index;
  54. };
  55. struct mthca_user_db_table;
  56. struct mthca_ucontext {
  57. struct ib_ucontext ibucontext;
  58. struct mthca_uar uar;
  59. struct mthca_user_db_table *db_tab;
  60. int reg_mr_warned;
  61. };
  62. struct mthca_mtt;
  63. struct mthca_mr {
  64. struct ib_mr ibmr;
  65. struct ib_umem *umem;
  66. struct mthca_mtt *mtt;
  67. };
  68. struct mthca_pd {
  69. struct ib_pd ibpd;
  70. u32 pd_num;
  71. atomic_t sqp_count;
  72. struct mthca_mr ntmr;
  73. int privileged;
  74. };
  75. struct mthca_eq {
  76. struct mthca_dev *dev;
  77. int eqn;
  78. u32 eqn_mask;
  79. u32 cons_index;
  80. u16 msi_x_vector;
  81. u16 msi_x_entry;
  82. int have_irq;
  83. int nent;
  84. struct mthca_buf_list *page_list;
  85. struct mthca_mr mr;
  86. char irq_name[IB_DEVICE_NAME_MAX];
  87. };
  88. struct mthca_av;
  89. enum mthca_ah_type {
  90. MTHCA_AH_ON_HCA,
  91. MTHCA_AH_PCI_POOL,
  92. MTHCA_AH_KMALLOC
  93. };
  94. struct mthca_ah {
  95. struct ib_ah ibah;
  96. enum mthca_ah_type type;
  97. u32 key;
  98. struct mthca_av *av;
  99. dma_addr_t avdma;
  100. };
  101. /*
  102. * Quick description of our CQ/QP locking scheme:
  103. *
  104. * We have one global lock that protects dev->cq/qp_table. Each
  105. * struct mthca_cq/qp also has its own lock. An individual qp lock
  106. * may be taken inside of an individual cq lock. Both cqs attached to
  107. * a qp may be locked, with the cq with the lower cqn locked first.
  108. * No other nesting should be done.
  109. *
  110. * Each struct mthca_cq/qp also has an ref count, protected by the
  111. * corresponding table lock. The pointer from the cq/qp_table to the
  112. * struct counts as one reference. This reference also is good for
  113. * access through the consumer API, so modifying the CQ/QP etc doesn't
  114. * need to take another reference. Access to a QP because of a
  115. * completion being polled does not need a reference either.
  116. *
  117. * Finally, each struct mthca_cq/qp has a wait_queue_head_t for the
  118. * destroy function to sleep on.
  119. *
  120. * This means that access from the consumer API requires nothing but
  121. * taking the struct's lock.
  122. *
  123. * Access because of a completion event should go as follows:
  124. * - lock cq/qp_table and look up struct
  125. * - increment ref count in struct
  126. * - drop cq/qp_table lock
  127. * - lock struct, do your thing, and unlock struct
  128. * - decrement ref count; if zero, wake up waiters
  129. *
  130. * To destroy a CQ/QP, we can do the following:
  131. * - lock cq/qp_table
  132. * - remove pointer and decrement ref count
  133. * - unlock cq/qp_table lock
  134. * - wait_event until ref count is zero
  135. *
  136. * It is the consumer's responsibilty to make sure that no QP
  137. * operations (WQE posting or state modification) are pending when a
  138. * QP is destroyed. Also, the consumer must make sure that calls to
  139. * qp_modify are serialized. Similarly, the consumer is responsible
  140. * for ensuring that no CQ resize operations are pending when a CQ
  141. * is destroyed.
  142. *
  143. * Possible optimizations (wait for profile data to see if/where we
  144. * have locks bouncing between CPUs):
  145. * - split cq/qp table lock into n separate (cache-aligned) locks,
  146. * indexed (say) by the page in the table
  147. * - split QP struct lock into three (one for common info, one for the
  148. * send queue and one for the receive queue)
  149. */
  150. struct mthca_cq_buf {
  151. union mthca_buf queue;
  152. struct mthca_mr mr;
  153. int is_direct;
  154. };
  155. struct mthca_cq_resize {
  156. struct mthca_cq_buf buf;
  157. int cqe;
  158. enum {
  159. CQ_RESIZE_ALLOC,
  160. CQ_RESIZE_READY,
  161. CQ_RESIZE_SWAPPED
  162. } state;
  163. };
  164. struct mthca_cq {
  165. struct ib_cq ibcq;
  166. spinlock_t lock;
  167. int refcount;
  168. int cqn;
  169. u32 cons_index;
  170. struct mthca_cq_buf buf;
  171. struct mthca_cq_resize *resize_buf;
  172. int is_kernel;
  173. /* Next fields are Arbel only */
  174. int set_ci_db_index;
  175. __be32 *set_ci_db;
  176. int arm_db_index;
  177. __be32 *arm_db;
  178. int arm_sn;
  179. wait_queue_head_t wait;
  180. struct mutex mutex;
  181. };
  182. struct mthca_srq {
  183. struct ib_srq ibsrq;
  184. spinlock_t lock;
  185. int refcount;
  186. int srqn;
  187. int max;
  188. int max_gs;
  189. int wqe_shift;
  190. int first_free;
  191. int last_free;
  192. u16 counter; /* Arbel only */
  193. int db_index; /* Arbel only */
  194. __be32 *db; /* Arbel only */
  195. void *last;
  196. int is_direct;
  197. u64 *wrid;
  198. union mthca_buf queue;
  199. struct mthca_mr mr;
  200. wait_queue_head_t wait;
  201. struct mutex mutex;
  202. };
  203. struct mthca_wq {
  204. spinlock_t lock;
  205. int max;
  206. unsigned next_ind;
  207. unsigned last_comp;
  208. unsigned head;
  209. unsigned tail;
  210. void *last;
  211. int max_gs;
  212. int wqe_shift;
  213. int db_index; /* Arbel only */
  214. __be32 *db;
  215. };
  216. struct mthca_sqp {
  217. int pkey_index;
  218. u32 qkey;
  219. u32 send_psn;
  220. struct ib_ud_header ud_header;
  221. int header_buf_size;
  222. void *header_buf;
  223. dma_addr_t header_dma;
  224. };
  225. struct mthca_qp {
  226. struct ib_qp ibqp;
  227. int refcount;
  228. u32 qpn;
  229. int is_direct;
  230. u8 port; /* for SQP and memfree use only */
  231. u8 alt_port; /* for memfree use only */
  232. u8 transport;
  233. u8 state;
  234. u8 atomic_rd_en;
  235. u8 resp_depth;
  236. struct mthca_mr mr;
  237. struct mthca_wq rq;
  238. struct mthca_wq sq;
  239. enum ib_sig_type sq_policy;
  240. int send_wqe_offset;
  241. int max_inline_data;
  242. u64 *wrid;
  243. union mthca_buf queue;
  244. wait_queue_head_t wait;
  245. struct mutex mutex;
  246. struct mthca_sqp *sqp;
  247. };
  248. static inline struct mthca_ucontext *to_mucontext(struct ib_ucontext *ibucontext)
  249. {
  250. return container_of(ibucontext, struct mthca_ucontext, ibucontext);
  251. }
  252. static inline struct mthca_mr *to_mmr(struct ib_mr *ibmr)
  253. {
  254. return container_of(ibmr, struct mthca_mr, ibmr);
  255. }
  256. static inline struct mthca_pd *to_mpd(struct ib_pd *ibpd)
  257. {
  258. return container_of(ibpd, struct mthca_pd, ibpd);
  259. }
  260. static inline struct mthca_ah *to_mah(struct ib_ah *ibah)
  261. {
  262. return container_of(ibah, struct mthca_ah, ibah);
  263. }
  264. static inline struct mthca_cq *to_mcq(struct ib_cq *ibcq)
  265. {
  266. return container_of(ibcq, struct mthca_cq, ibcq);
  267. }
  268. static inline struct mthca_srq *to_msrq(struct ib_srq *ibsrq)
  269. {
  270. return container_of(ibsrq, struct mthca_srq, ibsrq);
  271. }
  272. static inline struct mthca_qp *to_mqp(struct ib_qp *ibqp)
  273. {
  274. return container_of(ibqp, struct mthca_qp, ibqp);
  275. }
  276. #endif /* MTHCA_PROVIDER_H */