qib_mmap.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * Copyright (c) 2006, 2007, 2008, 2009 QLogic Corporation. 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/module.h>
  33. #include <linux/slab.h>
  34. #include <linux/vmalloc.h>
  35. #include <linux/mm.h>
  36. #include <linux/errno.h>
  37. #include <asm/pgtable.h>
  38. #include "qib_verbs.h"
  39. /**
  40. * qib_release_mmap_info - free mmap info structure
  41. * @ref: a pointer to the kref within struct qib_mmap_info
  42. */
  43. void qib_release_mmap_info(struct kref *ref)
  44. {
  45. struct qib_mmap_info *ip =
  46. container_of(ref, struct qib_mmap_info, ref);
  47. struct qib_ibdev *dev = to_idev(ip->context->device);
  48. spin_lock_irq(&dev->pending_lock);
  49. list_del(&ip->pending_mmaps);
  50. spin_unlock_irq(&dev->pending_lock);
  51. vfree(ip->obj);
  52. kfree(ip);
  53. }
  54. /*
  55. * open and close keep track of how many times the CQ is mapped,
  56. * to avoid releasing it.
  57. */
  58. static void qib_vma_open(struct vm_area_struct *vma)
  59. {
  60. struct qib_mmap_info *ip = vma->vm_private_data;
  61. kref_get(&ip->ref);
  62. }
  63. static void qib_vma_close(struct vm_area_struct *vma)
  64. {
  65. struct qib_mmap_info *ip = vma->vm_private_data;
  66. kref_put(&ip->ref, qib_release_mmap_info);
  67. }
  68. static const struct vm_operations_struct qib_vm_ops = {
  69. .open = qib_vma_open,
  70. .close = qib_vma_close,
  71. };
  72. /**
  73. * qib_mmap - create a new mmap region
  74. * @context: the IB user context of the process making the mmap() call
  75. * @vma: the VMA to be initialized
  76. * Return zero if the mmap is OK. Otherwise, return an errno.
  77. */
  78. int qib_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
  79. {
  80. struct qib_ibdev *dev = to_idev(context->device);
  81. unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
  82. unsigned long size = vma->vm_end - vma->vm_start;
  83. struct qib_mmap_info *ip, *pp;
  84. int ret = -EINVAL;
  85. /*
  86. * Search the device's list of objects waiting for a mmap call.
  87. * Normally, this list is very short since a call to create a
  88. * CQ, QP, or SRQ is soon followed by a call to mmap().
  89. */
  90. spin_lock_irq(&dev->pending_lock);
  91. list_for_each_entry_safe(ip, pp, &dev->pending_mmaps,
  92. pending_mmaps) {
  93. /* Only the creator is allowed to mmap the object */
  94. if (context != ip->context || (__u64) offset != ip->offset)
  95. continue;
  96. /* Don't allow a mmap larger than the object. */
  97. if (size > ip->size)
  98. break;
  99. list_del_init(&ip->pending_mmaps);
  100. spin_unlock_irq(&dev->pending_lock);
  101. ret = remap_vmalloc_range(vma, ip->obj, 0);
  102. if (ret)
  103. goto done;
  104. vma->vm_ops = &qib_vm_ops;
  105. vma->vm_private_data = ip;
  106. qib_vma_open(vma);
  107. goto done;
  108. }
  109. spin_unlock_irq(&dev->pending_lock);
  110. done:
  111. return ret;
  112. }
  113. /*
  114. * Allocate information for qib_mmap
  115. */
  116. struct qib_mmap_info *qib_create_mmap_info(struct qib_ibdev *dev,
  117. u32 size,
  118. struct ib_ucontext *context,
  119. void *obj) {
  120. struct qib_mmap_info *ip;
  121. ip = kmalloc(sizeof(*ip), GFP_KERNEL);
  122. if (!ip)
  123. goto bail;
  124. size = PAGE_ALIGN(size);
  125. spin_lock_irq(&dev->mmap_offset_lock);
  126. if (dev->mmap_offset == 0)
  127. dev->mmap_offset = PAGE_SIZE;
  128. ip->offset = dev->mmap_offset;
  129. dev->mmap_offset += size;
  130. spin_unlock_irq(&dev->mmap_offset_lock);
  131. INIT_LIST_HEAD(&ip->pending_mmaps);
  132. ip->size = size;
  133. ip->context = context;
  134. ip->obj = obj;
  135. kref_init(&ip->ref);
  136. bail:
  137. return ip;
  138. }
  139. void qib_update_mmap_info(struct qib_ibdev *dev, struct qib_mmap_info *ip,
  140. u32 size, void *obj)
  141. {
  142. size = PAGE_ALIGN(size);
  143. spin_lock_irq(&dev->mmap_offset_lock);
  144. if (dev->mmap_offset == 0)
  145. dev->mmap_offset = PAGE_SIZE;
  146. ip->offset = dev->mmap_offset;
  147. dev->mmap_offset += size;
  148. spin_unlock_irq(&dev->mmap_offset_lock);
  149. ip->size = size;
  150. ip->obj = obj;
  151. }