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 <linux/export.h> 35 36 #include <drm/ttm/ttm_bo.h> 37 #include <drm/ttm/ttm_placement.h> 38 #include <drm/ttm/ttm_tt.h> 39 40 #include <drm/drm_drv.h> 41 #include <drm/drm_managed.h> 42 43 static vm_fault_t ttm_bo_vm_fault_idle(struct ttm_buffer_object *bo, 44 struct vm_fault *vmf) 45 { 46 long err = 0; 47 48 /* 49 * Quick non-stalling check for idle. 50 */ 51 if (dma_resv_test_signaled(bo->base.resv, DMA_RESV_USAGE_KERNEL)) 52 return 0; 53 54 /* 55 * If possible, avoid waiting for GPU with mmap_lock 56 * held. We only do this if the fault allows retry and this 57 * is the first attempt. 58 */ 59 if (fault_flag_allow_retry_first(vmf->flags)) { 60 if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT) 61 return VM_FAULT_RETRY; 62 63 drm_gem_object_get(&bo->base); 64 mmap_read_unlock(vmf->vma->vm_mm); 65 (void)dma_resv_wait_timeout(bo->base.resv, 66 DMA_RESV_USAGE_KERNEL, true, 67 MAX_SCHEDULE_TIMEOUT); 68 dma_resv_unlock(bo->base.resv); 69 drm_gem_object_put(&bo->base); 70 return VM_FAULT_RETRY; 71 } 72 73 /* 74 * Ordinary wait. 75 */ 76 err = dma_resv_wait_timeout(bo->base.resv, DMA_RESV_USAGE_KERNEL, true, 77 MAX_SCHEDULE_TIMEOUT); 78 if (unlikely(err < 0)) { 79 return (err != -ERESTARTSYS) ? VM_FAULT_SIGBUS : 80 VM_FAULT_NOPAGE; 81 } 82 83 return 0; 84 } 85 86 static unsigned long ttm_bo_io_mem_pfn(struct ttm_buffer_object *bo, 87 unsigned long page_offset) 88 { 89 struct ttm_device *bdev = bo->bdev; 90 91 if (bdev->funcs->io_mem_pfn) 92 return bdev->funcs->io_mem_pfn(bo, page_offset); 93 94 return (bo->resource->bus.offset >> PAGE_SHIFT) + page_offset; 95 } 96 97 /** 98 * ttm_bo_vm_reserve - Reserve a buffer object in a retryable vm callback 99 * @bo: The buffer object 100 * @vmf: The fault structure handed to the callback 101 * 102 * vm callbacks like fault() and *_mkwrite() allow for the mmap_lock to be dropped 103 * during long waits, and after the wait the callback will be restarted. This 104 * is to allow other threads using the same virtual memory space concurrent 105 * access to map(), unmap() completely unrelated buffer objects. TTM buffer 106 * object reservations sometimes wait for GPU and should therefore be 107 * considered long waits. This function reserves the buffer object interruptibly 108 * taking this into account. Starvation is avoided by the vm system not 109 * allowing too many repeated restarts. 110 * This function is intended to be used in customized fault() and _mkwrite() 111 * handlers. 112 * 113 * Return: 114 * 0 on success and the bo was reserved. 115 * VM_FAULT_RETRY if blocking wait. 116 * VM_FAULT_NOPAGE if blocking wait and retrying was not allowed. 117 */ 118 vm_fault_t ttm_bo_vm_reserve(struct ttm_buffer_object *bo, 119 struct vm_fault *vmf) 120 { 121 /* 122 * Work around locking order reversal in fault / nopfn 123 * between mmap_lock and bo_reserve: Perform a trylock operation 124 * for reserve, and if it fails, retry the fault after waiting 125 * for the buffer to become unreserved. 126 */ 127 if (unlikely(!dma_resv_trylock(bo->base.resv))) { 128 /* 129 * If the fault allows retry and this is the first 130 * fault attempt, we try to release the mmap_lock 131 * before waiting 132 */ 133 if (fault_flag_allow_retry_first(vmf->flags)) { 134 if (!(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) { 135 drm_gem_object_get(&bo->base); 136 mmap_read_unlock(vmf->vma->vm_mm); 137 if (!dma_resv_lock_interruptible(bo->base.resv, 138 NULL)) 139 dma_resv_unlock(bo->base.resv); 140 drm_gem_object_put(&bo->base); 141 } 142 143 return VM_FAULT_RETRY; 144 } 145 146 if (dma_resv_lock_interruptible(bo->base.resv, NULL)) 147 return VM_FAULT_NOPAGE; 148 } 149 150 /* 151 * Refuse to fault imported pages. This should be handled 152 * (if at all) by redirecting mmap to the exporter. 153 */ 154 if (bo->ttm && (bo->ttm->page_flags & TTM_TT_FLAG_EXTERNAL)) { 155 if (!(bo->ttm->page_flags & TTM_TT_FLAG_EXTERNAL_MAPPABLE)) { 156 dma_resv_unlock(bo->base.resv); 157 return VM_FAULT_SIGBUS; 158 } 159 } 160 161 return 0; 162 } 163 EXPORT_SYMBOL(ttm_bo_vm_reserve); 164 165 /** 166 * ttm_bo_vm_fault_reserved - TTM fault helper 167 * @vmf: The struct vm_fault given as argument to the fault callback 168 * @prot: The page protection to be used for this memory area. 169 * @num_prefault: Maximum number of prefault pages. The caller may want to 170 * specify this based on madvice settings and the size of the GPU object 171 * backed by the memory. 172 * 173 * This function inserts one or more page table entries pointing to the 174 * memory backing the buffer object, and then returns a return code 175 * instructing the caller to retry the page access. 176 * 177 * Return: 178 * VM_FAULT_NOPAGE on success or pending signal 179 * VM_FAULT_SIGBUS on unspecified error 180 * VM_FAULT_OOM on out-of-memory 181 * VM_FAULT_RETRY if retryable wait 182 */ 183 vm_fault_t ttm_bo_vm_fault_reserved(struct vm_fault *vmf, 184 pgprot_t prot, 185 pgoff_t num_prefault) 186 { 187 struct vm_area_struct *vma = vmf->vma; 188 struct ttm_buffer_object *bo = vma->vm_private_data; 189 unsigned long page_offset; 190 unsigned long page_last; 191 unsigned long pfn; 192 struct ttm_tt *ttm = NULL; 193 struct page *page; 194 int err; 195 pgoff_t i; 196 vm_fault_t ret = VM_FAULT_NOPAGE; 197 unsigned long address = vmf->address; 198 199 /* 200 * Wait for buffer data in transit, due to a pipelined 201 * move. 202 */ 203 ret = ttm_bo_vm_fault_idle(bo, vmf); 204 if (unlikely(ret != 0)) 205 return ret; 206 207 err = ttm_mem_io_reserve(bo->bdev, bo->resource); 208 if (unlikely(err != 0)) 209 return VM_FAULT_SIGBUS; 210 211 page_offset = ((address - vma->vm_start) >> PAGE_SHIFT) + 212 vma->vm_pgoff - drm_vma_node_start(&bo->base.vma_node); 213 page_last = vma_pages(vma) + vma->vm_pgoff - 214 drm_vma_node_start(&bo->base.vma_node); 215 216 if (unlikely(page_offset >= PFN_UP(bo->base.size))) 217 return VM_FAULT_SIGBUS; 218 219 prot = ttm_io_prot(bo, bo->resource, prot); 220 if (!bo->resource->bus.is_iomem) { 221 struct ttm_operation_ctx ctx = { 222 .interruptible = true, 223 .no_wait_gpu = false, 224 }; 225 226 ttm = bo->ttm; 227 err = ttm_bo_populate(bo, &ctx); 228 if (err) { 229 if (err == -EINTR || err == -ERESTARTSYS || 230 err == -EAGAIN) 231 return VM_FAULT_NOPAGE; 232 233 pr_debug("TTM fault hit %pe.\n", ERR_PTR(err)); 234 return VM_FAULT_SIGBUS; 235 } 236 } else { 237 /* Iomem should not be marked encrypted */ 238 prot = pgprot_decrypted(prot); 239 } 240 241 /* 242 * Speculatively prefault a number of pages. Only error on 243 * first page. 244 */ 245 for (i = 0; i < num_prefault; ++i) { 246 if (bo->resource->bus.is_iomem) { 247 pfn = ttm_bo_io_mem_pfn(bo, page_offset); 248 } else { 249 page = ttm->pages[page_offset]; 250 if (unlikely(!page && i == 0)) { 251 return VM_FAULT_OOM; 252 } else if (unlikely(!page)) { 253 break; 254 } 255 pfn = page_to_pfn(page); 256 } 257 258 /* 259 * Note that the value of @prot at this point may differ from 260 * the value of @vma->vm_page_prot in the caching- and 261 * encryption bits. This is because the exact location of the 262 * data may not be known at mmap() time and may also change 263 * at arbitrary times while the data is mmap'ed. 264 * See vmf_insert_pfn_prot() for a discussion. 265 */ 266 ret = vmf_insert_pfn_prot(vma, address, pfn, prot); 267 268 /* Never error on prefaulted PTEs */ 269 if (unlikely((ret & VM_FAULT_ERROR))) { 270 if (i == 0) 271 return VM_FAULT_NOPAGE; 272 else 273 break; 274 } 275 276 address += PAGE_SIZE; 277 if (unlikely(++page_offset >= page_last)) 278 break; 279 } 280 return ret; 281 } 282 EXPORT_SYMBOL(ttm_bo_vm_fault_reserved); 283 284 static void ttm_bo_release_dummy_page(struct drm_device *dev, void *res) 285 { 286 struct page *dummy_page = (struct page *)res; 287 288 __free_page(dummy_page); 289 } 290 291 vm_fault_t ttm_bo_vm_dummy_page(struct vm_fault *vmf, pgprot_t prot) 292 { 293 struct vm_area_struct *vma = vmf->vma; 294 struct ttm_buffer_object *bo = vma->vm_private_data; 295 vm_fault_t ret = VM_FAULT_NOPAGE; 296 unsigned long address; 297 unsigned long pfn; 298 struct page *page; 299 300 /* Allocate new dummy page to map all the VA range in this VMA to it*/ 301 page = alloc_page(GFP_KERNEL | __GFP_ZERO); 302 if (!page) 303 return VM_FAULT_OOM; 304 305 /* Set the page to be freed using drmm release action */ 306 if (drmm_add_action_or_reset(bo->base.dev, ttm_bo_release_dummy_page, 307 page)) 308 return VM_FAULT_OOM; 309 310 pfn = page_to_pfn(page); 311 312 /* Prefault the entire VMA range right away to avoid further faults */ 313 for (address = vma->vm_start; address < vma->vm_end; 314 address += PAGE_SIZE) 315 ret = vmf_insert_pfn_prot(vma, address, pfn, prot); 316 317 return ret; 318 } 319 EXPORT_SYMBOL(ttm_bo_vm_dummy_page); 320 321 vm_fault_t ttm_bo_vm_fault(struct vm_fault *vmf) 322 { 323 struct vm_area_struct *vma = vmf->vma; 324 struct ttm_buffer_object *bo = vma->vm_private_data; 325 vm_fault_t ret; 326 pgprot_t prot; 327 int idx; 328 329 ret = ttm_bo_vm_reserve(bo, vmf); 330 if (ret) 331 return ret; 332 333 prot = vma->vm_page_prot; 334 if (drm_dev_enter(bo->base.dev, &idx)) { 335 ret = ttm_bo_vm_fault_reserved(vmf, prot, TTM_BO_VM_NUM_PREFAULT); 336 drm_dev_exit(idx); 337 } else { 338 ret = ttm_bo_vm_dummy_page(vmf, prot); 339 } 340 if (ret == VM_FAULT_RETRY && !(vmf->flags & FAULT_FLAG_RETRY_NOWAIT)) 341 return ret; 342 343 dma_resv_unlock(bo->base.resv); 344 345 return ret; 346 } 347 EXPORT_SYMBOL(ttm_bo_vm_fault); 348 349 void ttm_bo_vm_open(struct vm_area_struct *vma) 350 { 351 struct ttm_buffer_object *bo = vma->vm_private_data; 352 353 WARN_ON(bo->bdev->dev_mapping != vma->vm_file->f_mapping); 354 355 drm_gem_object_get(&bo->base); 356 } 357 EXPORT_SYMBOL(ttm_bo_vm_open); 358 359 void ttm_bo_vm_close(struct vm_area_struct *vma) 360 { 361 struct ttm_buffer_object *bo = vma->vm_private_data; 362 363 drm_gem_object_put(&bo->base); 364 vma->vm_private_data = NULL; 365 } 366 EXPORT_SYMBOL(ttm_bo_vm_close); 367 368 static int ttm_bo_vm_access_kmap(struct ttm_buffer_object *bo, 369 unsigned long offset, 370 uint8_t *buf, int len, int write) 371 { 372 unsigned long page = offset >> PAGE_SHIFT; 373 unsigned long bytes_left = len; 374 int ret; 375 376 /* Copy a page at a time, that way no extra virtual address 377 * mapping is needed 378 */ 379 offset -= page << PAGE_SHIFT; 380 do { 381 unsigned long bytes = min(bytes_left, PAGE_SIZE - offset); 382 struct ttm_bo_kmap_obj map; 383 void *ptr; 384 bool is_iomem; 385 386 ret = ttm_bo_kmap(bo, page, 1, &map); 387 if (ret) 388 return ret; 389 390 ptr = (uint8_t *)ttm_kmap_obj_virtual(&map, &is_iomem) + offset; 391 WARN_ON_ONCE(is_iomem); 392 if (write) 393 memcpy(ptr, buf, bytes); 394 else 395 memcpy(buf, ptr, bytes); 396 ttm_bo_kunmap(&map); 397 398 page++; 399 buf += bytes; 400 bytes_left -= bytes; 401 offset = 0; 402 } while (bytes_left); 403 404 return len; 405 } 406 407 /** 408 * ttm_bo_access - Helper to access a buffer object 409 * 410 * @bo: ttm buffer object 411 * @offset: access offset into buffer object 412 * @buf: pointer to caller memory to read into or write from 413 * @len: length of access 414 * @write: write access 415 * 416 * Utility function to access a buffer object. Useful when buffer object cannot 417 * be easily mapped (non-contiguous, non-visible, etc...). Should not directly 418 * be exported to user space via a peak / poke interface. 419 * 420 * Returns: 421 * @len if successful, negative error code on failure. 422 */ 423 int ttm_bo_access(struct ttm_buffer_object *bo, unsigned long offset, 424 void *buf, int len, int write) 425 { 426 int ret; 427 428 if (len < 1 || (offset + len) > bo->base.size) 429 return -EIO; 430 431 ret = ttm_bo_reserve(bo, true, false, NULL); 432 if (ret) 433 return ret; 434 435 if (!bo->resource) { 436 ret = -ENODATA; 437 goto unlock; 438 } 439 440 switch (bo->resource->mem_type) { 441 case TTM_PL_SYSTEM: 442 fallthrough; 443 case TTM_PL_TT: 444 ret = ttm_bo_vm_access_kmap(bo, offset, buf, len, write); 445 break; 446 default: 447 if (bo->bdev->funcs->access_memory) 448 ret = bo->bdev->funcs->access_memory 449 (bo, offset, buf, len, write); 450 else 451 ret = -EIO; 452 } 453 454 unlock: 455 ttm_bo_unreserve(bo); 456 457 return ret; 458 } 459 EXPORT_SYMBOL(ttm_bo_access); 460 461 int ttm_bo_vm_access(struct vm_area_struct *vma, unsigned long addr, 462 void *buf, int len, int write) 463 { 464 struct ttm_buffer_object *bo = vma->vm_private_data; 465 unsigned long offset = (addr) - vma->vm_start + 466 ((vma->vm_pgoff - drm_vma_node_start(&bo->base.vma_node)) 467 << PAGE_SHIFT); 468 469 return ttm_bo_access(bo, offset, buf, len, write); 470 } 471 EXPORT_SYMBOL(ttm_bo_vm_access); 472 473 static const struct vm_operations_struct ttm_bo_vm_ops = { 474 .fault = ttm_bo_vm_fault, 475 .open = ttm_bo_vm_open, 476 .close = ttm_bo_vm_close, 477 .access = ttm_bo_vm_access, 478 }; 479 480 /** 481 * ttm_bo_mmap_obj - mmap memory backed by a ttm buffer object. 482 * 483 * @vma: vma as input from the fbdev mmap method. 484 * @bo: The bo backing the address space. 485 * 486 * Maps a buffer object. 487 */ 488 int ttm_bo_mmap_obj(struct vm_area_struct *vma, struct ttm_buffer_object *bo) 489 { 490 /* Enforce no COW since would have really strange behavior with it. */ 491 if (is_cow_mapping(vma->vm_flags)) 492 return -EINVAL; 493 494 drm_gem_object_get(&bo->base); 495 496 /* 497 * Drivers may want to override the vm_ops field. Otherwise we 498 * use TTM's default callbacks. 499 */ 500 if (!vma->vm_ops) 501 vma->vm_ops = &ttm_bo_vm_ops; 502 503 /* 504 * Note: We're transferring the bo reference to 505 * vma->vm_private_data here. 506 */ 507 508 vma->vm_private_data = bo; 509 510 vm_flags_set(vma, VM_PFNMAP | VM_IO | VM_DONTEXPAND | VM_DONTDUMP); 511 return 0; 512 } 513 EXPORT_SYMBOL(ttm_bo_mmap_obj); 514