mthca_provider.h 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  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. * $Id: mthca_provider.h 1349 2004-12-16 21:09:43Z roland $
  35. */
  36. #ifndef MTHCA_PROVIDER_H
  37. #define MTHCA_PROVIDER_H
  38. #include <rdma/ib_verbs.h>
  39. #include <rdma/ib_pack.h>
  40. #define MTHCA_MPT_FLAG_ATOMIC (1 << 14)
  41. #define MTHCA_MPT_FLAG_REMOTE_WRITE (1 << 13)
  42. #define MTHCA_MPT_FLAG_REMOTE_READ (1 << 12)
  43. #define MTHCA_MPT_FLAG_LOCAL_WRITE (1 << 11)
  44. #define MTHCA_MPT_FLAG_LOCAL_READ (1 << 10)
  45. struct mthca_buf_list {
  46. void *buf;
  47. DECLARE_PCI_UNMAP_ADDR(mapping)
  48. };
  49. union mthca_buf {
  50. struct mthca_buf_list direct;
  51. struct mthca_buf_list *page_list;
  52. };
  53. struct mthca_uar {
  54. unsigned long pfn;
  55. int index;
  56. };
  57. struct mthca_user_db_table;
  58. struct mthca_ucontext {
  59. struct ib_ucontext ibucontext;
  60. struct mthca_uar uar;
  61. struct mthca_user_db_table *db_tab;
  62. };
  63. struct mthca_mtt;
  64. struct mthca_mr {
  65. struct ib_mr ibmr;
  66. struct mthca_mtt *mtt;
  67. };
  68. struct mthca_fmr {
  69. struct ib_fmr ibmr;
  70. struct ib_fmr_attr attr;
  71. struct mthca_mtt *mtt;
  72. int maps;
  73. union {
  74. struct {
  75. struct mthca_mpt_entry __iomem *mpt;
  76. u64 __iomem *mtts;
  77. } tavor;
  78. struct {
  79. struct mthca_mpt_entry *mpt;
  80. __be64 *mtts;
  81. } arbel;
  82. } mem;
  83. };
  84. struct mthca_pd {
  85. struct ib_pd ibpd;
  86. u32 pd_num;
  87. atomic_t sqp_count;
  88. struct mthca_mr ntmr;
  89. int privileged;
  90. };
  91. struct mthca_eq {
  92. struct mthca_dev *dev;
  93. int eqn;
  94. u32 eqn_mask;
  95. u32 cons_index;
  96. u16 msi_x_vector;
  97. u16 msi_x_entry;
  98. int have_irq;
  99. int nent;
  100. struct mthca_buf_list *page_list;
  101. struct mthca_mr mr;
  102. };
  103. struct mthca_av;
  104. enum mthca_ah_type {
  105. MTHCA_AH_ON_HCA,
  106. MTHCA_AH_PCI_POOL,
  107. MTHCA_AH_KMALLOC
  108. };
  109. struct mthca_ah {
  110. struct ib_ah ibah;
  111. enum mthca_ah_type type;
  112. u32 key;
  113. struct mthca_av *av;
  114. dma_addr_t avdma;
  115. };
  116. /*
  117. * Quick description of our CQ/QP locking scheme:
  118. *
  119. * We have one global lock that protects dev->cq/qp_table. Each
  120. * struct mthca_cq/qp also has its own lock. An individual qp lock
  121. * may be taken inside of an individual cq lock. Both cqs attached to
  122. * a qp may be locked, with the send cq locked first. No other
  123. * nesting should be done.
  124. *
  125. * Each struct mthca_cq/qp also has an atomic_t ref count. The
  126. * pointer from the cq/qp_table to the struct counts as one reference.
  127. * This reference also is good for access through the consumer API, so
  128. * modifying the CQ/QP etc doesn't need to take another reference.
  129. * Access because of a completion being polled does need a reference.
  130. *
  131. * Finally, each struct mthca_cq/qp has a wait_queue_head_t for the
  132. * destroy function to sleep on.
  133. *
  134. * This means that access from the consumer API requires nothing but
  135. * taking the struct's lock.
  136. *
  137. * Access because of a completion event should go as follows:
  138. * - lock cq/qp_table and look up struct
  139. * - increment ref count in struct
  140. * - drop cq/qp_table lock
  141. * - lock struct, do your thing, and unlock struct
  142. * - decrement ref count; if zero, wake up waiters
  143. *
  144. * To destroy a CQ/QP, we can do the following:
  145. * - lock cq/qp_table, remove pointer, unlock cq/qp_table lock
  146. * - decrement ref count
  147. * - wait_event until ref count is zero
  148. *
  149. * It is the consumer's responsibilty to make sure that no QP
  150. * operations (WQE posting or state modification) are pending when a
  151. * QP is destroyed. Also, the consumer must make sure that calls to
  152. * qp_modify are serialized. Similarly, the consumer is responsible
  153. * for ensuring that no CQ resize operations are pending when a CQ
  154. * is destroyed.
  155. *
  156. * Possible optimizations (wait for profile data to see if/where we
  157. * have locks bouncing between CPUs):
  158. * - split cq/qp table lock into n separate (cache-aligned) locks,
  159. * indexed (say) by the page in the table
  160. * - split QP struct lock into three (one for common info, one for the
  161. * send queue and one for the receive queue)
  162. */
  163. struct mthca_cq_buf {
  164. union mthca_buf queue;
  165. struct mthca_mr mr;
  166. int is_direct;
  167. };
  168. struct mthca_cq_resize {
  169. struct mthca_cq_buf buf;
  170. int cqe;
  171. enum {
  172. CQ_RESIZE_ALLOC,
  173. CQ_RESIZE_READY,
  174. CQ_RESIZE_SWAPPED
  175. } state;
  176. };
  177. struct mthca_cq {
  178. struct ib_cq ibcq;
  179. spinlock_t lock;
  180. atomic_t refcount;
  181. int cqn;
  182. u32 cons_index;
  183. struct mthca_cq_buf buf;
  184. struct mthca_cq_resize *resize_buf;
  185. int is_kernel;
  186. /* Next fields are Arbel only */
  187. int set_ci_db_index;
  188. __be32 *set_ci_db;
  189. int arm_db_index;
  190. __be32 *arm_db;
  191. int arm_sn;
  192. wait_queue_head_t wait;
  193. };
  194. struct mthca_srq {
  195. struct ib_srq ibsrq;
  196. spinlock_t lock;
  197. atomic_t refcount;
  198. int srqn;
  199. int max;
  200. int max_gs;
  201. int wqe_shift;
  202. int first_free;
  203. int last_free;
  204. u16 counter; /* Arbel only */
  205. int db_index; /* Arbel only */
  206. __be32 *db; /* Arbel only */
  207. void *last;
  208. int is_direct;
  209. u64 *wrid;
  210. union mthca_buf queue;
  211. struct mthca_mr mr;
  212. wait_queue_head_t wait;
  213. };
  214. struct mthca_wq {
  215. spinlock_t lock;
  216. int max;
  217. unsigned next_ind;
  218. unsigned last_comp;
  219. unsigned head;
  220. unsigned tail;
  221. void *last;
  222. int max_gs;
  223. int wqe_shift;
  224. int db_index; /* Arbel only */
  225. __be32 *db;
  226. };
  227. struct mthca_qp {
  228. struct ib_qp ibqp;
  229. atomic_t refcount;
  230. u32 qpn;
  231. int is_direct;
  232. u8 port; /* for SQP and memfree use only */
  233. u8 alt_port; /* for memfree use only */
  234. u8 transport;
  235. u8 state;
  236. u8 atomic_rd_en;
  237. u8 resp_depth;
  238. struct mthca_mr mr;
  239. struct mthca_wq rq;
  240. struct mthca_wq sq;
  241. enum ib_sig_type sq_policy;
  242. int send_wqe_offset;
  243. int max_inline_data;
  244. u64 *wrid;
  245. union mthca_buf queue;
  246. wait_queue_head_t wait;
  247. };
  248. struct mthca_sqp {
  249. struct mthca_qp qp;
  250. int pkey_index;
  251. u32 qkey;
  252. u32 send_psn;
  253. struct ib_ud_header ud_header;
  254. int header_buf_size;
  255. void *header_buf;
  256. dma_addr_t header_dma;
  257. };
  258. static inline struct mthca_ucontext *to_mucontext(struct ib_ucontext *ibucontext)
  259. {
  260. return container_of(ibucontext, struct mthca_ucontext, ibucontext);
  261. }
  262. static inline struct mthca_fmr *to_mfmr(struct ib_fmr *ibmr)
  263. {
  264. return container_of(ibmr, struct mthca_fmr, ibmr);
  265. }
  266. static inline struct mthca_mr *to_mmr(struct ib_mr *ibmr)
  267. {
  268. return container_of(ibmr, struct mthca_mr, ibmr);
  269. }
  270. static inline struct mthca_pd *to_mpd(struct ib_pd *ibpd)
  271. {
  272. return container_of(ibpd, struct mthca_pd, ibpd);
  273. }
  274. static inline struct mthca_ah *to_mah(struct ib_ah *ibah)
  275. {
  276. return container_of(ibah, struct mthca_ah, ibah);
  277. }
  278. static inline struct mthca_cq *to_mcq(struct ib_cq *ibcq)
  279. {
  280. return container_of(ibcq, struct mthca_cq, ibcq);
  281. }
  282. static inline struct mthca_srq *to_msrq(struct ib_srq *ibsrq)
  283. {
  284. return container_of(ibsrq, struct mthca_srq, ibsrq);
  285. }
  286. static inline struct mthca_qp *to_mqp(struct ib_qp *ibqp)
  287. {
  288. return container_of(ibqp, struct mthca_qp, ibqp);
  289. }
  290. static inline struct mthca_sqp *to_msqp(struct mthca_qp *qp)
  291. {
  292. return container_of(qp, struct mthca_sqp, qp);
  293. }
  294. #endif /* MTHCA_PROVIDER_H */