pd.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. /*
  2. * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved.
  3. * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
  4. *
  5. * This software is available to you under a choice of one of two
  6. * licenses. You may choose to be licensed under the terms of the GNU
  7. * General Public License (GPL) Version 2, available from the file
  8. * COPYING in the main directory of this source tree, or the
  9. * OpenIB.org BSD license below:
  10. *
  11. * Redistribution and use in source and binary forms, with or
  12. * without modification, are permitted provided that the following
  13. * conditions are met:
  14. *
  15. * - Redistributions of source code must retain the above
  16. * copyright notice, this list of conditions and the following
  17. * disclaimer.
  18. *
  19. * - Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials
  22. * provided with the distribution.
  23. *
  24. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  25. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  26. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  27. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  28. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  29. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  30. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  31. * SOFTWARE.
  32. */
  33. #include <linux/errno.h>
  34. #include <linux/export.h>
  35. #include <linux/io-mapping.h>
  36. #include <asm/page.h>
  37. #include "mlx4.h"
  38. #include "icm.h"
  39. enum {
  40. MLX4_NUM_RESERVED_UARS = 8
  41. };
  42. int mlx4_pd_alloc(struct mlx4_dev *dev, u32 *pdn)
  43. {
  44. struct mlx4_priv *priv = mlx4_priv(dev);
  45. *pdn = mlx4_bitmap_alloc(&priv->pd_bitmap);
  46. if (*pdn == -1)
  47. return -ENOMEM;
  48. return 0;
  49. }
  50. EXPORT_SYMBOL_GPL(mlx4_pd_alloc);
  51. void mlx4_pd_free(struct mlx4_dev *dev, u32 pdn)
  52. {
  53. mlx4_bitmap_free(&mlx4_priv(dev)->pd_bitmap, pdn, MLX4_USE_RR);
  54. }
  55. EXPORT_SYMBOL_GPL(mlx4_pd_free);
  56. int __mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn)
  57. {
  58. struct mlx4_priv *priv = mlx4_priv(dev);
  59. *xrcdn = mlx4_bitmap_alloc(&priv->xrcd_bitmap);
  60. if (*xrcdn == -1)
  61. return -ENOMEM;
  62. return 0;
  63. }
  64. int mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn)
  65. {
  66. u64 out_param;
  67. int err;
  68. if (mlx4_is_mfunc(dev)) {
  69. err = mlx4_cmd_imm(dev, 0, &out_param,
  70. RES_XRCD, RES_OP_RESERVE,
  71. MLX4_CMD_ALLOC_RES,
  72. MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
  73. if (err)
  74. return err;
  75. *xrcdn = get_param_l(&out_param);
  76. return 0;
  77. }
  78. return __mlx4_xrcd_alloc(dev, xrcdn);
  79. }
  80. EXPORT_SYMBOL_GPL(mlx4_xrcd_alloc);
  81. void __mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn)
  82. {
  83. mlx4_bitmap_free(&mlx4_priv(dev)->xrcd_bitmap, xrcdn, MLX4_USE_RR);
  84. }
  85. void mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn)
  86. {
  87. u64 in_param = 0;
  88. int err;
  89. if (mlx4_is_mfunc(dev)) {
  90. set_param_l(&in_param, xrcdn);
  91. err = mlx4_cmd(dev, in_param, RES_XRCD,
  92. RES_OP_RESERVE, MLX4_CMD_FREE_RES,
  93. MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
  94. if (err)
  95. mlx4_warn(dev, "Failed to release xrcdn %d\n", xrcdn);
  96. } else
  97. __mlx4_xrcd_free(dev, xrcdn);
  98. }
  99. EXPORT_SYMBOL_GPL(mlx4_xrcd_free);
  100. int mlx4_init_pd_table(struct mlx4_dev *dev)
  101. {
  102. struct mlx4_priv *priv = mlx4_priv(dev);
  103. return mlx4_bitmap_init(&priv->pd_bitmap, dev->caps.num_pds,
  104. (1 << NOT_MASKED_PD_BITS) - 1,
  105. dev->caps.reserved_pds, 0);
  106. }
  107. void mlx4_cleanup_pd_table(struct mlx4_dev *dev)
  108. {
  109. mlx4_bitmap_cleanup(&mlx4_priv(dev)->pd_bitmap);
  110. }
  111. int mlx4_init_xrcd_table(struct mlx4_dev *dev)
  112. {
  113. struct mlx4_priv *priv = mlx4_priv(dev);
  114. return mlx4_bitmap_init(&priv->xrcd_bitmap, (1 << 16),
  115. (1 << 16) - 1, dev->caps.reserved_xrcds + 1, 0);
  116. }
  117. void mlx4_cleanup_xrcd_table(struct mlx4_dev *dev)
  118. {
  119. mlx4_bitmap_cleanup(&mlx4_priv(dev)->xrcd_bitmap);
  120. }
  121. int mlx4_uar_alloc(struct mlx4_dev *dev, struct mlx4_uar *uar)
  122. {
  123. int offset;
  124. uar->index = mlx4_bitmap_alloc(&mlx4_priv(dev)->uar_table.bitmap);
  125. if (uar->index == -1)
  126. return -ENOMEM;
  127. if (mlx4_is_slave(dev))
  128. offset = uar->index % ((int)pci_resource_len(dev->persist->pdev,
  129. 2) /
  130. dev->caps.uar_page_size);
  131. else
  132. offset = uar->index;
  133. uar->pfn = (pci_resource_start(dev->persist->pdev, 2) >> PAGE_SHIFT)
  134. + offset;
  135. uar->map = NULL;
  136. return 0;
  137. }
  138. EXPORT_SYMBOL_GPL(mlx4_uar_alloc);
  139. void mlx4_uar_free(struct mlx4_dev *dev, struct mlx4_uar *uar)
  140. {
  141. mlx4_bitmap_free(&mlx4_priv(dev)->uar_table.bitmap, uar->index, MLX4_USE_RR);
  142. }
  143. EXPORT_SYMBOL_GPL(mlx4_uar_free);
  144. int mlx4_bf_alloc(struct mlx4_dev *dev, struct mlx4_bf *bf, int node)
  145. {
  146. struct mlx4_priv *priv = mlx4_priv(dev);
  147. struct mlx4_uar *uar;
  148. int err = 0;
  149. int idx;
  150. if (!priv->bf_mapping)
  151. return -ENOMEM;
  152. mutex_lock(&priv->bf_mutex);
  153. if (!list_empty(&priv->bf_list))
  154. uar = list_entry(priv->bf_list.next, struct mlx4_uar, bf_list);
  155. else {
  156. if (mlx4_bitmap_avail(&priv->uar_table.bitmap) < MLX4_NUM_RESERVED_UARS) {
  157. err = -ENOMEM;
  158. goto out;
  159. }
  160. uar = kmalloc_node(sizeof(*uar), GFP_KERNEL, node);
  161. if (!uar) {
  162. uar = kmalloc(sizeof(*uar), GFP_KERNEL);
  163. if (!uar) {
  164. err = -ENOMEM;
  165. goto out;
  166. }
  167. }
  168. err = mlx4_uar_alloc(dev, uar);
  169. if (err)
  170. goto free_kmalloc;
  171. uar->map = ioremap(uar->pfn << PAGE_SHIFT, PAGE_SIZE);
  172. if (!uar->map) {
  173. err = -ENOMEM;
  174. goto free_uar;
  175. }
  176. uar->bf_map = io_mapping_map_wc(priv->bf_mapping, uar->index << PAGE_SHIFT);
  177. if (!uar->bf_map) {
  178. err = -ENOMEM;
  179. goto unamp_uar;
  180. }
  181. uar->free_bf_bmap = 0;
  182. list_add(&uar->bf_list, &priv->bf_list);
  183. }
  184. idx = ffz(uar->free_bf_bmap);
  185. uar->free_bf_bmap |= 1 << idx;
  186. bf->uar = uar;
  187. bf->offset = 0;
  188. bf->buf_size = dev->caps.bf_reg_size / 2;
  189. bf->reg = uar->bf_map + idx * dev->caps.bf_reg_size;
  190. if (uar->free_bf_bmap == (1 << dev->caps.bf_regs_per_page) - 1)
  191. list_del_init(&uar->bf_list);
  192. goto out;
  193. unamp_uar:
  194. bf->uar = NULL;
  195. iounmap(uar->map);
  196. free_uar:
  197. mlx4_uar_free(dev, uar);
  198. free_kmalloc:
  199. kfree(uar);
  200. out:
  201. mutex_unlock(&priv->bf_mutex);
  202. return err;
  203. }
  204. EXPORT_SYMBOL_GPL(mlx4_bf_alloc);
  205. void mlx4_bf_free(struct mlx4_dev *dev, struct mlx4_bf *bf)
  206. {
  207. struct mlx4_priv *priv = mlx4_priv(dev);
  208. int idx;
  209. if (!bf->uar || !bf->uar->bf_map)
  210. return;
  211. mutex_lock(&priv->bf_mutex);
  212. idx = (bf->reg - bf->uar->bf_map) / dev->caps.bf_reg_size;
  213. bf->uar->free_bf_bmap &= ~(1 << idx);
  214. if (!bf->uar->free_bf_bmap) {
  215. if (!list_empty(&bf->uar->bf_list))
  216. list_del(&bf->uar->bf_list);
  217. io_mapping_unmap(bf->uar->bf_map);
  218. iounmap(bf->uar->map);
  219. mlx4_uar_free(dev, bf->uar);
  220. kfree(bf->uar);
  221. } else if (list_empty(&bf->uar->bf_list))
  222. list_add(&bf->uar->bf_list, &priv->bf_list);
  223. mutex_unlock(&priv->bf_mutex);
  224. }
  225. EXPORT_SYMBOL_GPL(mlx4_bf_free);
  226. int mlx4_init_uar_table(struct mlx4_dev *dev)
  227. {
  228. if (dev->caps.num_uars <= 128) {
  229. mlx4_err(dev, "Only %d UAR pages (need more than 128)\n",
  230. dev->caps.num_uars);
  231. mlx4_err(dev, "Increase firmware log2_uar_bar_megabytes?\n");
  232. return -ENODEV;
  233. }
  234. return mlx4_bitmap_init(&mlx4_priv(dev)->uar_table.bitmap,
  235. dev->caps.num_uars, dev->caps.num_uars - 1,
  236. dev->caps.reserved_uars, 0);
  237. }
  238. void mlx4_cleanup_uar_table(struct mlx4_dev *dev)
  239. {
  240. mlx4_bitmap_cleanup(&mlx4_priv(dev)->uar_table.bitmap);
  241. }