2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
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:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
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.
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
32 * $Id: mthca_provider.h 1349 2004-12-16 21:09:43Z roland $
35 #ifndef MTHCA_PROVIDER_H
36 #define MTHCA_PROVIDER_H
41 #define MTHCA_MPT_FLAG_ATOMIC (1 << 14)
42 #define MTHCA_MPT_FLAG_REMOTE_WRITE (1 << 13)
43 #define MTHCA_MPT_FLAG_REMOTE_READ (1 << 12)
44 #define MTHCA_MPT_FLAG_LOCAL_WRITE (1 << 11)
45 #define MTHCA_MPT_FLAG_LOCAL_READ (1 << 10)
47 struct mthca_buf_list {
49 DECLARE_PCI_UNMAP_ADDR(mapping)
65 struct ib_fmr_attr attr;
71 struct mthca_mpt_entry __iomem *mpt;
75 struct mthca_mpt_entry *mpt;
89 struct mthca_dev *dev;
97 struct mthca_buf_list *page_list;
111 enum mthca_ah_type type;
118 * Quick description of our CQ/QP locking scheme:
120 * We have one global lock that protects dev->cq/qp_table. Each
121 * struct mthca_cq/qp also has its own lock. An individual qp lock
122 * may be taken inside of an individual cq lock. Both cqs attached to
123 * a qp may be locked, with the send cq locked first. No other
124 * nesting should be done.
126 * Each struct mthca_cq/qp also has an atomic_t ref count. The
127 * pointer from the cq/qp_table to the struct counts as one reference.
128 * This reference also is good for access through the consumer API, so
129 * modifying the CQ/QP etc doesn't need to take another reference.
130 * Access because of a completion being polled does need a reference.
132 * Finally, each struct mthca_cq/qp has a wait_queue_head_t for the
133 * destroy function to sleep on.
135 * This means that access from the consumer API requires nothing but
136 * taking the struct's lock.
138 * Access because of a completion event should go as follows:
139 * - lock cq/qp_table and look up struct
140 * - increment ref count in struct
141 * - drop cq/qp_table lock
142 * - lock struct, do your thing, and unlock struct
143 * - decrement ref count; if zero, wake up waiters
145 * To destroy a CQ/QP, we can do the following:
146 * - lock cq/qp_table, remove pointer, unlock cq/qp_table lock
147 * - decrement ref count
148 * - wait_event until ref count is zero
150 * It is the consumer's responsibilty to make sure that no QP
151 * operations (WQE posting or state modification) are pending when the
152 * QP is destroyed. Also, the consumer must make sure that calls to
153 * qp_modify are serialized.
155 * Possible optimizations (wait for profile data to see if/where we
156 * have locks bouncing between CPUs):
157 * - split cq/qp table lock into n separate (cache-aligned) locks,
158 * indexed (say) by the page in the table
159 * - split QP struct lock into three (one for common info, one for the
160 * send queue and one for the receive queue)
171 /* Next fields are Arbel only */
179 struct mthca_buf_list direct;
180 struct mthca_buf_list *page_list;
183 wait_queue_head_t wait;
197 int db_index; /* Arbel only */
215 enum ib_sig_type sq_policy;
220 struct mthca_buf_list direct;
221 struct mthca_buf_list *page_list;
224 wait_queue_head_t wait;
233 struct ib_ud_header ud_header;
236 dma_addr_t header_dma;
239 static inline struct mthca_fmr *to_mfmr(struct ib_fmr *ibmr)
241 return container_of(ibmr, struct mthca_fmr, ibmr);
244 static inline struct mthca_mr *to_mmr(struct ib_mr *ibmr)
246 return container_of(ibmr, struct mthca_mr, ibmr);
249 static inline struct mthca_pd *to_mpd(struct ib_pd *ibpd)
251 return container_of(ibpd, struct mthca_pd, ibpd);
254 static inline struct mthca_ah *to_mah(struct ib_ah *ibah)
256 return container_of(ibah, struct mthca_ah, ibah);
259 static inline struct mthca_cq *to_mcq(struct ib_cq *ibcq)
261 return container_of(ibcq, struct mthca_cq, ibcq);
264 static inline struct mthca_qp *to_mqp(struct ib_qp *ibqp)
266 return container_of(ibqp, struct mthca_qp, ibqp);
269 static inline struct mthca_sqp *to_msqp(struct mthca_qp *qp)
271 return container_of(qp, struct mthca_sqp, qp);
274 #endif /* MTHCA_PROVIDER_H */