ttm_bo_vm.c 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. /**************************************************************************
  2. *
  3. * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA
  4. * All Rights Reserved.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sub license, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * The above copyright notice and this permission notice (including the
  15. * next paragraph) shall be included in all copies or substantial portions
  16. * of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
  21. * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
  22. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  23. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  24. * USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. *
  26. **************************************************************************/
  27. /*
  28. * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
  29. */
  30. #define pr_fmt(fmt) "[TTM] " fmt
  31. #include <ttm/ttm_module.h>
  32. #include <ttm/ttm_bo_driver.h>
  33. #include <ttm/ttm_placement.h>
  34. #include <drm/drm_vma_manager.h>
  35. #include <linux/mm.h>
  36. #include <linux/rbtree.h>
  37. #include <linux/module.h>
  38. #include <linux/uaccess.h>
  39. #define TTM_BO_VM_NUM_PREFAULT 16
  40. static int ttm_bo_vm_fault_idle(struct ttm_buffer_object *bo,
  41. struct vm_area_struct *vma,
  42. struct vm_fault *vmf)
  43. {
  44. struct ttm_bo_device *bdev = bo->bdev;
  45. int ret = 0;
  46. spin_lock(&bdev->fence_lock);
  47. if (likely(!test_bit(TTM_BO_PRIV_FLAG_MOVING, &bo->priv_flags)))
  48. goto out_unlock;
  49. /*
  50. * Quick non-stalling check for idle.
  51. */
  52. ret = ttm_bo_wait(bo, false, false, true);
  53. if (likely(ret == 0))
  54. goto out_unlock;
  55. /*
  56. * If possible, avoid waiting for GPU with mmap_sem
  57. * held.
  58. */
  59. if (vmf->flags & FAULT_FLAG_ALLOW_RETRY) {
  60. ret = VM_FAULT_RETRY;
  61. if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT)
  62. goto out_unlock;
  63. up_read(&vma->vm_mm->mmap_sem);
  64. (void) ttm_bo_wait(bo, false, true, false);
  65. goto out_unlock;
  66. }
  67. /*
  68. * Ordinary wait.
  69. */
  70. ret = ttm_bo_wait(bo, false, true, false);
  71. if (unlikely(ret != 0))
  72. ret = (ret != -ERESTARTSYS) ? VM_FAULT_SIGBUS :
  73. VM_FAULT_NOPAGE;
  74. out_unlock:
  75. spin_unlock(&bdev->fence_lock);
  76. return ret;
  77. }
  78. static int ttm_bo_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
  79. {
  80. struct ttm_buffer_object *bo = (struct ttm_buffer_object *)
  81. vma->vm_private_data;
  82. struct ttm_bo_device *bdev = bo->bdev;
  83. unsigned long page_offset;
  84. unsigned long page_last;
  85. unsigned long pfn;
  86. struct ttm_tt *ttm = NULL;
  87. struct page *page;
  88. int ret;
  89. int i;
  90. unsigned long address = (unsigned long)vmf->virtual_address;
  91. int retval = VM_FAULT_NOPAGE;
  92. struct ttm_mem_type_manager *man =
  93. &bdev->man[bo->mem.mem_type];
  94. struct vm_area_struct cvma;
  95. /*
  96. * Work around locking order reversal in fault / nopfn
  97. * between mmap_sem and bo_reserve: Perform a trylock operation
  98. * for reserve, and if it fails, retry the fault after waiting
  99. * for the buffer to become unreserved.
  100. */
  101. ret = ttm_bo_reserve(bo, true, true, false, NULL);
  102. if (unlikely(ret != 0)) {
  103. if (ret != -EBUSY)
  104. return VM_FAULT_NOPAGE;
  105. if (vmf->flags & FAULT_FLAG_ALLOW_RETRY) {
  106. if (!(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) {
  107. up_read(&vma->vm_mm->mmap_sem);
  108. (void) ttm_bo_wait_unreserved(bo);
  109. }
  110. return VM_FAULT_RETRY;
  111. }
  112. /*
  113. * If we'd want to change locking order to
  114. * mmap_sem -> bo::reserve, we'd use a blocking reserve here
  115. * instead of retrying the fault...
  116. */
  117. return VM_FAULT_NOPAGE;
  118. }
  119. /*
  120. * Refuse to fault imported pages. This should be handled
  121. * (if at all) by redirecting mmap to the exporter.
  122. */
  123. if (bo->ttm && (bo->ttm->page_flags & TTM_PAGE_FLAG_SG)) {
  124. retval = VM_FAULT_SIGBUS;
  125. goto out_unlock;
  126. }
  127. if (bdev->driver->fault_reserve_notify) {
  128. ret = bdev->driver->fault_reserve_notify(bo);
  129. switch (ret) {
  130. case 0:
  131. break;
  132. case -EBUSY:
  133. case -ERESTARTSYS:
  134. retval = VM_FAULT_NOPAGE;
  135. goto out_unlock;
  136. default:
  137. retval = VM_FAULT_SIGBUS;
  138. goto out_unlock;
  139. }
  140. }
  141. /*
  142. * Wait for buffer data in transit, due to a pipelined
  143. * move.
  144. */
  145. ret = ttm_bo_vm_fault_idle(bo, vma, vmf);
  146. if (unlikely(ret != 0)) {
  147. retval = ret;
  148. goto out_unlock;
  149. }
  150. ret = ttm_mem_io_lock(man, true);
  151. if (unlikely(ret != 0)) {
  152. retval = VM_FAULT_NOPAGE;
  153. goto out_unlock;
  154. }
  155. ret = ttm_mem_io_reserve_vm(bo);
  156. if (unlikely(ret != 0)) {
  157. retval = VM_FAULT_SIGBUS;
  158. goto out_io_unlock;
  159. }
  160. page_offset = ((address - vma->vm_start) >> PAGE_SHIFT) +
  161. vma->vm_pgoff - drm_vma_node_start(&bo->vma_node);
  162. page_last = vma_pages(vma) + vma->vm_pgoff -
  163. drm_vma_node_start(&bo->vma_node);
  164. if (unlikely(page_offset >= bo->num_pages)) {
  165. retval = VM_FAULT_SIGBUS;
  166. goto out_io_unlock;
  167. }
  168. /*
  169. * Make a local vma copy to modify the page_prot member
  170. * and vm_flags if necessary. The vma parameter is protected
  171. * by mmap_sem in write mode.
  172. */
  173. cvma = *vma;
  174. cvma.vm_page_prot = vm_get_page_prot(cvma.vm_flags);
  175. if (bo->mem.bus.is_iomem) {
  176. cvma.vm_page_prot = ttm_io_prot(bo->mem.placement,
  177. cvma.vm_page_prot);
  178. } else {
  179. ttm = bo->ttm;
  180. if (!(bo->mem.placement & TTM_PL_FLAG_CACHED))
  181. cvma.vm_page_prot = ttm_io_prot(bo->mem.placement,
  182. cvma.vm_page_prot);
  183. /* Allocate all page at once, most common usage */
  184. if (ttm->bdev->driver->ttm_tt_populate(ttm)) {
  185. retval = VM_FAULT_OOM;
  186. goto out_io_unlock;
  187. }
  188. }
  189. /*
  190. * Speculatively prefault a number of pages. Only error on
  191. * first page.
  192. */
  193. for (i = 0; i < TTM_BO_VM_NUM_PREFAULT; ++i) {
  194. if (bo->mem.bus.is_iomem)
  195. pfn = ((bo->mem.bus.base + bo->mem.bus.offset) >> PAGE_SHIFT) + page_offset;
  196. else {
  197. page = ttm->pages[page_offset];
  198. if (unlikely(!page && i == 0)) {
  199. retval = VM_FAULT_OOM;
  200. goto out_io_unlock;
  201. } else if (unlikely(!page)) {
  202. break;
  203. }
  204. page->mapping = vma->vm_file->f_mapping;
  205. page->index = drm_vma_node_start(&bo->vma_node) +
  206. page_offset;
  207. pfn = page_to_pfn(page);
  208. }
  209. if (vma->vm_flags & VM_MIXEDMAP)
  210. ret = vm_insert_mixed(&cvma, address, pfn);
  211. else
  212. ret = vm_insert_pfn(&cvma, address, pfn);
  213. /*
  214. * Somebody beat us to this PTE or prefaulting to
  215. * an already populated PTE, or prefaulting error.
  216. */
  217. if (unlikely((ret == -EBUSY) || (ret != 0 && i > 0)))
  218. break;
  219. else if (unlikely(ret != 0)) {
  220. retval =
  221. (ret == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS;
  222. goto out_io_unlock;
  223. }
  224. address += PAGE_SIZE;
  225. if (unlikely(++page_offset >= page_last))
  226. break;
  227. }
  228. out_io_unlock:
  229. ttm_mem_io_unlock(man);
  230. out_unlock:
  231. ttm_bo_unreserve(bo);
  232. return retval;
  233. }
  234. static void ttm_bo_vm_open(struct vm_area_struct *vma)
  235. {
  236. struct ttm_buffer_object *bo =
  237. (struct ttm_buffer_object *)vma->vm_private_data;
  238. WARN_ON(bo->bdev->dev_mapping != vma->vm_file->f_mapping);
  239. (void)ttm_bo_reference(bo);
  240. }
  241. static void ttm_bo_vm_close(struct vm_area_struct *vma)
  242. {
  243. struct ttm_buffer_object *bo = (struct ttm_buffer_object *)vma->vm_private_data;
  244. ttm_bo_unref(&bo);
  245. vma->vm_private_data = NULL;
  246. }
  247. static const struct vm_operations_struct ttm_bo_vm_ops = {
  248. .fault = ttm_bo_vm_fault,
  249. .open = ttm_bo_vm_open,
  250. .close = ttm_bo_vm_close
  251. };
  252. static struct ttm_buffer_object *ttm_bo_vm_lookup(struct ttm_bo_device *bdev,
  253. unsigned long offset,
  254. unsigned long pages)
  255. {
  256. struct drm_vma_offset_node *node;
  257. struct ttm_buffer_object *bo = NULL;
  258. drm_vma_offset_lock_lookup(&bdev->vma_manager);
  259. node = drm_vma_offset_lookup_locked(&bdev->vma_manager, offset, pages);
  260. if (likely(node)) {
  261. bo = container_of(node, struct ttm_buffer_object, vma_node);
  262. if (!kref_get_unless_zero(&bo->kref))
  263. bo = NULL;
  264. }
  265. drm_vma_offset_unlock_lookup(&bdev->vma_manager);
  266. if (!bo)
  267. pr_err("Could not find buffer object to map\n");
  268. return bo;
  269. }
  270. int ttm_bo_mmap(struct file *filp, struct vm_area_struct *vma,
  271. struct ttm_bo_device *bdev)
  272. {
  273. struct ttm_bo_driver *driver;
  274. struct ttm_buffer_object *bo;
  275. int ret;
  276. bo = ttm_bo_vm_lookup(bdev, vma->vm_pgoff, vma_pages(vma));
  277. if (unlikely(!bo))
  278. return -EINVAL;
  279. driver = bo->bdev->driver;
  280. if (unlikely(!driver->verify_access)) {
  281. ret = -EPERM;
  282. goto out_unref;
  283. }
  284. ret = driver->verify_access(bo, filp);
  285. if (unlikely(ret != 0))
  286. goto out_unref;
  287. vma->vm_ops = &ttm_bo_vm_ops;
  288. /*
  289. * Note: We're transferring the bo reference to
  290. * vma->vm_private_data here.
  291. */
  292. vma->vm_private_data = bo;
  293. /*
  294. * We'd like to use VM_PFNMAP on shared mappings, where
  295. * (vma->vm_flags & VM_SHARED) != 0, for performance reasons,
  296. * but for some reason VM_PFNMAP + x86 PAT + write-combine is very
  297. * bad for performance. Until that has been sorted out, use
  298. * VM_MIXEDMAP on all mappings. See freedesktop.org bug #75719
  299. */
  300. vma->vm_flags |= VM_MIXEDMAP;
  301. vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
  302. return 0;
  303. out_unref:
  304. ttm_bo_unref(&bo);
  305. return ret;
  306. }
  307. EXPORT_SYMBOL(ttm_bo_mmap);
  308. int ttm_fbdev_mmap(struct vm_area_struct *vma, struct ttm_buffer_object *bo)
  309. {
  310. if (vma->vm_pgoff != 0)
  311. return -EACCES;
  312. vma->vm_ops = &ttm_bo_vm_ops;
  313. vma->vm_private_data = ttm_bo_reference(bo);
  314. vma->vm_flags |= VM_MIXEDMAP;
  315. vma->vm_flags |= VM_IO | VM_DONTEXPAND;
  316. return 0;
  317. }
  318. EXPORT_SYMBOL(ttm_fbdev_mmap);