alloc.c 5.1 KB

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