This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / drivers / infiniband / hw / mthca / mthca_memfree.h
1 /*
2  * Copyright (c) 2004, 2005 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$
33  */
34
35 #ifndef MTHCA_MEMFREE_H
36 #define MTHCA_MEMFREE_H
37
38 #include <linux/list.h>
39 #include <linux/pci.h>
40
41 #include <asm/semaphore.h>
42
43 #define MTHCA_ICM_CHUNK_LEN \
44         ((256 - sizeof (struct list_head) - 2 * sizeof (int)) /         \
45          (sizeof (struct scatterlist)))
46
47 struct mthca_icm_chunk {
48         struct list_head   list;
49         int                npages;
50         int                nsg;
51         struct scatterlist mem[MTHCA_ICM_CHUNK_LEN];
52 };
53
54 struct mthca_icm {
55         struct list_head chunk_list;
56 };
57
58 struct mthca_icm_table {
59         u64               virt;
60         int               num_icm;
61         struct semaphore  sem;
62         struct mthca_icm *icm[0];
63 };
64
65 struct mthca_icm_iter {
66         struct mthca_icm       *icm;
67         struct mthca_icm_chunk *chunk;
68         int                     page_idx;
69 };
70
71 struct mthca_dev;
72
73 struct mthca_icm *mthca_alloc_icm(struct mthca_dev *dev, int npages,
74                                   unsigned int gfp_mask);
75 void mthca_free_icm(struct mthca_dev *dev, struct mthca_icm *icm);
76
77 struct mthca_icm_table *mthca_alloc_icm_table(struct mthca_dev *dev,
78                                               u64 virt, unsigned size,
79                                               unsigned reserved,
80                                               int use_lowmem);
81 void mthca_free_icm_table(struct mthca_dev *dev, struct mthca_icm_table *table);
82
83 static inline void mthca_icm_first(struct mthca_icm *icm,
84                                    struct mthca_icm_iter *iter)
85 {
86         iter->icm      = icm;
87         iter->chunk    = list_empty(&icm->chunk_list) ?
88                 NULL : list_entry(icm->chunk_list.next,
89                                   struct mthca_icm_chunk, list);
90         iter->page_idx = 0;
91 }
92
93 static inline int mthca_icm_last(struct mthca_icm_iter *iter)
94 {
95         return !iter->chunk;
96 }
97
98 static inline void mthca_icm_next(struct mthca_icm_iter *iter)
99 {
100         if (++iter->page_idx >= iter->chunk->nsg) {
101                 if (iter->chunk->list.next == &iter->icm->chunk_list) {
102                         iter->chunk = NULL;
103                         return;
104                 }
105
106                 iter->chunk = list_entry(iter->chunk->list.next,
107                                          struct mthca_icm_chunk, list);
108                 iter->page_idx = 0;
109         }
110 }
111
112 static inline dma_addr_t mthca_icm_addr(struct mthca_icm_iter *iter)
113 {
114         return sg_dma_address(&iter->chunk->mem[iter->page_idx]);
115 }
116
117 static inline unsigned long mthca_icm_size(struct mthca_icm_iter *iter)
118 {
119         return sg_dma_len(&iter->chunk->mem[iter->page_idx]);
120 }
121
122 #endif /* MTHCA_MEMFREE_H */