mthca_memfree.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
  3. * Copyright (c) 2005 Cisco Systems. All rights reserved.
  4. * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
  5. *
  6. * This software is available to you under a choice of one of two
  7. * licenses. You may choose to be licensed under the terms of the GNU
  8. * General Public License (GPL) Version 2, available from the file
  9. * COPYING in the main directory of this source tree, or the
  10. * OpenIB.org BSD license below:
  11. *
  12. * Redistribution and use in source and binary forms, with or
  13. * without modification, are permitted provided that the following
  14. * conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above
  17. * copyright notice, this list of conditions and the following
  18. * disclaimer.
  19. *
  20. * - Redistributions in binary form must reproduce the above
  21. * copyright notice, this list of conditions and the following
  22. * disclaimer in the documentation and/or other materials
  23. * provided with the distribution.
  24. *
  25. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  26. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  27. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  28. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  29. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  30. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  31. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  32. * SOFTWARE.
  33. *
  34. * $Id$
  35. */
  36. #ifndef MTHCA_MEMFREE_H
  37. #define MTHCA_MEMFREE_H
  38. #include <linux/list.h>
  39. #include <linux/pci.h>
  40. #include <linux/mutex.h>
  41. #define MTHCA_ICM_CHUNK_LEN \
  42. ((256 - sizeof (struct list_head) - 2 * sizeof (int)) / \
  43. (sizeof (struct scatterlist)))
  44. enum {
  45. MTHCA_ICM_PAGE_SHIFT = 12,
  46. MTHCA_ICM_PAGE_SIZE = 1 << MTHCA_ICM_PAGE_SHIFT,
  47. MTHCA_DB_REC_PER_PAGE = MTHCA_ICM_PAGE_SIZE / 8
  48. };
  49. struct mthca_icm_chunk {
  50. struct list_head list;
  51. int npages;
  52. int nsg;
  53. struct scatterlist mem[MTHCA_ICM_CHUNK_LEN];
  54. };
  55. struct mthca_icm {
  56. struct list_head chunk_list;
  57. int refcount;
  58. };
  59. struct mthca_icm_table {
  60. u64 virt;
  61. int num_icm;
  62. int num_obj;
  63. int obj_size;
  64. int lowmem;
  65. struct mutex mutex;
  66. struct mthca_icm *icm[0];
  67. };
  68. struct mthca_icm_iter {
  69. struct mthca_icm *icm;
  70. struct mthca_icm_chunk *chunk;
  71. int page_idx;
  72. };
  73. struct mthca_dev;
  74. struct mthca_icm *mthca_alloc_icm(struct mthca_dev *dev, int npages,
  75. gfp_t gfp_mask);
  76. void mthca_free_icm(struct mthca_dev *dev, struct mthca_icm *icm);
  77. struct mthca_icm_table *mthca_alloc_icm_table(struct mthca_dev *dev,
  78. u64 virt, int obj_size,
  79. int nobj, int reserved,
  80. int use_lowmem);
  81. void mthca_free_icm_table(struct mthca_dev *dev, struct mthca_icm_table *table);
  82. int mthca_table_get(struct mthca_dev *dev, struct mthca_icm_table *table, int obj);
  83. void mthca_table_put(struct mthca_dev *dev, struct mthca_icm_table *table, int obj);
  84. void *mthca_table_find(struct mthca_icm_table *table, int obj);
  85. int mthca_table_get_range(struct mthca_dev *dev, struct mthca_icm_table *table,
  86. int start, int end);
  87. void mthca_table_put_range(struct mthca_dev *dev, struct mthca_icm_table *table,
  88. int start, int end);
  89. static inline void mthca_icm_first(struct mthca_icm *icm,
  90. struct mthca_icm_iter *iter)
  91. {
  92. iter->icm = icm;
  93. iter->chunk = list_empty(&icm->chunk_list) ?
  94. NULL : list_entry(icm->chunk_list.next,
  95. struct mthca_icm_chunk, list);
  96. iter->page_idx = 0;
  97. }
  98. static inline int mthca_icm_last(struct mthca_icm_iter *iter)
  99. {
  100. return !iter->chunk;
  101. }
  102. static inline void mthca_icm_next(struct mthca_icm_iter *iter)
  103. {
  104. if (++iter->page_idx >= iter->chunk->nsg) {
  105. if (iter->chunk->list.next == &iter->icm->chunk_list) {
  106. iter->chunk = NULL;
  107. return;
  108. }
  109. iter->chunk = list_entry(iter->chunk->list.next,
  110. struct mthca_icm_chunk, list);
  111. iter->page_idx = 0;
  112. }
  113. }
  114. static inline dma_addr_t mthca_icm_addr(struct mthca_icm_iter *iter)
  115. {
  116. return sg_dma_address(&iter->chunk->mem[iter->page_idx]);
  117. }
  118. static inline unsigned long mthca_icm_size(struct mthca_icm_iter *iter)
  119. {
  120. return sg_dma_len(&iter->chunk->mem[iter->page_idx]);
  121. }
  122. struct mthca_db_page {
  123. DECLARE_BITMAP(used, MTHCA_DB_REC_PER_PAGE);
  124. __be64 *db_rec;
  125. dma_addr_t mapping;
  126. };
  127. struct mthca_db_table {
  128. int npages;
  129. int max_group1;
  130. int min_group2;
  131. struct mthca_db_page *page;
  132. struct mutex mutex;
  133. };
  134. enum mthca_db_type {
  135. MTHCA_DB_TYPE_INVALID = 0x0,
  136. MTHCA_DB_TYPE_CQ_SET_CI = 0x1,
  137. MTHCA_DB_TYPE_CQ_ARM = 0x2,
  138. MTHCA_DB_TYPE_SQ = 0x3,
  139. MTHCA_DB_TYPE_RQ = 0x4,
  140. MTHCA_DB_TYPE_SRQ = 0x5,
  141. MTHCA_DB_TYPE_GROUP_SEP = 0x7
  142. };
  143. struct mthca_user_db_table;
  144. struct mthca_uar;
  145. int mthca_map_user_db(struct mthca_dev *dev, struct mthca_uar *uar,
  146. struct mthca_user_db_table *db_tab, int index, u64 uaddr);
  147. void mthca_unmap_user_db(struct mthca_dev *dev, struct mthca_uar *uar,
  148. struct mthca_user_db_table *db_tab, int index);
  149. struct mthca_user_db_table *mthca_init_user_db_tab(struct mthca_dev *dev);
  150. void mthca_cleanup_user_db_tab(struct mthca_dev *dev, struct mthca_uar *uar,
  151. struct mthca_user_db_table *db_tab);
  152. int mthca_init_db_tab(struct mthca_dev *dev);
  153. void mthca_cleanup_db_tab(struct mthca_dev *dev);
  154. int mthca_alloc_db(struct mthca_dev *dev, enum mthca_db_type type,
  155. u32 qn, __be32 **db);
  156. void mthca_free_db(struct mthca_dev *dev, int type, int db_index);
  157. #endif /* MTHCA_MEMFREE_H */