mthca_provider.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /*
  2. * Copyright (c) 2004 Topspin Communications. 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. * $Id: mthca_provider.h 1349 2004-12-16 21:09:43Z roland $
  33. */
  34. #ifndef MTHCA_PROVIDER_H
  35. #define MTHCA_PROVIDER_H
  36. #include <ib_verbs.h>
  37. #include <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. DECLARE_PCI_UNMAP_ADDR(mapping)
  46. };
  47. struct mthca_uar {
  48. unsigned long pfn;
  49. int index;
  50. };
  51. struct mthca_mtt;
  52. struct mthca_mr {
  53. struct ib_mr ibmr;
  54. struct mthca_mtt *mtt;
  55. };
  56. struct mthca_fmr {
  57. struct ib_fmr ibmr;
  58. struct ib_fmr_attr attr;
  59. struct mthca_mtt *mtt;
  60. int maps;
  61. union {
  62. struct {
  63. struct mthca_mpt_entry __iomem *mpt;
  64. u64 __iomem *mtts;
  65. } tavor;
  66. struct {
  67. struct mthca_mpt_entry *mpt;
  68. __be64 *mtts;
  69. } arbel;
  70. } mem;
  71. };
  72. struct mthca_pd {
  73. struct ib_pd ibpd;
  74. u32 pd_num;
  75. atomic_t sqp_count;
  76. struct mthca_mr ntmr;
  77. };
  78. struct mthca_eq {
  79. struct mthca_dev *dev;
  80. int eqn;
  81. u32 eqn_mask;
  82. u32 cons_index;
  83. u16 msi_x_vector;
  84. u16 msi_x_entry;
  85. int have_irq;
  86. int nent;
  87. struct mthca_buf_list *page_list;
  88. struct mthca_mr mr;
  89. };
  90. struct mthca_av;
  91. enum mthca_ah_type {
  92. MTHCA_AH_ON_HCA,
  93. MTHCA_AH_PCI_POOL,
  94. MTHCA_AH_KMALLOC
  95. };
  96. struct mthca_ah {
  97. struct ib_ah ibah;
  98. enum mthca_ah_type type;
  99. u32 key;
  100. struct mthca_av *av;
  101. dma_addr_t avdma;
  102. };
  103. /*
  104. * Quick description of our CQ/QP locking scheme:
  105. *
  106. * We have one global lock that protects dev->cq/qp_table. Each
  107. * struct mthca_cq/qp also has its own lock. An individual qp lock
  108. * may be taken inside of an individual cq lock. Both cqs attached to
  109. * a qp may be locked, with the send cq locked first. No other
  110. * nesting should be done.
  111. *
  112. * Each struct mthca_cq/qp also has an atomic_t ref count. The
  113. * pointer from the cq/qp_table to the struct counts as one reference.
  114. * This reference also is good for access through the consumer API, so
  115. * modifying the CQ/QP etc doesn't need to take another reference.
  116. * Access because of a completion being polled does need a reference.
  117. *
  118. * Finally, each struct mthca_cq/qp has a wait_queue_head_t for the
  119. * destroy function to sleep on.
  120. *
  121. * This means that access from the consumer API requires nothing but
  122. * taking the struct's lock.
  123. *
  124. * Access because of a completion event should go as follows:
  125. * - lock cq/qp_table and look up struct
  126. * - increment ref count in struct
  127. * - drop cq/qp_table lock
  128. * - lock struct, do your thing, and unlock struct
  129. * - decrement ref count; if zero, wake up waiters
  130. *
  131. * To destroy a CQ/QP, we can do the following:
  132. * - lock cq/qp_table, remove pointer, unlock cq/qp_table lock
  133. * - decrement ref count
  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 the
  138. * QP is destroyed. Also, the consumer must make sure that calls to
  139. * qp_modify are serialized.
  140. *
  141. * Possible optimizations (wait for profile data to see if/where we
  142. * have locks bouncing between CPUs):
  143. * - split cq/qp table lock into n separate (cache-aligned) locks,
  144. * indexed (say) by the page in the table
  145. * - split QP struct lock into three (one for common info, one for the
  146. * send queue and one for the receive queue)
  147. */
  148. struct mthca_cq {
  149. struct ib_cq ibcq;
  150. spinlock_t lock;
  151. atomic_t refcount;
  152. int cqn;
  153. u32 cons_index;
  154. int is_direct;
  155. /* Next fields are Arbel only */
  156. int set_ci_db_index;
  157. u32 *set_ci_db;
  158. int arm_db_index;
  159. u32 *arm_db;
  160. int arm_sn;
  161. union {
  162. struct mthca_buf_list direct;
  163. struct mthca_buf_list *page_list;
  164. } queue;
  165. struct mthca_mr mr;
  166. wait_queue_head_t wait;
  167. };
  168. struct mthca_wq {
  169. spinlock_t lock;
  170. int max;
  171. unsigned next_ind;
  172. unsigned last_comp;
  173. unsigned head;
  174. unsigned tail;
  175. void *last;
  176. int max_gs;
  177. int wqe_shift;
  178. int db_index; /* Arbel only */
  179. u32 *db;
  180. };
  181. struct mthca_qp {
  182. struct ib_qp ibqp;
  183. atomic_t refcount;
  184. u32 qpn;
  185. int is_direct;
  186. u8 transport;
  187. u8 state;
  188. u8 atomic_rd_en;
  189. u8 resp_depth;
  190. struct mthca_mr mr;
  191. struct mthca_wq rq;
  192. struct mthca_wq sq;
  193. enum ib_sig_type sq_policy;
  194. int send_wqe_offset;
  195. u64 *wrid;
  196. union {
  197. struct mthca_buf_list direct;
  198. struct mthca_buf_list *page_list;
  199. } queue;
  200. wait_queue_head_t wait;
  201. };
  202. struct mthca_sqp {
  203. struct mthca_qp qp;
  204. int port;
  205. int pkey_index;
  206. u32 qkey;
  207. u32 send_psn;
  208. struct ib_ud_header ud_header;
  209. int header_buf_size;
  210. void *header_buf;
  211. dma_addr_t header_dma;
  212. };
  213. static inline struct mthca_fmr *to_mfmr(struct ib_fmr *ibmr)
  214. {
  215. return container_of(ibmr, struct mthca_fmr, ibmr);
  216. }
  217. static inline struct mthca_mr *to_mmr(struct ib_mr *ibmr)
  218. {
  219. return container_of(ibmr, struct mthca_mr, ibmr);
  220. }
  221. static inline struct mthca_pd *to_mpd(struct ib_pd *ibpd)
  222. {
  223. return container_of(ibpd, struct mthca_pd, ibpd);
  224. }
  225. static inline struct mthca_ah *to_mah(struct ib_ah *ibah)
  226. {
  227. return container_of(ibah, struct mthca_ah, ibah);
  228. }
  229. static inline struct mthca_cq *to_mcq(struct ib_cq *ibcq)
  230. {
  231. return container_of(ibcq, struct mthca_cq, ibcq);
  232. }
  233. static inline struct mthca_qp *to_mqp(struct ib_qp *ibqp)
  234. {
  235. return container_of(ibqp, struct mthca_qp, ibqp);
  236. }
  237. static inline struct mthca_sqp *to_msqp(struct mthca_qp *qp)
  238. {
  239. return container_of(qp, struct mthca_sqp, qp);
  240. }
  241. #endif /* MTHCA_PROVIDER_H */