xref: /openbmc/linux/drivers/gpu/drm/ttm/ttm_bo_vm.c (revision f519cd13)
1 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
2 /**************************************************************************
3  *
4  * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA
5  * All Rights Reserved.
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a
8  * copy of this software and associated documentation files (the
9  * "Software"), to deal in the Software without restriction, including
10  * without limitation the rights to use, copy, modify, merge, publish,
11  * distribute, sub license, and/or sell copies of the Software, and to
12  * permit persons to whom the Software is furnished to do so, subject to
13  * the following conditions:
14  *
15  * The above copyright notice and this permission notice (including the
16  * next paragraph) shall be included in all copies or substantial portions
17  * of the Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
22  * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
23  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
25  * USE OR OTHER DEALINGS IN THE SOFTWARE.
26  *
27  **************************************************************************/
28 /*
29  * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
30  */
31 
32 #define pr_fmt(fmt) "[TTM] " fmt
33 
34 #include <drm/ttm/ttm_module.h>
35 #include <drm/ttm/ttm_bo_driver.h>
36 #include <drm/ttm/ttm_placement.h>
37 #include <drm/drm_vma_manager.h>
38 #include <linux/mm.h>
39 #include <linux/pfn_t.h>
40 #include <linux/rbtree.h>
41 #include <linux/module.h>
42 #include <linux/uaccess.h>
43 #include <linux/mem_encrypt.h>
44 
45 static vm_fault_t ttm_bo_vm_fault_idle(struct ttm_buffer_object *bo,
46 				struct vm_fault *vmf)
47 {
48 	vm_fault_t ret = 0;
49 	int err = 0;
50 
51 	if (likely(!bo->moving))
52 		goto out_unlock;
53 
54 	/*
55 	 * Quick non-stalling check for idle.
56 	 */
57 	if (dma_fence_is_signaled(bo->moving))
58 		goto out_clear;
59 
60 	/*
61 	 * If possible, avoid waiting for GPU with mmap_sem
62 	 * held.
63 	 */
64 	if (vmf->flags & FAULT_FLAG_ALLOW_RETRY) {
65 		ret = VM_FAULT_RETRY;
66 		if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT)
67 			goto out_unlock;
68 
69 		ttm_bo_get(bo);
70 		up_read(&vmf->vma->vm_mm->mmap_sem);
71 		(void) dma_fence_wait(bo->moving, true);
72 		dma_resv_unlock(bo->base.resv);
73 		ttm_bo_put(bo);
74 		goto out_unlock;
75 	}
76 
77 	/*
78 	 * Ordinary wait.
79 	 */
80 	err = dma_fence_wait(bo->moving, true);
81 	if (unlikely(err != 0)) {
82 		ret = (err != -ERESTARTSYS) ? VM_FAULT_SIGBUS :
83 			VM_FAULT_NOPAGE;
84 		goto out_unlock;
85 	}
86 
87 out_clear:
88 	dma_fence_put(bo->moving);
89 	bo->moving = NULL;
90 
91 out_unlock:
92 	return ret;
93 }
94 
95 static unsigned long ttm_bo_io_mem_pfn(struct ttm_buffer_object *bo,
96 				       unsigned long page_offset)
97 {
98 	struct ttm_bo_device *bdev = bo->bdev;
99 
100 	if (bdev->driver->io_mem_pfn)
101 		return bdev->driver->io_mem_pfn(bo, page_offset);
102 
103 	return ((bo->mem.bus.base + bo->mem.bus.offset) >> PAGE_SHIFT)
104 		+ page_offset;
105 }
106 
107 /**
108  * ttm_bo_vm_reserve - Reserve a buffer object in a retryable vm callback
109  * @bo: The buffer object
110  * @vmf: The fault structure handed to the callback
111  *
112  * vm callbacks like fault() and *_mkwrite() allow for the mm_sem to be dropped
113  * during long waits, and after the wait the callback will be restarted. This
114  * is to allow other threads using the same virtual memory space concurrent
115  * access to map(), unmap() completely unrelated buffer objects. TTM buffer
116  * object reservations sometimes wait for GPU and should therefore be
117  * considered long waits. This function reserves the buffer object interruptibly
118  * taking this into account. Starvation is avoided by the vm system not
119  * allowing too many repeated restarts.
120  * This function is intended to be used in customized fault() and _mkwrite()
121  * handlers.
122  *
123  * Return:
124  *    0 on success and the bo was reserved.
125  *    VM_FAULT_RETRY if blocking wait.
126  *    VM_FAULT_NOPAGE if blocking wait and retrying was not allowed.
127  */
128 vm_fault_t ttm_bo_vm_reserve(struct ttm_buffer_object *bo,
129 			     struct vm_fault *vmf)
130 {
131 	/*
132 	 * Work around locking order reversal in fault / nopfn
133 	 * between mmap_sem and bo_reserve: Perform a trylock operation
134 	 * for reserve, and if it fails, retry the fault after waiting
135 	 * for the buffer to become unreserved.
136 	 */
137 	if (unlikely(!dma_resv_trylock(bo->base.resv))) {
138 		if (vmf->flags & FAULT_FLAG_ALLOW_RETRY) {
139 			if (!(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) {
140 				ttm_bo_get(bo);
141 				up_read(&vmf->vma->vm_mm->mmap_sem);
142 				if (!dma_resv_lock_interruptible(bo->base.resv,
143 								 NULL))
144 					dma_resv_unlock(bo->base.resv);
145 				ttm_bo_put(bo);
146 			}
147 
148 			return VM_FAULT_RETRY;
149 		}
150 
151 		if (dma_resv_lock_interruptible(bo->base.resv, NULL))
152 			return VM_FAULT_NOPAGE;
153 	}
154 
155 	return 0;
156 }
157 EXPORT_SYMBOL(ttm_bo_vm_reserve);
158 
159 /**
160  * ttm_bo_vm_fault_reserved - TTM fault helper
161  * @vmf: The struct vm_fault given as argument to the fault callback
162  * @prot: The page protection to be used for this memory area.
163  * @num_prefault: Maximum number of prefault pages. The caller may want to
164  * specify this based on madvice settings and the size of the GPU object
165  * backed by the memory.
166  *
167  * This function inserts one or more page table entries pointing to the
168  * memory backing the buffer object, and then returns a return code
169  * instructing the caller to retry the page access.
170  *
171  * Return:
172  *   VM_FAULT_NOPAGE on success or pending signal
173  *   VM_FAULT_SIGBUS on unspecified error
174  *   VM_FAULT_OOM on out-of-memory
175  *   VM_FAULT_RETRY if retryable wait
176  */
177 vm_fault_t ttm_bo_vm_fault_reserved(struct vm_fault *vmf,
178 				    pgprot_t prot,
179 				    pgoff_t num_prefault)
180 {
181 	struct vm_area_struct *vma = vmf->vma;
182 	struct vm_area_struct cvma = *vma;
183 	struct ttm_buffer_object *bo = vma->vm_private_data;
184 	struct ttm_bo_device *bdev = bo->bdev;
185 	unsigned long page_offset;
186 	unsigned long page_last;
187 	unsigned long pfn;
188 	struct ttm_tt *ttm = NULL;
189 	struct page *page;
190 	int err;
191 	pgoff_t i;
192 	vm_fault_t ret = VM_FAULT_NOPAGE;
193 	unsigned long address = vmf->address;
194 	struct ttm_mem_type_manager *man =
195 		&bdev->man[bo->mem.mem_type];
196 
197 	/*
198 	 * Refuse to fault imported pages. This should be handled
199 	 * (if at all) by redirecting mmap to the exporter.
200 	 */
201 	if (bo->ttm && (bo->ttm->page_flags & TTM_PAGE_FLAG_SG))
202 		return VM_FAULT_SIGBUS;
203 
204 	if (bdev->driver->fault_reserve_notify) {
205 		struct dma_fence *moving = dma_fence_get(bo->moving);
206 
207 		err = bdev->driver->fault_reserve_notify(bo);
208 		switch (err) {
209 		case 0:
210 			break;
211 		case -EBUSY:
212 		case -ERESTARTSYS:
213 			return VM_FAULT_NOPAGE;
214 		default:
215 			return VM_FAULT_SIGBUS;
216 		}
217 
218 		if (bo->moving != moving) {
219 			spin_lock(&ttm_bo_glob.lru_lock);
220 			ttm_bo_move_to_lru_tail(bo, NULL);
221 			spin_unlock(&ttm_bo_glob.lru_lock);
222 		}
223 		dma_fence_put(moving);
224 	}
225 
226 	/*
227 	 * Wait for buffer data in transit, due to a pipelined
228 	 * move.
229 	 */
230 	ret = ttm_bo_vm_fault_idle(bo, vmf);
231 	if (unlikely(ret != 0))
232 		return ret;
233 
234 	err = ttm_mem_io_lock(man, true);
235 	if (unlikely(err != 0))
236 		return VM_FAULT_NOPAGE;
237 	err = ttm_mem_io_reserve_vm(bo);
238 	if (unlikely(err != 0)) {
239 		ret = VM_FAULT_SIGBUS;
240 		goto out_io_unlock;
241 	}
242 
243 	page_offset = ((address - vma->vm_start) >> PAGE_SHIFT) +
244 		vma->vm_pgoff - drm_vma_node_start(&bo->base.vma_node);
245 	page_last = vma_pages(vma) + vma->vm_pgoff -
246 		drm_vma_node_start(&bo->base.vma_node);
247 
248 	if (unlikely(page_offset >= bo->num_pages)) {
249 		ret = VM_FAULT_SIGBUS;
250 		goto out_io_unlock;
251 	}
252 
253 	cvma.vm_page_prot = ttm_io_prot(bo->mem.placement, prot);
254 	if (!bo->mem.bus.is_iomem) {
255 		struct ttm_operation_ctx ctx = {
256 			.interruptible = false,
257 			.no_wait_gpu = false,
258 			.flags = TTM_OPT_FLAG_FORCE_ALLOC
259 
260 		};
261 
262 		ttm = bo->ttm;
263 		if (ttm_tt_populate(bo->ttm, &ctx)) {
264 			ret = VM_FAULT_OOM;
265 			goto out_io_unlock;
266 		}
267 	} else {
268 		/* Iomem should not be marked encrypted */
269 		cvma.vm_page_prot = pgprot_decrypted(cvma.vm_page_prot);
270 	}
271 
272 	/*
273 	 * Speculatively prefault a number of pages. Only error on
274 	 * first page.
275 	 */
276 	for (i = 0; i < num_prefault; ++i) {
277 		if (bo->mem.bus.is_iomem) {
278 			pfn = ttm_bo_io_mem_pfn(bo, page_offset);
279 		} else {
280 			page = ttm->pages[page_offset];
281 			if (unlikely(!page && i == 0)) {
282 				ret = VM_FAULT_OOM;
283 				goto out_io_unlock;
284 			} else if (unlikely(!page)) {
285 				break;
286 			}
287 			page->index = drm_vma_node_start(&bo->base.vma_node) +
288 				page_offset;
289 			pfn = page_to_pfn(page);
290 		}
291 
292 		if (vma->vm_flags & VM_MIXEDMAP)
293 			ret = vmf_insert_mixed(&cvma, address,
294 					__pfn_to_pfn_t(pfn, PFN_DEV));
295 		else
296 			ret = vmf_insert_pfn(&cvma, address, pfn);
297 
298 		/* Never error on prefaulted PTEs */
299 		if (unlikely((ret & VM_FAULT_ERROR))) {
300 			if (i == 0)
301 				goto out_io_unlock;
302 			else
303 				break;
304 		}
305 
306 		address += PAGE_SIZE;
307 		if (unlikely(++page_offset >= page_last))
308 			break;
309 	}
310 	ret = VM_FAULT_NOPAGE;
311 out_io_unlock:
312 	ttm_mem_io_unlock(man);
313 	return ret;
314 }
315 EXPORT_SYMBOL(ttm_bo_vm_fault_reserved);
316 
317 vm_fault_t ttm_bo_vm_fault(struct vm_fault *vmf)
318 {
319 	struct vm_area_struct *vma = vmf->vma;
320 	pgprot_t prot;
321 	struct ttm_buffer_object *bo = vma->vm_private_data;
322 	vm_fault_t ret;
323 
324 	ret = ttm_bo_vm_reserve(bo, vmf);
325 	if (ret)
326 		return ret;
327 
328 	prot = vm_get_page_prot(vma->vm_flags);
329 	ret = ttm_bo_vm_fault_reserved(vmf, prot, TTM_BO_VM_NUM_PREFAULT);
330 	if (ret == VM_FAULT_RETRY && !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT))
331 		return ret;
332 
333 	dma_resv_unlock(bo->base.resv);
334 
335 	return ret;
336 }
337 EXPORT_SYMBOL(ttm_bo_vm_fault);
338 
339 void ttm_bo_vm_open(struct vm_area_struct *vma)
340 {
341 	struct ttm_buffer_object *bo = vma->vm_private_data;
342 
343 	WARN_ON(bo->bdev->dev_mapping != vma->vm_file->f_mapping);
344 
345 	ttm_bo_get(bo);
346 }
347 EXPORT_SYMBOL(ttm_bo_vm_open);
348 
349 void ttm_bo_vm_close(struct vm_area_struct *vma)
350 {
351 	struct ttm_buffer_object *bo = vma->vm_private_data;
352 
353 	ttm_bo_put(bo);
354 	vma->vm_private_data = NULL;
355 }
356 EXPORT_SYMBOL(ttm_bo_vm_close);
357 
358 static int ttm_bo_vm_access_kmap(struct ttm_buffer_object *bo,
359 				 unsigned long offset,
360 				 uint8_t *buf, int len, int write)
361 {
362 	unsigned long page = offset >> PAGE_SHIFT;
363 	unsigned long bytes_left = len;
364 	int ret;
365 
366 	/* Copy a page at a time, that way no extra virtual address
367 	 * mapping is needed
368 	 */
369 	offset -= page << PAGE_SHIFT;
370 	do {
371 		unsigned long bytes = min(bytes_left, PAGE_SIZE - offset);
372 		struct ttm_bo_kmap_obj map;
373 		void *ptr;
374 		bool is_iomem;
375 
376 		ret = ttm_bo_kmap(bo, page, 1, &map);
377 		if (ret)
378 			return ret;
379 
380 		ptr = (uint8_t *)ttm_kmap_obj_virtual(&map, &is_iomem) + offset;
381 		WARN_ON_ONCE(is_iomem);
382 		if (write)
383 			memcpy(ptr, buf, bytes);
384 		else
385 			memcpy(buf, ptr, bytes);
386 		ttm_bo_kunmap(&map);
387 
388 		page++;
389 		buf += bytes;
390 		bytes_left -= bytes;
391 		offset = 0;
392 	} while (bytes_left);
393 
394 	return len;
395 }
396 
397 int ttm_bo_vm_access(struct vm_area_struct *vma, unsigned long addr,
398 		     void *buf, int len, int write)
399 {
400 	unsigned long offset = (addr) - vma->vm_start;
401 	struct ttm_buffer_object *bo = vma->vm_private_data;
402 	int ret;
403 
404 	if (len < 1 || (offset + len) >> PAGE_SHIFT > bo->num_pages)
405 		return -EIO;
406 
407 	ret = ttm_bo_reserve(bo, true, false, NULL);
408 	if (ret)
409 		return ret;
410 
411 	switch (bo->mem.mem_type) {
412 	case TTM_PL_SYSTEM:
413 		if (unlikely(bo->ttm->page_flags & TTM_PAGE_FLAG_SWAPPED)) {
414 			ret = ttm_tt_swapin(bo->ttm);
415 			if (unlikely(ret != 0))
416 				return ret;
417 		}
418 		/* fall through */
419 	case TTM_PL_TT:
420 		ret = ttm_bo_vm_access_kmap(bo, offset, buf, len, write);
421 		break;
422 	default:
423 		if (bo->bdev->driver->access_memory)
424 			ret = bo->bdev->driver->access_memory(
425 				bo, offset, buf, len, write);
426 		else
427 			ret = -EIO;
428 	}
429 
430 	ttm_bo_unreserve(bo);
431 
432 	return ret;
433 }
434 EXPORT_SYMBOL(ttm_bo_vm_access);
435 
436 static const struct vm_operations_struct ttm_bo_vm_ops = {
437 	.fault = ttm_bo_vm_fault,
438 	.open = ttm_bo_vm_open,
439 	.close = ttm_bo_vm_close,
440 	.access = ttm_bo_vm_access
441 };
442 
443 static struct ttm_buffer_object *ttm_bo_vm_lookup(struct ttm_bo_device *bdev,
444 						  unsigned long offset,
445 						  unsigned long pages)
446 {
447 	struct drm_vma_offset_node *node;
448 	struct ttm_buffer_object *bo = NULL;
449 
450 	drm_vma_offset_lock_lookup(bdev->vma_manager);
451 
452 	node = drm_vma_offset_lookup_locked(bdev->vma_manager, offset, pages);
453 	if (likely(node)) {
454 		bo = container_of(node, struct ttm_buffer_object,
455 				  base.vma_node);
456 		bo = ttm_bo_get_unless_zero(bo);
457 	}
458 
459 	drm_vma_offset_unlock_lookup(bdev->vma_manager);
460 
461 	if (!bo)
462 		pr_err("Could not find buffer object to map\n");
463 
464 	return bo;
465 }
466 
467 static void ttm_bo_mmap_vma_setup(struct ttm_buffer_object *bo, struct vm_area_struct *vma)
468 {
469 	vma->vm_ops = &ttm_bo_vm_ops;
470 
471 	/*
472 	 * Note: We're transferring the bo reference to
473 	 * vma->vm_private_data here.
474 	 */
475 
476 	vma->vm_private_data = bo;
477 
478 	/*
479 	 * We'd like to use VM_PFNMAP on shared mappings, where
480 	 * (vma->vm_flags & VM_SHARED) != 0, for performance reasons,
481 	 * but for some reason VM_PFNMAP + x86 PAT + write-combine is very
482 	 * bad for performance. Until that has been sorted out, use
483 	 * VM_MIXEDMAP on all mappings. See freedesktop.org bug #75719
484 	 */
485 	vma->vm_flags |= VM_MIXEDMAP;
486 	vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
487 }
488 
489 int ttm_bo_mmap(struct file *filp, struct vm_area_struct *vma,
490 		struct ttm_bo_device *bdev)
491 {
492 	struct ttm_bo_driver *driver;
493 	struct ttm_buffer_object *bo;
494 	int ret;
495 
496 	if (unlikely(vma->vm_pgoff < DRM_FILE_PAGE_OFFSET_START))
497 		return -EINVAL;
498 
499 	bo = ttm_bo_vm_lookup(bdev, vma->vm_pgoff, vma_pages(vma));
500 	if (unlikely(!bo))
501 		return -EINVAL;
502 
503 	driver = bo->bdev->driver;
504 	if (unlikely(!driver->verify_access)) {
505 		ret = -EPERM;
506 		goto out_unref;
507 	}
508 	ret = driver->verify_access(bo, filp);
509 	if (unlikely(ret != 0))
510 		goto out_unref;
511 
512 	ttm_bo_mmap_vma_setup(bo, vma);
513 	return 0;
514 out_unref:
515 	ttm_bo_put(bo);
516 	return ret;
517 }
518 EXPORT_SYMBOL(ttm_bo_mmap);
519 
520 int ttm_bo_mmap_obj(struct vm_area_struct *vma, struct ttm_buffer_object *bo)
521 {
522 	ttm_bo_get(bo);
523 	ttm_bo_mmap_vma_setup(bo, vma);
524 	return 0;
525 }
526 EXPORT_SYMBOL(ttm_bo_mmap_obj);
527