mthca_provider.h 7.8 KB

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