[PATCH] IB/mthca: release mutex on doorbell alloc error path
[linux-2.6/linux-mips.git] / drivers / infiniband / hw / mthca / mthca_memfree.c
blob46981d48c23253cc26e062c860444fb683185978
1 /*
2 * Copyright (c) 2004, 2005 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
12 * conditions are met:
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
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
30 * SOFTWARE.
32 * $Id$
35 #include "mthca_memfree.h"
36 #include "mthca_dev.h"
37 #include "mthca_cmd.h"
40 * We allocate in as big chunks as we can, up to a maximum of 256 KB
41 * per chunk.
43 enum {
44 MTHCA_ICM_ALLOC_SIZE = 1 << 18,
45 MTHCA_TABLE_CHUNK_SIZE = 1 << 18
48 void mthca_free_icm(struct mthca_dev *dev, struct mthca_icm *icm)
50 struct mthca_icm_chunk *chunk, *tmp;
51 int i;
53 if (!icm)
54 return;
56 list_for_each_entry_safe(chunk, tmp, &icm->chunk_list, list) {
57 if (chunk->nsg > 0)
58 pci_unmap_sg(dev->pdev, chunk->mem, chunk->npages,
59 PCI_DMA_BIDIRECTIONAL);
61 for (i = 0; i < chunk->npages; ++i)
62 __free_pages(chunk->mem[i].page,
63 get_order(chunk->mem[i].length));
65 kfree(chunk);
68 kfree(icm);
71 struct mthca_icm *mthca_alloc_icm(struct mthca_dev *dev, int npages,
72 unsigned int gfp_mask)
74 struct mthca_icm *icm;
75 struct mthca_icm_chunk *chunk = NULL;
76 int cur_order;
78 icm = kmalloc(sizeof *icm, gfp_mask & ~(__GFP_HIGHMEM | __GFP_NOWARN));
79 if (!icm)
80 return icm;
82 icm->refcount = 0;
83 INIT_LIST_HEAD(&icm->chunk_list);
85 cur_order = get_order(MTHCA_ICM_ALLOC_SIZE);
87 while (npages > 0) {
88 if (!chunk) {
89 chunk = kmalloc(sizeof *chunk,
90 gfp_mask & ~(__GFP_HIGHMEM | __GFP_NOWARN));
91 if (!chunk)
92 goto fail;
94 chunk->npages = 0;
95 chunk->nsg = 0;
96 list_add_tail(&chunk->list, &icm->chunk_list);
99 while (1 << cur_order > npages)
100 --cur_order;
102 chunk->mem[chunk->npages].page = alloc_pages(gfp_mask, cur_order);
103 if (chunk->mem[chunk->npages].page) {
104 chunk->mem[chunk->npages].length = PAGE_SIZE << cur_order;
105 chunk->mem[chunk->npages].offset = 0;
107 if (++chunk->npages == MTHCA_ICM_CHUNK_LEN) {
108 chunk->nsg = pci_map_sg(dev->pdev, chunk->mem,
109 chunk->npages,
110 PCI_DMA_BIDIRECTIONAL);
112 if (chunk->nsg <= 0)
113 goto fail;
115 chunk = NULL;
118 npages -= 1 << cur_order;
119 } else {
120 --cur_order;
121 if (cur_order < 0)
122 goto fail;
126 if (chunk) {
127 chunk->nsg = pci_map_sg(dev->pdev, chunk->mem,
128 chunk->npages,
129 PCI_DMA_BIDIRECTIONAL);
131 if (chunk->nsg <= 0)
132 goto fail;
135 return icm;
137 fail:
138 mthca_free_icm(dev, icm);
139 return NULL;
142 int mthca_table_get(struct mthca_dev *dev, struct mthca_icm_table *table, int obj)
144 int i = (obj & (table->num_obj - 1)) * table->obj_size / MTHCA_TABLE_CHUNK_SIZE;
145 int ret = 0;
146 u8 status;
148 down(&table->mutex);
150 if (table->icm[i]) {
151 ++table->icm[i]->refcount;
152 goto out;
155 table->icm[i] = mthca_alloc_icm(dev, MTHCA_TABLE_CHUNK_SIZE >> PAGE_SHIFT,
156 (table->lowmem ? GFP_KERNEL : GFP_HIGHUSER) |
157 __GFP_NOWARN);
158 if (!table->icm[i]) {
159 ret = -ENOMEM;
160 goto out;
163 if (mthca_MAP_ICM(dev, table->icm[i], table->virt + i * MTHCA_TABLE_CHUNK_SIZE,
164 &status) || status) {
165 mthca_free_icm(dev, table->icm[i]);
166 table->icm[i] = NULL;
167 ret = -ENOMEM;
168 goto out;
171 ++table->icm[i]->refcount;
173 out:
174 up(&table->mutex);
175 return ret;
178 void mthca_table_put(struct mthca_dev *dev, struct mthca_icm_table *table, int obj)
180 int i = (obj & (table->num_obj - 1)) * table->obj_size / MTHCA_TABLE_CHUNK_SIZE;
181 u8 status;
183 down(&table->mutex);
185 if (--table->icm[i]->refcount == 0) {
186 mthca_UNMAP_ICM(dev, table->virt + i * MTHCA_TABLE_CHUNK_SIZE,
187 MTHCA_TABLE_CHUNK_SIZE >> 12, &status);
188 mthca_free_icm(dev, table->icm[i]);
189 table->icm[i] = NULL;
192 up(&table->mutex);
195 int mthca_table_get_range(struct mthca_dev *dev, struct mthca_icm_table *table,
196 int start, int end)
198 int inc = MTHCA_TABLE_CHUNK_SIZE / table->obj_size;
199 int i, err;
201 for (i = start; i <= end; i += inc) {
202 err = mthca_table_get(dev, table, i);
203 if (err)
204 goto fail;
207 return 0;
209 fail:
210 while (i > start) {
211 i -= inc;
212 mthca_table_put(dev, table, i);
215 return err;
218 void mthca_table_put_range(struct mthca_dev *dev, struct mthca_icm_table *table,
219 int start, int end)
221 int i;
223 for (i = start; i <= end; i += MTHCA_TABLE_CHUNK_SIZE / table->obj_size)
224 mthca_table_put(dev, table, i);
227 struct mthca_icm_table *mthca_alloc_icm_table(struct mthca_dev *dev,
228 u64 virt, int obj_size,
229 int nobj, int reserved,
230 int use_lowmem)
232 struct mthca_icm_table *table;
233 int num_icm;
234 int i;
235 u8 status;
237 num_icm = obj_size * nobj / MTHCA_TABLE_CHUNK_SIZE;
239 table = kmalloc(sizeof *table + num_icm * sizeof *table->icm, GFP_KERNEL);
240 if (!table)
241 return NULL;
243 table->virt = virt;
244 table->num_icm = num_icm;
245 table->num_obj = nobj;
246 table->obj_size = obj_size;
247 table->lowmem = use_lowmem;
248 init_MUTEX(&table->mutex);
250 for (i = 0; i < num_icm; ++i)
251 table->icm[i] = NULL;
253 for (i = 0; i * MTHCA_TABLE_CHUNK_SIZE < reserved * obj_size; ++i) {
254 table->icm[i] = mthca_alloc_icm(dev, MTHCA_TABLE_CHUNK_SIZE >> PAGE_SHIFT,
255 (use_lowmem ? GFP_KERNEL : GFP_HIGHUSER) |
256 __GFP_NOWARN);
257 if (!table->icm[i])
258 goto err;
259 if (mthca_MAP_ICM(dev, table->icm[i], virt + i * MTHCA_TABLE_CHUNK_SIZE,
260 &status) || status) {
261 mthca_free_icm(dev, table->icm[i]);
262 table->icm[i] = NULL;
263 goto err;
267 * Add a reference to this ICM chunk so that it never
268 * gets freed (since it contains reserved firmware objects).
270 ++table->icm[i]->refcount;
273 return table;
275 err:
276 for (i = 0; i < num_icm; ++i)
277 if (table->icm[i]) {
278 mthca_UNMAP_ICM(dev, virt + i * MTHCA_TABLE_CHUNK_SIZE,
279 MTHCA_TABLE_CHUNK_SIZE >> 12, &status);
280 mthca_free_icm(dev, table->icm[i]);
283 kfree(table);
285 return NULL;
288 void mthca_free_icm_table(struct mthca_dev *dev, struct mthca_icm_table *table)
290 int i;
291 u8 status;
293 for (i = 0; i < table->num_icm; ++i)
294 if (table->icm[i]) {
295 mthca_UNMAP_ICM(dev, table->virt + i * MTHCA_TABLE_CHUNK_SIZE,
296 MTHCA_TABLE_CHUNK_SIZE >> 12, &status);
297 mthca_free_icm(dev, table->icm[i]);
300 kfree(table);
303 static u64 mthca_uarc_virt(struct mthca_dev *dev, int page)
305 return dev->uar_table.uarc_base +
306 dev->driver_uar.index * dev->uar_table.uarc_size +
307 page * 4096;
310 int mthca_alloc_db(struct mthca_dev *dev, int type, u32 qn, u32 **db)
312 int group;
313 int start, end, dir;
314 int i, j;
315 struct mthca_db_page *page;
316 int ret = 0;
317 u8 status;
319 down(&dev->db_tab->mutex);
321 switch (type) {
322 case MTHCA_DB_TYPE_CQ_ARM:
323 case MTHCA_DB_TYPE_SQ:
324 group = 0;
325 start = 0;
326 end = dev->db_tab->max_group1;
327 dir = 1;
328 break;
330 case MTHCA_DB_TYPE_CQ_SET_CI:
331 case MTHCA_DB_TYPE_RQ:
332 case MTHCA_DB_TYPE_SRQ:
333 group = 1;
334 start = dev->db_tab->npages - 1;
335 end = dev->db_tab->min_group2;
336 dir = -1;
337 break;
339 default:
340 ret = -EINVAL;
341 goto out;
344 for (i = start; i != end; i += dir)
345 if (dev->db_tab->page[i].db_rec &&
346 !bitmap_full(dev->db_tab->page[i].used,
347 MTHCA_DB_REC_PER_PAGE)) {
348 page = dev->db_tab->page + i;
349 goto found;
352 if (dev->db_tab->max_group1 >= dev->db_tab->min_group2 - 1) {
353 ret = -ENOMEM;
354 goto out;
357 page = dev->db_tab->page + end;
358 page->db_rec = dma_alloc_coherent(&dev->pdev->dev, 4096,
359 &page->mapping, GFP_KERNEL);
360 if (!page->db_rec) {
361 ret = -ENOMEM;
362 goto out;
364 memset(page->db_rec, 0, 4096);
366 ret = mthca_MAP_ICM_page(dev, page->mapping, mthca_uarc_virt(dev, i), &status);
367 if (!ret && status)
368 ret = -EINVAL;
369 if (ret) {
370 dma_free_coherent(&dev->pdev->dev, 4096,
371 page->db_rec, page->mapping);
372 goto out;
375 bitmap_zero(page->used, MTHCA_DB_REC_PER_PAGE);
376 if (group == 0)
377 ++dev->db_tab->max_group1;
378 else
379 --dev->db_tab->min_group2;
381 found:
382 j = find_first_zero_bit(page->used, MTHCA_DB_REC_PER_PAGE);
383 set_bit(j, page->used);
385 if (group == 1)
386 j = MTHCA_DB_REC_PER_PAGE - 1 - j;
388 ret = i * MTHCA_DB_REC_PER_PAGE + j;
390 page->db_rec[j] = cpu_to_be64((qn << 8) | (type << 5));
392 *db = (u32 *) &page->db_rec[j];
394 out:
395 up(&dev->db_tab->mutex);
397 return ret;
400 void mthca_free_db(struct mthca_dev *dev, int type, int db_index)
402 int i, j;
403 struct mthca_db_page *page;
404 u8 status;
406 i = db_index / MTHCA_DB_REC_PER_PAGE;
407 j = db_index % MTHCA_DB_REC_PER_PAGE;
409 page = dev->db_tab->page + i;
411 down(&dev->db_tab->mutex);
413 page->db_rec[j] = 0;
414 if (i >= dev->db_tab->min_group2)
415 j = MTHCA_DB_REC_PER_PAGE - 1 - j;
416 clear_bit(j, page->used);
418 if (bitmap_empty(page->used, MTHCA_DB_REC_PER_PAGE) &&
419 i >= dev->db_tab->max_group1 - 1) {
420 mthca_UNMAP_ICM(dev, mthca_uarc_virt(dev, i), 1, &status);
422 dma_free_coherent(&dev->pdev->dev, 4096,
423 page->db_rec, page->mapping);
424 page->db_rec = NULL;
426 if (i == dev->db_tab->max_group1) {
427 --dev->db_tab->max_group1;
428 /* XXX may be able to unmap more pages now */
430 if (i == dev->db_tab->min_group2)
431 ++dev->db_tab->min_group2;
434 up(&dev->db_tab->mutex);
437 int mthca_init_db_tab(struct mthca_dev *dev)
439 int i;
441 if (dev->hca_type != ARBEL_NATIVE)
442 return 0;
444 dev->db_tab = kmalloc(sizeof *dev->db_tab, GFP_KERNEL);
445 if (!dev->db_tab)
446 return -ENOMEM;
448 init_MUTEX(&dev->db_tab->mutex);
450 dev->db_tab->npages = dev->uar_table.uarc_size / 4096;
451 dev->db_tab->max_group1 = 0;
452 dev->db_tab->min_group2 = dev->db_tab->npages - 1;
454 dev->db_tab->page = kmalloc(dev->db_tab->npages *
455 sizeof *dev->db_tab->page,
456 GFP_KERNEL);
457 if (!dev->db_tab->page) {
458 kfree(dev->db_tab);
459 return -ENOMEM;
462 for (i = 0; i < dev->db_tab->npages; ++i)
463 dev->db_tab->page[i].db_rec = NULL;
465 return 0;
468 void mthca_cleanup_db_tab(struct mthca_dev *dev)
470 int i;
471 u8 status;
473 if (dev->hca_type != ARBEL_NATIVE)
474 return;
477 * Because we don't always free our UARC pages when they
478 * become empty to make mthca_free_db() simpler we need to
479 * make a sweep through the doorbell pages and free any
480 * leftover pages now.
482 for (i = 0; i < dev->db_tab->npages; ++i) {
483 if (!dev->db_tab->page[i].db_rec)
484 continue;
486 if (!bitmap_empty(dev->db_tab->page[i].used, MTHCA_DB_REC_PER_PAGE))
487 mthca_warn(dev, "Kernel UARC page %d not empty\n", i);
489 mthca_UNMAP_ICM(dev, mthca_uarc_virt(dev, i), 1, &status);
491 dma_free_coherent(&dev->pdev->dev, 4096,
492 dev->db_tab->page[i].db_rec,
493 dev->db_tab->page[i].mapping);
496 kfree(dev->db_tab->page);
497 kfree(dev->db_tab);