pd.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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);
  54. }
  55. EXPORT_SYMBOL_GPL(mlx4_pd_free);
  56. int mlx4_init_pd_table(struct mlx4_dev *dev)
  57. {
  58. struct mlx4_priv *priv = mlx4_priv(dev);
  59. return mlx4_bitmap_init(&priv->pd_bitmap, dev->caps.num_pds,
  60. (1 << 24) - 1, dev->caps.reserved_pds, 0);
  61. }
  62. void mlx4_cleanup_pd_table(struct mlx4_dev *dev)
  63. {
  64. mlx4_bitmap_cleanup(&mlx4_priv(dev)->pd_bitmap);
  65. }
  66. int mlx4_uar_alloc(struct mlx4_dev *dev, struct mlx4_uar *uar)
  67. {
  68. uar->index = mlx4_bitmap_alloc(&mlx4_priv(dev)->uar_table.bitmap);
  69. if (uar->index == -1)
  70. return -ENOMEM;
  71. uar->pfn = (pci_resource_start(dev->pdev, 2) >> PAGE_SHIFT) + uar->index;
  72. uar->map = NULL;
  73. return 0;
  74. }
  75. EXPORT_SYMBOL_GPL(mlx4_uar_alloc);
  76. void mlx4_uar_free(struct mlx4_dev *dev, struct mlx4_uar *uar)
  77. {
  78. mlx4_bitmap_free(&mlx4_priv(dev)->uar_table.bitmap, uar->index);
  79. }
  80. EXPORT_SYMBOL_GPL(mlx4_uar_free);
  81. int mlx4_bf_alloc(struct mlx4_dev *dev, struct mlx4_bf *bf)
  82. {
  83. struct mlx4_priv *priv = mlx4_priv(dev);
  84. struct mlx4_uar *uar;
  85. int err = 0;
  86. int idx;
  87. if (!priv->bf_mapping)
  88. return -ENOMEM;
  89. mutex_lock(&priv->bf_mutex);
  90. if (!list_empty(&priv->bf_list))
  91. uar = list_entry(priv->bf_list.next, struct mlx4_uar, bf_list);
  92. else {
  93. if (mlx4_bitmap_avail(&priv->uar_table.bitmap) < MLX4_NUM_RESERVED_UARS) {
  94. err = -ENOMEM;
  95. goto out;
  96. }
  97. uar = kmalloc(sizeof *uar, GFP_KERNEL);
  98. if (!uar) {
  99. err = -ENOMEM;
  100. goto out;
  101. }
  102. err = mlx4_uar_alloc(dev, uar);
  103. if (err)
  104. goto free_kmalloc;
  105. uar->map = ioremap(uar->pfn << PAGE_SHIFT, PAGE_SIZE);
  106. if (!uar->map) {
  107. err = -ENOMEM;
  108. goto free_uar;
  109. }
  110. uar->bf_map = io_mapping_map_wc(priv->bf_mapping, uar->index << PAGE_SHIFT);
  111. if (!uar->bf_map) {
  112. err = -ENOMEM;
  113. goto unamp_uar;
  114. }
  115. uar->free_bf_bmap = 0;
  116. list_add(&uar->bf_list, &priv->bf_list);
  117. }
  118. bf->uar = uar;
  119. idx = ffz(uar->free_bf_bmap);
  120. uar->free_bf_bmap |= 1 << idx;
  121. bf->uar = uar;
  122. bf->offset = 0;
  123. bf->buf_size = dev->caps.bf_reg_size / 2;
  124. bf->reg = uar->bf_map + idx * dev->caps.bf_reg_size;
  125. if (uar->free_bf_bmap == (1 << dev->caps.bf_regs_per_page) - 1)
  126. list_del_init(&uar->bf_list);
  127. goto out;
  128. unamp_uar:
  129. bf->uar = NULL;
  130. iounmap(uar->map);
  131. free_uar:
  132. mlx4_uar_free(dev, uar);
  133. free_kmalloc:
  134. kfree(uar);
  135. out:
  136. mutex_unlock(&priv->bf_mutex);
  137. return err;
  138. }
  139. EXPORT_SYMBOL_GPL(mlx4_bf_alloc);
  140. void mlx4_bf_free(struct mlx4_dev *dev, struct mlx4_bf *bf)
  141. {
  142. struct mlx4_priv *priv = mlx4_priv(dev);
  143. int idx;
  144. if (!bf->uar || !bf->uar->bf_map)
  145. return;
  146. mutex_lock(&priv->bf_mutex);
  147. idx = (bf->reg - bf->uar->bf_map) / dev->caps.bf_reg_size;
  148. bf->uar->free_bf_bmap &= ~(1 << idx);
  149. if (!bf->uar->free_bf_bmap) {
  150. if (!list_empty(&bf->uar->bf_list))
  151. list_del(&bf->uar->bf_list);
  152. io_mapping_unmap(bf->uar->bf_map);
  153. iounmap(bf->uar->map);
  154. mlx4_uar_free(dev, bf->uar);
  155. kfree(bf->uar);
  156. } else if (list_empty(&bf->uar->bf_list))
  157. list_add(&bf->uar->bf_list, &priv->bf_list);
  158. mutex_unlock(&priv->bf_mutex);
  159. }
  160. EXPORT_SYMBOL_GPL(mlx4_bf_free);
  161. int mlx4_init_uar_table(struct mlx4_dev *dev)
  162. {
  163. if (dev->caps.num_uars <= 128) {
  164. mlx4_err(dev, "Only %d UAR pages (need more than 128)\n",
  165. dev->caps.num_uars);
  166. mlx4_err(dev, "Increase firmware log2_uar_bar_megabytes?\n");
  167. return -ENODEV;
  168. }
  169. return mlx4_bitmap_init(&mlx4_priv(dev)->uar_table.bitmap,
  170. dev->caps.num_uars, dev->caps.num_uars - 1,
  171. max(128, dev->caps.reserved_uars), 0);
  172. }
  173. void mlx4_cleanup_uar_table(struct mlx4_dev *dev)
  174. {
  175. mlx4_bitmap_cleanup(&mlx4_priv(dev)->uar_table.bitmap);
  176. }