alloc.c 4.6 KB

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