ib_umem_odp.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * Copyright (c) 2014 Mellanox Technologies. 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. #ifndef IB_UMEM_ODP_H
  33. #define IB_UMEM_ODP_H
  34. #include <rdma/ib_umem.h>
  35. #include <rdma/ib_verbs.h>
  36. #include <linux/interval_tree.h>
  37. struct umem_odp_node {
  38. u64 __subtree_last;
  39. struct rb_node rb;
  40. };
  41. struct ib_umem_odp {
  42. /*
  43. * An array of the pages included in the on-demand paging umem.
  44. * Indices of pages that are currently not mapped into the device will
  45. * contain NULL.
  46. */
  47. struct page **page_list;
  48. /*
  49. * An array of the same size as page_list, with DMA addresses mapped
  50. * for pages the pages in page_list. The lower two bits designate
  51. * access permissions. See ODP_READ_ALLOWED_BIT and
  52. * ODP_WRITE_ALLOWED_BIT.
  53. */
  54. dma_addr_t *dma_list;
  55. /*
  56. * The umem_mutex protects the page_list and dma_list fields of an ODP
  57. * umem, allowing only a single thread to map/unmap pages. The mutex
  58. * also protects access to the mmu notifier counters.
  59. */
  60. struct mutex umem_mutex;
  61. void *private; /* for the HW driver to use. */
  62. /* When false, use the notifier counter in the ucontext struct. */
  63. bool mn_counters_active;
  64. int notifiers_seq;
  65. int notifiers_count;
  66. /* A linked list of umems that don't have private mmu notifier
  67. * counters yet. */
  68. struct list_head no_private_counters;
  69. struct ib_umem *umem;
  70. /* Tree tracking */
  71. struct umem_odp_node interval_tree;
  72. struct completion notifier_completion;
  73. int dying;
  74. };
  75. #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
  76. int ib_umem_odp_get(struct ib_ucontext *context, struct ib_umem *umem);
  77. void ib_umem_odp_release(struct ib_umem *umem);
  78. /*
  79. * The lower 2 bits of the DMA address signal the R/W permissions for
  80. * the entry. To upgrade the permissions, provide the appropriate
  81. * bitmask to the map_dma_pages function.
  82. *
  83. * Be aware that upgrading a mapped address might result in change of
  84. * the DMA address for the page.
  85. */
  86. #define ODP_READ_ALLOWED_BIT (1<<0ULL)
  87. #define ODP_WRITE_ALLOWED_BIT (1<<1ULL)
  88. #define ODP_DMA_ADDR_MASK (~(ODP_READ_ALLOWED_BIT | ODP_WRITE_ALLOWED_BIT))
  89. int ib_umem_odp_map_dma_pages(struct ib_umem *umem, u64 start_offset, u64 bcnt,
  90. u64 access_mask, unsigned long current_seq);
  91. void ib_umem_odp_unmap_dma_pages(struct ib_umem *umem, u64 start_offset,
  92. u64 bound);
  93. void rbt_ib_umem_insert(struct umem_odp_node *node, struct rb_root *root);
  94. void rbt_ib_umem_remove(struct umem_odp_node *node, struct rb_root *root);
  95. typedef int (*umem_call_back)(struct ib_umem *item, u64 start, u64 end,
  96. void *cookie);
  97. /*
  98. * Call the callback on each ib_umem in the range. Returns the logical or of
  99. * the return values of the functions called.
  100. */
  101. int rbt_ib_umem_for_each_in_range(struct rb_root *root, u64 start, u64 end,
  102. umem_call_back cb, void *cookie);
  103. struct umem_odp_node *rbt_ib_umem_iter_first(struct rb_root *root,
  104. u64 start, u64 last);
  105. struct umem_odp_node *rbt_ib_umem_iter_next(struct umem_odp_node *node,
  106. u64 start, u64 last);
  107. static inline int ib_umem_mmu_notifier_retry(struct ib_umem *item,
  108. unsigned long mmu_seq)
  109. {
  110. /*
  111. * This code is strongly based on the KVM code from
  112. * mmu_notifier_retry. Should be called with
  113. * the relevant locks taken (item->odp_data->umem_mutex
  114. * and the ucontext umem_mutex semaphore locked for read).
  115. */
  116. /* Do not allow page faults while the new ib_umem hasn't seen a state
  117. * with zero notifiers yet, and doesn't have its own valid set of
  118. * private counters. */
  119. if (!item->odp_data->mn_counters_active)
  120. return 1;
  121. if (unlikely(item->odp_data->notifiers_count))
  122. return 1;
  123. if (item->odp_data->notifiers_seq != mmu_seq)
  124. return 1;
  125. return 0;
  126. }
  127. #else /* CONFIG_INFINIBAND_ON_DEMAND_PAGING */
  128. static inline int ib_umem_odp_get(struct ib_ucontext *context,
  129. struct ib_umem *umem)
  130. {
  131. return -EINVAL;
  132. }
  133. static inline void ib_umem_odp_release(struct ib_umem *umem) {}
  134. #endif /* CONFIG_INFINIBAND_ON_DEMAND_PAGING */
  135. #endif /* IB_UMEM_ODP_H */