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_lock 62 * held. We only do this if the fault allows retry and this 63 * is the first attempt. 64 */ 65 if (fault_flag_allow_retry_first(vmf->flags)) { 66 ret = VM_FAULT_RETRY; 67 if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT) 68 goto out_unlock; 69 70 ttm_bo_get(bo); 71 mmap_read_unlock(vmf->vma->vm_mm); 72 (void) dma_fence_wait(bo->moving, true); 73 dma_resv_unlock(bo->base.resv); 74 ttm_bo_put(bo); 75 goto out_unlock; 76 } 77 78 /* 79 * Ordinary wait. 80 */ 81 err = dma_fence_wait(bo->moving, true); 82 if (unlikely(err != 0)) { 83 ret = (err != -ERESTARTSYS) ? VM_FAULT_SIGBUS : 84 VM_FAULT_NOPAGE; 85 goto out_unlock; 86 } 87 88 out_clear: 89 dma_fence_put(bo->moving); 90 bo->moving = NULL; 91 92 out_unlock: 93 return ret; 94 } 95 96 static unsigned long ttm_bo_io_mem_pfn(struct ttm_buffer_object *bo, 97 unsigned long page_offset) 98 { 99 struct ttm_bo_device *bdev = bo->bdev; 100 101 if (bdev->driver->io_mem_pfn) 102 return bdev->driver->io_mem_pfn(bo, page_offset); 103 104 return (bo->mem.bus.offset >> PAGE_SHIFT) + 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_lock 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 /* 139 * If the fault allows retry and this is the first 140 * fault attempt, we try to release the mmap_lock 141 * before waiting 142 */ 143 if (fault_flag_allow_retry_first(vmf->flags)) { 144 if (!(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) { 145 ttm_bo_get(bo); 146 mmap_read_unlock(vmf->vma->vm_mm); 147 if (!dma_resv_lock_interruptible(bo->base.resv, 148 NULL)) 149 dma_resv_unlock(bo->base.resv); 150 ttm_bo_put(bo); 151 } 152 153 return VM_FAULT_RETRY; 154 } 155 156 if (dma_resv_lock_interruptible(bo->base.resv, NULL)) 157 return VM_FAULT_NOPAGE; 158 } 159 160 /* 161 * Refuse to fault imported pages. This should be handled 162 * (if at all) by redirecting mmap to the exporter. 163 */ 164 if (bo->ttm && (bo->ttm->page_flags & TTM_PAGE_FLAG_SG)) { 165 dma_resv_unlock(bo->base.resv); 166 return VM_FAULT_SIGBUS; 167 } 168 169 return 0; 170 } 171 EXPORT_SYMBOL(ttm_bo_vm_reserve); 172 173 #ifdef CONFIG_TRANSPARENT_HUGEPAGE 174 /** 175 * ttm_bo_vm_insert_huge - Insert a pfn for PUD or PMD faults 176 * @vmf: Fault data 177 * @bo: The buffer object 178 * @page_offset: Page offset from bo start 179 * @fault_page_size: The size of the fault in pages. 180 * @pgprot: The page protections. 181 * Does additional checking whether it's possible to insert a PUD or PMD 182 * pfn and performs the insertion. 183 * 184 * Return: VM_FAULT_NOPAGE on successful insertion, VM_FAULT_FALLBACK if 185 * a huge fault was not possible, or on insertion error. 186 */ 187 static vm_fault_t ttm_bo_vm_insert_huge(struct vm_fault *vmf, 188 struct ttm_buffer_object *bo, 189 pgoff_t page_offset, 190 pgoff_t fault_page_size, 191 pgprot_t pgprot) 192 { 193 pgoff_t i; 194 vm_fault_t ret; 195 unsigned long pfn; 196 pfn_t pfnt; 197 struct ttm_tt *ttm = bo->ttm; 198 bool write = vmf->flags & FAULT_FLAG_WRITE; 199 200 /* Fault should not cross bo boundary. */ 201 page_offset &= ~(fault_page_size - 1); 202 if (page_offset + fault_page_size > bo->num_pages) 203 goto out_fallback; 204 205 if (bo->mem.bus.is_iomem) 206 pfn = ttm_bo_io_mem_pfn(bo, page_offset); 207 else 208 pfn = page_to_pfn(ttm->pages[page_offset]); 209 210 /* pfn must be fault_page_size aligned. */ 211 if ((pfn & (fault_page_size - 1)) != 0) 212 goto out_fallback; 213 214 /* Check that memory is contiguous. */ 215 if (!bo->mem.bus.is_iomem) { 216 for (i = 1; i < fault_page_size; ++i) { 217 if (page_to_pfn(ttm->pages[page_offset + i]) != pfn + i) 218 goto out_fallback; 219 } 220 } else if (bo->bdev->driver->io_mem_pfn) { 221 for (i = 1; i < fault_page_size; ++i) { 222 if (ttm_bo_io_mem_pfn(bo, page_offset + i) != pfn + i) 223 goto out_fallback; 224 } 225 } 226 227 pfnt = __pfn_to_pfn_t(pfn, PFN_DEV); 228 if (fault_page_size == (HPAGE_PMD_SIZE >> PAGE_SHIFT)) 229 ret = vmf_insert_pfn_pmd_prot(vmf, pfnt, pgprot, write); 230 #ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD 231 else if (fault_page_size == (HPAGE_PUD_SIZE >> PAGE_SHIFT)) 232 ret = vmf_insert_pfn_pud_prot(vmf, pfnt, pgprot, write); 233 #endif 234 else 235 WARN_ON_ONCE(ret = VM_FAULT_FALLBACK); 236 237 if (ret != VM_FAULT_NOPAGE) 238 goto out_fallback; 239 240 return VM_FAULT_NOPAGE; 241 out_fallback: 242 count_vm_event(THP_FAULT_FALLBACK); 243 return VM_FAULT_FALLBACK; 244 } 245 #else 246 static vm_fault_t ttm_bo_vm_insert_huge(struct vm_fault *vmf, 247 struct ttm_buffer_object *bo, 248 pgoff_t page_offset, 249 pgoff_t fault_page_size, 250 pgprot_t pgprot) 251 { 252 return VM_FAULT_FALLBACK; 253 } 254 #endif 255 256 /** 257 * ttm_bo_vm_fault_reserved - TTM fault helper 258 * @vmf: The struct vm_fault given as argument to the fault callback 259 * @prot: The page protection to be used for this memory area. 260 * @num_prefault: Maximum number of prefault pages. The caller may want to 261 * specify this based on madvice settings and the size of the GPU object 262 * backed by the memory. 263 * @fault_page_size: The size of the fault in pages. 264 * 265 * This function inserts one or more page table entries pointing to the 266 * memory backing the buffer object, and then returns a return code 267 * instructing the caller to retry the page access. 268 * 269 * Return: 270 * VM_FAULT_NOPAGE on success or pending signal 271 * VM_FAULT_SIGBUS on unspecified error 272 * VM_FAULT_OOM on out-of-memory 273 * VM_FAULT_RETRY if retryable wait 274 */ 275 vm_fault_t ttm_bo_vm_fault_reserved(struct vm_fault *vmf, 276 pgprot_t prot, 277 pgoff_t num_prefault, 278 pgoff_t fault_page_size) 279 { 280 struct vm_area_struct *vma = vmf->vma; 281 struct ttm_buffer_object *bo = vma->vm_private_data; 282 struct ttm_bo_device *bdev = bo->bdev; 283 unsigned long page_offset; 284 unsigned long page_last; 285 unsigned long pfn; 286 struct ttm_tt *ttm = NULL; 287 struct page *page; 288 int err; 289 pgoff_t i; 290 vm_fault_t ret = VM_FAULT_NOPAGE; 291 unsigned long address = vmf->address; 292 293 /* 294 * Wait for buffer data in transit, due to a pipelined 295 * move. 296 */ 297 ret = ttm_bo_vm_fault_idle(bo, vmf); 298 if (unlikely(ret != 0)) 299 return ret; 300 301 err = ttm_mem_io_reserve(bdev, &bo->mem); 302 if (unlikely(err != 0)) 303 return VM_FAULT_SIGBUS; 304 305 page_offset = ((address - vma->vm_start) >> PAGE_SHIFT) + 306 vma->vm_pgoff - drm_vma_node_start(&bo->base.vma_node); 307 page_last = vma_pages(vma) + vma->vm_pgoff - 308 drm_vma_node_start(&bo->base.vma_node); 309 310 if (unlikely(page_offset >= bo->num_pages)) 311 return VM_FAULT_SIGBUS; 312 313 prot = ttm_io_prot(bo, &bo->mem, prot); 314 if (!bo->mem.bus.is_iomem) { 315 struct ttm_operation_ctx ctx = { 316 .interruptible = false, 317 .no_wait_gpu = false, 318 .flags = TTM_OPT_FLAG_FORCE_ALLOC 319 320 }; 321 322 ttm = bo->ttm; 323 if (ttm_tt_populate(bdev, bo->ttm, &ctx)) 324 return VM_FAULT_OOM; 325 } else { 326 /* Iomem should not be marked encrypted */ 327 prot = pgprot_decrypted(prot); 328 } 329 330 /* We don't prefault on huge faults. Yet. */ 331 if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE) && fault_page_size != 1) 332 return ttm_bo_vm_insert_huge(vmf, bo, page_offset, 333 fault_page_size, prot); 334 335 /* 336 * Speculatively prefault a number of pages. Only error on 337 * first page. 338 */ 339 for (i = 0; i < num_prefault; ++i) { 340 if (bo->mem.bus.is_iomem) { 341 pfn = ttm_bo_io_mem_pfn(bo, page_offset); 342 } else { 343 page = ttm->pages[page_offset]; 344 if (unlikely(!page && i == 0)) { 345 return VM_FAULT_OOM; 346 } else if (unlikely(!page)) { 347 break; 348 } 349 page->index = drm_vma_node_start(&bo->base.vma_node) + 350 page_offset; 351 pfn = page_to_pfn(page); 352 } 353 354 /* 355 * Note that the value of @prot at this point may differ from 356 * the value of @vma->vm_page_prot in the caching- and 357 * encryption bits. This is because the exact location of the 358 * data may not be known at mmap() time and may also change 359 * at arbitrary times while the data is mmap'ed. 360 * See vmf_insert_mixed_prot() for a discussion. 361 */ 362 if (vma->vm_flags & VM_MIXEDMAP) 363 ret = vmf_insert_mixed_prot(vma, address, 364 __pfn_to_pfn_t(pfn, PFN_DEV), 365 prot); 366 else 367 ret = vmf_insert_pfn_prot(vma, address, pfn, prot); 368 369 /* Never error on prefaulted PTEs */ 370 if (unlikely((ret & VM_FAULT_ERROR))) { 371 if (i == 0) 372 return VM_FAULT_NOPAGE; 373 else 374 break; 375 } 376 377 address += PAGE_SIZE; 378 if (unlikely(++page_offset >= page_last)) 379 break; 380 } 381 return ret; 382 } 383 EXPORT_SYMBOL(ttm_bo_vm_fault_reserved); 384 385 vm_fault_t ttm_bo_vm_fault(struct vm_fault *vmf) 386 { 387 struct vm_area_struct *vma = vmf->vma; 388 pgprot_t prot; 389 struct ttm_buffer_object *bo = vma->vm_private_data; 390 vm_fault_t ret; 391 392 ret = ttm_bo_vm_reserve(bo, vmf); 393 if (ret) 394 return ret; 395 396 prot = vma->vm_page_prot; 397 ret = ttm_bo_vm_fault_reserved(vmf, prot, TTM_BO_VM_NUM_PREFAULT, 1); 398 if (ret == VM_FAULT_RETRY && !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) 399 return ret; 400 401 dma_resv_unlock(bo->base.resv); 402 403 return ret; 404 } 405 EXPORT_SYMBOL(ttm_bo_vm_fault); 406 407 void ttm_bo_vm_open(struct vm_area_struct *vma) 408 { 409 struct ttm_buffer_object *bo = vma->vm_private_data; 410 411 WARN_ON(bo->bdev->dev_mapping != vma->vm_file->f_mapping); 412 413 ttm_bo_get(bo); 414 } 415 EXPORT_SYMBOL(ttm_bo_vm_open); 416 417 void ttm_bo_vm_close(struct vm_area_struct *vma) 418 { 419 struct ttm_buffer_object *bo = vma->vm_private_data; 420 421 ttm_bo_put(bo); 422 vma->vm_private_data = NULL; 423 } 424 EXPORT_SYMBOL(ttm_bo_vm_close); 425 426 static int ttm_bo_vm_access_kmap(struct ttm_buffer_object *bo, 427 unsigned long offset, 428 uint8_t *buf, int len, int write) 429 { 430 unsigned long page = offset >> PAGE_SHIFT; 431 unsigned long bytes_left = len; 432 int ret; 433 434 /* Copy a page at a time, that way no extra virtual address 435 * mapping is needed 436 */ 437 offset -= page << PAGE_SHIFT; 438 do { 439 unsigned long bytes = min(bytes_left, PAGE_SIZE - offset); 440 struct ttm_bo_kmap_obj map; 441 void *ptr; 442 bool is_iomem; 443 444 ret = ttm_bo_kmap(bo, page, 1, &map); 445 if (ret) 446 return ret; 447 448 ptr = (uint8_t *)ttm_kmap_obj_virtual(&map, &is_iomem) + offset; 449 WARN_ON_ONCE(is_iomem); 450 if (write) 451 memcpy(ptr, buf, bytes); 452 else 453 memcpy(buf, ptr, bytes); 454 ttm_bo_kunmap(&map); 455 456 page++; 457 buf += bytes; 458 bytes_left -= bytes; 459 offset = 0; 460 } while (bytes_left); 461 462 return len; 463 } 464 465 int ttm_bo_vm_access(struct vm_area_struct *vma, unsigned long addr, 466 void *buf, int len, int write) 467 { 468 struct ttm_buffer_object *bo = vma->vm_private_data; 469 unsigned long offset = (addr) - vma->vm_start + 470 ((vma->vm_pgoff - drm_vma_node_start(&bo->base.vma_node)) 471 << PAGE_SHIFT); 472 int ret; 473 474 if (len < 1 || (offset + len) >> PAGE_SHIFT > bo->num_pages) 475 return -EIO; 476 477 ret = ttm_bo_reserve(bo, true, false, NULL); 478 if (ret) 479 return ret; 480 481 switch (bo->mem.mem_type) { 482 case TTM_PL_SYSTEM: 483 if (unlikely(bo->ttm->page_flags & TTM_PAGE_FLAG_SWAPPED)) { 484 ret = ttm_tt_swapin(bo->ttm); 485 if (unlikely(ret != 0)) 486 return ret; 487 } 488 fallthrough; 489 case TTM_PL_TT: 490 ret = ttm_bo_vm_access_kmap(bo, offset, buf, len, write); 491 break; 492 default: 493 if (bo->bdev->driver->access_memory) 494 ret = bo->bdev->driver->access_memory( 495 bo, offset, buf, len, write); 496 else 497 ret = -EIO; 498 } 499 500 ttm_bo_unreserve(bo); 501 502 return ret; 503 } 504 EXPORT_SYMBOL(ttm_bo_vm_access); 505 506 static const struct vm_operations_struct ttm_bo_vm_ops = { 507 .fault = ttm_bo_vm_fault, 508 .open = ttm_bo_vm_open, 509 .close = ttm_bo_vm_close, 510 .access = ttm_bo_vm_access, 511 }; 512 513 static struct ttm_buffer_object *ttm_bo_vm_lookup(struct ttm_bo_device *bdev, 514 unsigned long offset, 515 unsigned long pages) 516 { 517 struct drm_vma_offset_node *node; 518 struct ttm_buffer_object *bo = NULL; 519 520 drm_vma_offset_lock_lookup(bdev->vma_manager); 521 522 node = drm_vma_offset_lookup_locked(bdev->vma_manager, offset, pages); 523 if (likely(node)) { 524 bo = container_of(node, struct ttm_buffer_object, 525 base.vma_node); 526 bo = ttm_bo_get_unless_zero(bo); 527 } 528 529 drm_vma_offset_unlock_lookup(bdev->vma_manager); 530 531 if (!bo) 532 pr_err("Could not find buffer object to map\n"); 533 534 return bo; 535 } 536 537 static void ttm_bo_mmap_vma_setup(struct ttm_buffer_object *bo, struct vm_area_struct *vma) 538 { 539 vma->vm_ops = &ttm_bo_vm_ops; 540 541 /* 542 * Note: We're transferring the bo reference to 543 * vma->vm_private_data here. 544 */ 545 546 vma->vm_private_data = bo; 547 548 /* 549 * We'd like to use VM_PFNMAP on shared mappings, where 550 * (vma->vm_flags & VM_SHARED) != 0, for performance reasons, 551 * but for some reason VM_PFNMAP + x86 PAT + write-combine is very 552 * bad for performance. Until that has been sorted out, use 553 * VM_MIXEDMAP on all mappings. See freedesktop.org bug #75719 554 */ 555 vma->vm_flags |= VM_MIXEDMAP; 556 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP; 557 } 558 559 int ttm_bo_mmap(struct file *filp, struct vm_area_struct *vma, 560 struct ttm_bo_device *bdev) 561 { 562 struct ttm_bo_driver *driver; 563 struct ttm_buffer_object *bo; 564 int ret; 565 566 if (unlikely(vma->vm_pgoff < DRM_FILE_PAGE_OFFSET_START)) 567 return -EINVAL; 568 569 bo = ttm_bo_vm_lookup(bdev, vma->vm_pgoff, vma_pages(vma)); 570 if (unlikely(!bo)) 571 return -EINVAL; 572 573 driver = bo->bdev->driver; 574 if (unlikely(!driver->verify_access)) { 575 ret = -EPERM; 576 goto out_unref; 577 } 578 ret = driver->verify_access(bo, filp); 579 if (unlikely(ret != 0)) 580 goto out_unref; 581 582 ttm_bo_mmap_vma_setup(bo, vma); 583 return 0; 584 out_unref: 585 ttm_bo_put(bo); 586 return ret; 587 } 588 EXPORT_SYMBOL(ttm_bo_mmap); 589 590 int ttm_bo_mmap_obj(struct vm_area_struct *vma, struct ttm_buffer_object *bo) 591 { 592 ttm_bo_get(bo); 593 ttm_bo_mmap_vma_setup(bo, vma); 594 return 0; 595 } 596 EXPORT_SYMBOL(ttm_bo_mmap_obj); 597