alloc.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. * Copyright (c) 2006, 2007 Cisco Systems, Inc. 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. #include <linux/errno.h>
  33. #include <linux/slab.h>
  34. #include <linux/bitmap.h>
  35. #include <linux/dma-mapping.h>
  36. #include "mlx4.h"
  37. u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap)
  38. {
  39. u32 obj;
  40. spin_lock(&bitmap->lock);
  41. obj = find_next_zero_bit(bitmap->table, bitmap->max, bitmap->last);
  42. if (obj >= bitmap->max) {
  43. bitmap->top = (bitmap->top + bitmap->max) & bitmap->mask;
  44. obj = find_first_zero_bit(bitmap->table, bitmap->max);
  45. }
  46. if (obj < bitmap->max) {
  47. set_bit(obj, bitmap->table);
  48. bitmap->last = (obj + 1) & (bitmap->max - 1);
  49. obj |= bitmap->top;
  50. } else
  51. obj = -1;
  52. spin_unlock(&bitmap->lock);
  53. return obj;
  54. }
  55. void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj)
  56. {
  57. obj &= bitmap->max - 1;
  58. spin_lock(&bitmap->lock);
  59. clear_bit(obj, bitmap->table);
  60. bitmap->last = min(bitmap->last, obj);
  61. bitmap->top = (bitmap->top + bitmap->max) & bitmap->mask;
  62. spin_unlock(&bitmap->lock);
  63. }
  64. int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask, u32 reserved)
  65. {
  66. int i;
  67. /* num must be a power of 2 */
  68. if (num != roundup_pow_of_two(num))
  69. return -EINVAL;
  70. bitmap->last = 0;
  71. bitmap->top = 0;
  72. bitmap->max = num;
  73. bitmap->mask = mask;
  74. spin_lock_init(&bitmap->lock);
  75. bitmap->table = kzalloc(BITS_TO_LONGS(num) * sizeof (long), GFP_KERNEL);
  76. if (!bitmap->table)
  77. return -ENOMEM;
  78. for (i = 0; i < reserved; ++i)
  79. set_bit(i, bitmap->table);
  80. return 0;
  81. }
  82. void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap)
  83. {
  84. kfree(bitmap->table);
  85. }
  86. /*
  87. * Handling for queue buffers -- we allocate a bunch of memory and
  88. * register it in a memory region at HCA virtual address 0. If the
  89. * requested size is > max_direct, we split the allocation into
  90. * multiple pages, so we don't require too much contiguous memory.
  91. */
  92. int mlx4_buf_alloc(struct mlx4_dev *dev, int size, int max_direct,
  93. struct mlx4_buf *buf)
  94. {
  95. dma_addr_t t;
  96. if (size <= max_direct) {
  97. buf->nbufs = 1;
  98. buf->npages = 1;
  99. buf->page_shift = get_order(size) + PAGE_SHIFT;
  100. buf->u.direct.buf = dma_alloc_coherent(&dev->pdev->dev,
  101. size, &t, GFP_KERNEL);
  102. if (!buf->u.direct.buf)
  103. return -ENOMEM;
  104. buf->u.direct.map = t;
  105. while (t & ((1 << buf->page_shift) - 1)) {
  106. --buf->page_shift;
  107. buf->npages *= 2;
  108. }
  109. memset(buf->u.direct.buf, 0, size);
  110. } else {
  111. int i;
  112. buf->nbufs = (size + PAGE_SIZE - 1) / PAGE_SIZE;
  113. buf->npages = buf->nbufs;
  114. buf->page_shift = PAGE_SHIFT;
  115. buf->u.page_list = kzalloc(buf->nbufs * sizeof *buf->u.page_list,
  116. GFP_KERNEL);
  117. if (!buf->u.page_list)
  118. return -ENOMEM;
  119. for (i = 0; i < buf->nbufs; ++i) {
  120. buf->u.page_list[i].buf =
  121. dma_alloc_coherent(&dev->pdev->dev, PAGE_SIZE,
  122. &t, GFP_KERNEL);
  123. if (!buf->u.page_list[i].buf)
  124. goto err_free;
  125. buf->u.page_list[i].map = t;
  126. memset(buf->u.page_list[i].buf, 0, PAGE_SIZE);
  127. }
  128. }
  129. return 0;
  130. err_free:
  131. mlx4_buf_free(dev, size, buf);
  132. return -ENOMEM;
  133. }
  134. EXPORT_SYMBOL_GPL(mlx4_buf_alloc);
  135. void mlx4_buf_free(struct mlx4_dev *dev, int size, struct mlx4_buf *buf)
  136. {
  137. int i;
  138. if (buf->nbufs == 1)
  139. dma_free_coherent(&dev->pdev->dev, size, buf->u.direct.buf,
  140. buf->u.direct.map);
  141. else {
  142. for (i = 0; i < buf->nbufs; ++i)
  143. dma_free_coherent(&dev->pdev->dev, PAGE_SIZE,
  144. buf->u.page_list[i].buf,
  145. buf->u.page_list[i].map);
  146. kfree(buf->u.page_list);
  147. }
  148. }
  149. EXPORT_SYMBOL_GPL(mlx4_buf_free);