2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Cisco Systems. All rights reserved.
4 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
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:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
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.
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
37 #ifndef MTHCA_MEMFREE_H
38 #define MTHCA_MEMFREE_H
40 #include <linux/list.h>
41 #include <linux/pci.h>
43 #include <asm/semaphore.h>
45 #define MTHCA_ICM_CHUNK_LEN \
46 ((256 - sizeof (struct list_head) - 2 * sizeof (int)) / \
47 (sizeof (struct scatterlist)))
49 struct mthca_icm_chunk
{
50 struct list_head list
;
53 struct scatterlist mem
[MTHCA_ICM_CHUNK_LEN
];
57 struct list_head chunk_list
;
61 struct mthca_icm_table
{
67 struct semaphore mutex
;
68 struct mthca_icm
*icm
[0];
71 struct mthca_icm_iter
{
72 struct mthca_icm
*icm
;
73 struct mthca_icm_chunk
*chunk
;
79 struct mthca_icm
*mthca_alloc_icm(struct mthca_dev
*dev
, int npages
,
81 void mthca_free_icm(struct mthca_dev
*dev
, struct mthca_icm
*icm
);
83 struct mthca_icm_table
*mthca_alloc_icm_table(struct mthca_dev
*dev
,
84 u64 virt
, int obj_size
,
85 int nobj
, int reserved
,
87 void mthca_free_icm_table(struct mthca_dev
*dev
, struct mthca_icm_table
*table
);
88 int mthca_table_get(struct mthca_dev
*dev
, struct mthca_icm_table
*table
, int obj
);
89 void mthca_table_put(struct mthca_dev
*dev
, struct mthca_icm_table
*table
, int obj
);
90 void *mthca_table_find(struct mthca_icm_table
*table
, int obj
);
91 int mthca_table_get_range(struct mthca_dev
*dev
, struct mthca_icm_table
*table
,
93 void mthca_table_put_range(struct mthca_dev
*dev
, struct mthca_icm_table
*table
,
96 static inline void mthca_icm_first(struct mthca_icm
*icm
,
97 struct mthca_icm_iter
*iter
)
100 iter
->chunk
= list_empty(&icm
->chunk_list
) ?
101 NULL
: list_entry(icm
->chunk_list
.next
,
102 struct mthca_icm_chunk
, list
);
106 static inline int mthca_icm_last(struct mthca_icm_iter
*iter
)
111 static inline void mthca_icm_next(struct mthca_icm_iter
*iter
)
113 if (++iter
->page_idx
>= iter
->chunk
->nsg
) {
114 if (iter
->chunk
->list
.next
== &iter
->icm
->chunk_list
) {
119 iter
->chunk
= list_entry(iter
->chunk
->list
.next
,
120 struct mthca_icm_chunk
, list
);
125 static inline dma_addr_t
mthca_icm_addr(struct mthca_icm_iter
*iter
)
127 return sg_dma_address(&iter
->chunk
->mem
[iter
->page_idx
]);
130 static inline unsigned long mthca_icm_size(struct mthca_icm_iter
*iter
)
132 return sg_dma_len(&iter
->chunk
->mem
[iter
->page_idx
]);
136 MTHCA_DB_REC_PER_PAGE
= 4096 / 8
139 struct mthca_db_page
{
140 DECLARE_BITMAP(used
, MTHCA_DB_REC_PER_PAGE
);
145 struct mthca_db_table
{
149 struct mthca_db_page
*page
;
150 struct semaphore mutex
;
154 MTHCA_DB_TYPE_INVALID
= 0x0,
155 MTHCA_DB_TYPE_CQ_SET_CI
= 0x1,
156 MTHCA_DB_TYPE_CQ_ARM
= 0x2,
157 MTHCA_DB_TYPE_SQ
= 0x3,
158 MTHCA_DB_TYPE_RQ
= 0x4,
159 MTHCA_DB_TYPE_SRQ
= 0x5,
160 MTHCA_DB_TYPE_GROUP_SEP
= 0x7
163 struct mthca_user_db_table
;
166 int mthca_map_user_db(struct mthca_dev
*dev
, struct mthca_uar
*uar
,
167 struct mthca_user_db_table
*db_tab
, int index
, u64 uaddr
);
168 void mthca_unmap_user_db(struct mthca_dev
*dev
, struct mthca_uar
*uar
,
169 struct mthca_user_db_table
*db_tab
, int index
);
170 struct mthca_user_db_table
*mthca_init_user_db_tab(struct mthca_dev
*dev
);
171 void mthca_cleanup_user_db_tab(struct mthca_dev
*dev
, struct mthca_uar
*uar
,
172 struct mthca_user_db_table
*db_tab
);
174 int mthca_init_db_tab(struct mthca_dev
*dev
);
175 void mthca_cleanup_db_tab(struct mthca_dev
*dev
);
176 int mthca_alloc_db(struct mthca_dev
*dev
, enum mthca_db_type type
,
177 u32 qn
, __be32
**db
);
178 void mthca_free_db(struct mthca_dev
*dev
, int type
, int db_index
);
180 #endif /* MTHCA_MEMFREE_H */