alloc.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  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);
  166. static struct mlx4_db_pgdir *mlx4_alloc_db_pgdir(struct device *dma_device)
  167. {
  168. struct mlx4_db_pgdir *pgdir;
  169. pgdir = kzalloc(sizeof *pgdir, GFP_KERNEL);
  170. if (!pgdir)
  171. return NULL;
  172. bitmap_fill(pgdir->order1, MLX4_DB_PER_PAGE / 2);
  173. pgdir->bits[0] = pgdir->order0;
  174. pgdir->bits[1] = pgdir->order1;
  175. pgdir->db_page = dma_alloc_coherent(dma_device, PAGE_SIZE,
  176. &pgdir->db_dma, GFP_KERNEL);
  177. if (!pgdir->db_page) {
  178. kfree(pgdir);
  179. return NULL;
  180. }
  181. return pgdir;
  182. }
  183. static int mlx4_alloc_db_from_pgdir(struct mlx4_db_pgdir *pgdir,
  184. struct mlx4_db *db, int order)
  185. {
  186. int o;
  187. int i;
  188. for (o = order; o <= 1; ++o) {
  189. i = find_first_bit(pgdir->bits[o], MLX4_DB_PER_PAGE >> o);
  190. if (i < MLX4_DB_PER_PAGE >> o)
  191. goto found;
  192. }
  193. return -ENOMEM;
  194. found:
  195. clear_bit(i, pgdir->bits[o]);
  196. i <<= o;
  197. if (o > order)
  198. set_bit(i ^ 1, pgdir->bits[order]);
  199. db->u.pgdir = pgdir;
  200. db->index = i;
  201. db->db = pgdir->db_page + db->index;
  202. db->dma = pgdir->db_dma + db->index * 4;
  203. db->order = order;
  204. return 0;
  205. }
  206. int mlx4_db_alloc(struct mlx4_dev *dev, struct mlx4_db *db, int order)
  207. {
  208. struct mlx4_priv *priv = mlx4_priv(dev);
  209. struct mlx4_db_pgdir *pgdir;
  210. int ret = 0;
  211. mutex_lock(&priv->pgdir_mutex);
  212. list_for_each_entry(pgdir, &priv->pgdir_list, list)
  213. if (!mlx4_alloc_db_from_pgdir(pgdir, db, order))
  214. goto out;
  215. pgdir = mlx4_alloc_db_pgdir(&(dev->pdev->dev));
  216. if (!pgdir) {
  217. ret = -ENOMEM;
  218. goto out;
  219. }
  220. list_add(&pgdir->list, &priv->pgdir_list);
  221. /* This should never fail -- we just allocated an empty page: */
  222. WARN_ON(mlx4_alloc_db_from_pgdir(pgdir, db, order));
  223. out:
  224. mutex_unlock(&priv->pgdir_mutex);
  225. return ret;
  226. }
  227. EXPORT_SYMBOL_GPL(mlx4_db_alloc);
  228. void mlx4_db_free(struct mlx4_dev *dev, struct mlx4_db *db)
  229. {
  230. struct mlx4_priv *priv = mlx4_priv(dev);
  231. int o;
  232. int i;
  233. mutex_lock(&priv->pgdir_mutex);
  234. o = db->order;
  235. i = db->index;
  236. if (db->order == 0 && test_bit(i ^ 1, db->u.pgdir->order0)) {
  237. clear_bit(i ^ 1, db->u.pgdir->order0);
  238. ++o;
  239. }
  240. i >>= o;
  241. set_bit(i, db->u.pgdir->bits[o]);
  242. if (bitmap_full(db->u.pgdir->order1, MLX4_DB_PER_PAGE / 2)) {
  243. dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
  244. db->u.pgdir->db_page, db->u.pgdir->db_dma);
  245. list_del(&db->u.pgdir->list);
  246. kfree(db->u.pgdir);
  247. }
  248. mutex_unlock(&priv->pgdir_mutex);
  249. }
  250. EXPORT_SYMBOL_GPL(mlx4_db_free);
  251. int mlx4_alloc_hwq_res(struct mlx4_dev *dev, struct mlx4_hwq_resources *wqres,
  252. int size, int max_direct)
  253. {
  254. int err;
  255. err = mlx4_db_alloc(dev, &wqres->db, 1);
  256. if (err)
  257. return err;
  258. *wqres->db.db = 0;
  259. err = mlx4_buf_alloc(dev, size, max_direct, &wqres->buf);
  260. if (err)
  261. goto err_db;
  262. err = mlx4_mtt_init(dev, wqres->buf.npages, wqres->buf.page_shift,
  263. &wqres->mtt);
  264. if (err)
  265. goto err_buf;
  266. err = mlx4_buf_write_mtt(dev, &wqres->mtt, &wqres->buf);
  267. if (err)
  268. goto err_mtt;
  269. return 0;
  270. err_mtt:
  271. mlx4_mtt_cleanup(dev, &wqres->mtt);
  272. err_buf:
  273. mlx4_buf_free(dev, size, &wqres->buf);
  274. err_db:
  275. mlx4_db_free(dev, &wqres->db);
  276. return err;
  277. }
  278. EXPORT_SYMBOL_GPL(mlx4_alloc_hwq_res);
  279. void mlx4_free_hwq_res(struct mlx4_dev *dev, struct mlx4_hwq_resources *wqres,
  280. int size)
  281. {
  282. mlx4_mtt_cleanup(dev, &wqres->mtt);
  283. mlx4_buf_free(dev, size, &wqres->buf);
  284. mlx4_db_free(dev, &wqres->db);
  285. }
  286. EXPORT_SYMBOL_GPL(mlx4_free_hwq_res);