1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright © 2015 Broadcom 4 */ 5 6 /** 7 * DOC: VC4 GEM BO management support 8 * 9 * The VC4 GPU architecture (both scanout and rendering) has direct 10 * access to system memory with no MMU in between. To support it, we 11 * use the GEM CMA helper functions to allocate contiguous ranges of 12 * physical memory for our BOs. 13 * 14 * Since the CMA allocator is very slow, we keep a cache of recently 15 * freed BOs around so that the kernel's allocation of objects for 3D 16 * rendering can return quickly. 17 */ 18 19 #include <linux/dma-buf.h> 20 21 #include "vc4_drv.h" 22 #include "uapi/drm/vc4_drm.h" 23 24 static vm_fault_t vc4_fault(struct vm_fault *vmf); 25 26 static const char * const bo_type_names[] = { 27 "kernel", 28 "V3D", 29 "V3D shader", 30 "dumb", 31 "binner", 32 "RCL", 33 "BCL", 34 "kernel BO cache", 35 }; 36 37 static bool is_user_label(int label) 38 { 39 return label >= VC4_BO_TYPE_COUNT; 40 } 41 42 static void vc4_bo_stats_print(struct drm_printer *p, struct vc4_dev *vc4) 43 { 44 int i; 45 46 for (i = 0; i < vc4->num_labels; i++) { 47 if (!vc4->bo_labels[i].num_allocated) 48 continue; 49 50 drm_printf(p, "%30s: %6dkb BOs (%d)\n", 51 vc4->bo_labels[i].name, 52 vc4->bo_labels[i].size_allocated / 1024, 53 vc4->bo_labels[i].num_allocated); 54 } 55 56 mutex_lock(&vc4->purgeable.lock); 57 if (vc4->purgeable.num) 58 drm_printf(p, "%30s: %6zdkb BOs (%d)\n", "userspace BO cache", 59 vc4->purgeable.size / 1024, vc4->purgeable.num); 60 61 if (vc4->purgeable.purged_num) 62 drm_printf(p, "%30s: %6zdkb BOs (%d)\n", "total purged BO", 63 vc4->purgeable.purged_size / 1024, 64 vc4->purgeable.purged_num); 65 mutex_unlock(&vc4->purgeable.lock); 66 } 67 68 static int vc4_bo_stats_debugfs(struct seq_file *m, void *unused) 69 { 70 struct drm_info_node *node = (struct drm_info_node *)m->private; 71 struct drm_device *dev = node->minor->dev; 72 struct vc4_dev *vc4 = to_vc4_dev(dev); 73 struct drm_printer p = drm_seq_file_printer(m); 74 75 vc4_bo_stats_print(&p, vc4); 76 77 return 0; 78 } 79 80 /* Takes ownership of *name and returns the appropriate slot for it in 81 * the bo_labels[] array, extending it as necessary. 82 * 83 * This is inefficient and could use a hash table instead of walking 84 * an array and strcmp()ing. However, the assumption is that user 85 * labeling will be infrequent (scanout buffers and other long-lived 86 * objects, or debug driver builds), so we can live with it for now. 87 */ 88 static int vc4_get_user_label(struct vc4_dev *vc4, const char *name) 89 { 90 int i; 91 int free_slot = -1; 92 93 for (i = 0; i < vc4->num_labels; i++) { 94 if (!vc4->bo_labels[i].name) { 95 free_slot = i; 96 } else if (strcmp(vc4->bo_labels[i].name, name) == 0) { 97 kfree(name); 98 return i; 99 } 100 } 101 102 if (free_slot != -1) { 103 WARN_ON(vc4->bo_labels[free_slot].num_allocated != 0); 104 vc4->bo_labels[free_slot].name = name; 105 return free_slot; 106 } else { 107 u32 new_label_count = vc4->num_labels + 1; 108 struct vc4_label *new_labels = 109 krealloc(vc4->bo_labels, 110 new_label_count * sizeof(*new_labels), 111 GFP_KERNEL); 112 113 if (!new_labels) { 114 kfree(name); 115 return -1; 116 } 117 118 free_slot = vc4->num_labels; 119 vc4->bo_labels = new_labels; 120 vc4->num_labels = new_label_count; 121 122 vc4->bo_labels[free_slot].name = name; 123 vc4->bo_labels[free_slot].num_allocated = 0; 124 vc4->bo_labels[free_slot].size_allocated = 0; 125 126 return free_slot; 127 } 128 } 129 130 static void vc4_bo_set_label(struct drm_gem_object *gem_obj, int label) 131 { 132 struct vc4_bo *bo = to_vc4_bo(gem_obj); 133 struct vc4_dev *vc4 = to_vc4_dev(gem_obj->dev); 134 135 lockdep_assert_held(&vc4->bo_lock); 136 137 if (label != -1) { 138 vc4->bo_labels[label].num_allocated++; 139 vc4->bo_labels[label].size_allocated += gem_obj->size; 140 } 141 142 vc4->bo_labels[bo->label].num_allocated--; 143 vc4->bo_labels[bo->label].size_allocated -= gem_obj->size; 144 145 if (vc4->bo_labels[bo->label].num_allocated == 0 && 146 is_user_label(bo->label)) { 147 /* Free user BO label slots on last unreference. 148 * Slots are just where we track the stats for a given 149 * name, and once a name is unused we can reuse that 150 * slot. 151 */ 152 kfree(vc4->bo_labels[bo->label].name); 153 vc4->bo_labels[bo->label].name = NULL; 154 } 155 156 bo->label = label; 157 } 158 159 static uint32_t bo_page_index(size_t size) 160 { 161 return (size / PAGE_SIZE) - 1; 162 } 163 164 static void vc4_bo_destroy(struct vc4_bo *bo) 165 { 166 struct drm_gem_object *obj = &bo->base.base; 167 struct vc4_dev *vc4 = to_vc4_dev(obj->dev); 168 169 lockdep_assert_held(&vc4->bo_lock); 170 171 vc4_bo_set_label(obj, -1); 172 173 if (bo->validated_shader) { 174 kfree(bo->validated_shader->uniform_addr_offsets); 175 kfree(bo->validated_shader->texture_samples); 176 kfree(bo->validated_shader); 177 bo->validated_shader = NULL; 178 } 179 180 drm_gem_cma_free_object(obj); 181 } 182 183 static void vc4_bo_remove_from_cache(struct vc4_bo *bo) 184 { 185 struct vc4_dev *vc4 = to_vc4_dev(bo->base.base.dev); 186 187 lockdep_assert_held(&vc4->bo_lock); 188 list_del(&bo->unref_head); 189 list_del(&bo->size_head); 190 } 191 192 static struct list_head *vc4_get_cache_list_for_size(struct drm_device *dev, 193 size_t size) 194 { 195 struct vc4_dev *vc4 = to_vc4_dev(dev); 196 uint32_t page_index = bo_page_index(size); 197 198 if (vc4->bo_cache.size_list_size <= page_index) { 199 uint32_t new_size = max(vc4->bo_cache.size_list_size * 2, 200 page_index + 1); 201 struct list_head *new_list; 202 uint32_t i; 203 204 new_list = kmalloc_array(new_size, sizeof(struct list_head), 205 GFP_KERNEL); 206 if (!new_list) 207 return NULL; 208 209 /* Rebase the old cached BO lists to their new list 210 * head locations. 211 */ 212 for (i = 0; i < vc4->bo_cache.size_list_size; i++) { 213 struct list_head *old_list = 214 &vc4->bo_cache.size_list[i]; 215 216 if (list_empty(old_list)) 217 INIT_LIST_HEAD(&new_list[i]); 218 else 219 list_replace(old_list, &new_list[i]); 220 } 221 /* And initialize the brand new BO list heads. */ 222 for (i = vc4->bo_cache.size_list_size; i < new_size; i++) 223 INIT_LIST_HEAD(&new_list[i]); 224 225 kfree(vc4->bo_cache.size_list); 226 vc4->bo_cache.size_list = new_list; 227 vc4->bo_cache.size_list_size = new_size; 228 } 229 230 return &vc4->bo_cache.size_list[page_index]; 231 } 232 233 static void vc4_bo_cache_purge(struct drm_device *dev) 234 { 235 struct vc4_dev *vc4 = to_vc4_dev(dev); 236 237 mutex_lock(&vc4->bo_lock); 238 while (!list_empty(&vc4->bo_cache.time_list)) { 239 struct vc4_bo *bo = list_last_entry(&vc4->bo_cache.time_list, 240 struct vc4_bo, unref_head); 241 vc4_bo_remove_from_cache(bo); 242 vc4_bo_destroy(bo); 243 } 244 mutex_unlock(&vc4->bo_lock); 245 } 246 247 void vc4_bo_add_to_purgeable_pool(struct vc4_bo *bo) 248 { 249 struct vc4_dev *vc4 = to_vc4_dev(bo->base.base.dev); 250 251 mutex_lock(&vc4->purgeable.lock); 252 list_add_tail(&bo->size_head, &vc4->purgeable.list); 253 vc4->purgeable.num++; 254 vc4->purgeable.size += bo->base.base.size; 255 mutex_unlock(&vc4->purgeable.lock); 256 } 257 258 static void vc4_bo_remove_from_purgeable_pool_locked(struct vc4_bo *bo) 259 { 260 struct vc4_dev *vc4 = to_vc4_dev(bo->base.base.dev); 261 262 /* list_del_init() is used here because the caller might release 263 * the purgeable lock in order to acquire the madv one and update the 264 * madv status. 265 * During this short period of time a user might decide to mark 266 * the BO as unpurgeable, and if bo->madv is set to 267 * VC4_MADV_DONTNEED it will try to remove the BO from the 268 * purgeable list which will fail if the ->next/prev fields 269 * are set to LIST_POISON1/LIST_POISON2 (which is what 270 * list_del() does). 271 * Re-initializing the list element guarantees that list_del() 272 * will work correctly even if it's a NOP. 273 */ 274 list_del_init(&bo->size_head); 275 vc4->purgeable.num--; 276 vc4->purgeable.size -= bo->base.base.size; 277 } 278 279 void vc4_bo_remove_from_purgeable_pool(struct vc4_bo *bo) 280 { 281 struct vc4_dev *vc4 = to_vc4_dev(bo->base.base.dev); 282 283 mutex_lock(&vc4->purgeable.lock); 284 vc4_bo_remove_from_purgeable_pool_locked(bo); 285 mutex_unlock(&vc4->purgeable.lock); 286 } 287 288 static void vc4_bo_purge(struct drm_gem_object *obj) 289 { 290 struct vc4_bo *bo = to_vc4_bo(obj); 291 struct drm_device *dev = obj->dev; 292 293 WARN_ON(!mutex_is_locked(&bo->madv_lock)); 294 WARN_ON(bo->madv != VC4_MADV_DONTNEED); 295 296 drm_vma_node_unmap(&obj->vma_node, dev->anon_inode->i_mapping); 297 298 dma_free_wc(dev->dev, obj->size, bo->base.vaddr, bo->base.paddr); 299 bo->base.vaddr = NULL; 300 bo->madv = __VC4_MADV_PURGED; 301 } 302 303 static void vc4_bo_userspace_cache_purge(struct drm_device *dev) 304 { 305 struct vc4_dev *vc4 = to_vc4_dev(dev); 306 307 mutex_lock(&vc4->purgeable.lock); 308 while (!list_empty(&vc4->purgeable.list)) { 309 struct vc4_bo *bo = list_first_entry(&vc4->purgeable.list, 310 struct vc4_bo, size_head); 311 struct drm_gem_object *obj = &bo->base.base; 312 size_t purged_size = 0; 313 314 vc4_bo_remove_from_purgeable_pool_locked(bo); 315 316 /* Release the purgeable lock while we're purging the BO so 317 * that other people can continue inserting things in the 318 * purgeable pool without having to wait for all BOs to be 319 * purged. 320 */ 321 mutex_unlock(&vc4->purgeable.lock); 322 mutex_lock(&bo->madv_lock); 323 324 /* Since we released the purgeable pool lock before acquiring 325 * the BO madv one, the user may have marked the BO as WILLNEED 326 * and re-used it in the meantime. 327 * Before purging the BO we need to make sure 328 * - it is still marked as DONTNEED 329 * - it has not been re-inserted in the purgeable list 330 * - it is not used by HW blocks 331 * If one of these conditions is not met, just skip the entry. 332 */ 333 if (bo->madv == VC4_MADV_DONTNEED && 334 list_empty(&bo->size_head) && 335 !refcount_read(&bo->usecnt)) { 336 purged_size = bo->base.base.size; 337 vc4_bo_purge(obj); 338 } 339 mutex_unlock(&bo->madv_lock); 340 mutex_lock(&vc4->purgeable.lock); 341 342 if (purged_size) { 343 vc4->purgeable.purged_size += purged_size; 344 vc4->purgeable.purged_num++; 345 } 346 } 347 mutex_unlock(&vc4->purgeable.lock); 348 } 349 350 static struct vc4_bo *vc4_bo_get_from_cache(struct drm_device *dev, 351 uint32_t size, 352 enum vc4_kernel_bo_type type) 353 { 354 struct vc4_dev *vc4 = to_vc4_dev(dev); 355 uint32_t page_index = bo_page_index(size); 356 struct vc4_bo *bo = NULL; 357 358 size = roundup(size, PAGE_SIZE); 359 360 mutex_lock(&vc4->bo_lock); 361 if (page_index >= vc4->bo_cache.size_list_size) 362 goto out; 363 364 if (list_empty(&vc4->bo_cache.size_list[page_index])) 365 goto out; 366 367 bo = list_first_entry(&vc4->bo_cache.size_list[page_index], 368 struct vc4_bo, size_head); 369 vc4_bo_remove_from_cache(bo); 370 kref_init(&bo->base.base.refcount); 371 372 out: 373 if (bo) 374 vc4_bo_set_label(&bo->base.base, type); 375 mutex_unlock(&vc4->bo_lock); 376 return bo; 377 } 378 379 static const struct vm_operations_struct vc4_vm_ops = { 380 .fault = vc4_fault, 381 .open = drm_gem_vm_open, 382 .close = drm_gem_vm_close, 383 }; 384 385 static const struct drm_gem_object_funcs vc4_gem_object_funcs = { 386 .free = vc4_free_object, 387 .export = vc4_prime_export, 388 .get_sg_table = drm_gem_cma_prime_get_sg_table, 389 .vmap = vc4_prime_vmap, 390 .vunmap = drm_gem_cma_prime_vunmap, 391 .vm_ops = &vc4_vm_ops, 392 }; 393 394 /** 395 * vc4_gem_create_object - Implementation of driver->gem_create_object. 396 * @dev: DRM device 397 * @size: Size in bytes of the memory the object will reference 398 * 399 * This lets the CMA helpers allocate object structs for us, and keep 400 * our BO stats correct. 401 */ 402 struct drm_gem_object *vc4_create_object(struct drm_device *dev, size_t size) 403 { 404 struct vc4_dev *vc4 = to_vc4_dev(dev); 405 struct vc4_bo *bo; 406 407 bo = kzalloc(sizeof(*bo), GFP_KERNEL); 408 if (!bo) 409 return ERR_PTR(-ENOMEM); 410 411 bo->madv = VC4_MADV_WILLNEED; 412 refcount_set(&bo->usecnt, 0); 413 mutex_init(&bo->madv_lock); 414 mutex_lock(&vc4->bo_lock); 415 bo->label = VC4_BO_TYPE_KERNEL; 416 vc4->bo_labels[VC4_BO_TYPE_KERNEL].num_allocated++; 417 vc4->bo_labels[VC4_BO_TYPE_KERNEL].size_allocated += size; 418 mutex_unlock(&vc4->bo_lock); 419 420 bo->base.base.funcs = &vc4_gem_object_funcs; 421 422 return &bo->base.base; 423 } 424 425 struct vc4_bo *vc4_bo_create(struct drm_device *dev, size_t unaligned_size, 426 bool allow_unzeroed, enum vc4_kernel_bo_type type) 427 { 428 size_t size = roundup(unaligned_size, PAGE_SIZE); 429 struct vc4_dev *vc4 = to_vc4_dev(dev); 430 struct drm_gem_cma_object *cma_obj; 431 struct vc4_bo *bo; 432 433 if (size == 0) 434 return ERR_PTR(-EINVAL); 435 436 /* First, try to get a vc4_bo from the kernel BO cache. */ 437 bo = vc4_bo_get_from_cache(dev, size, type); 438 if (bo) { 439 if (!allow_unzeroed) 440 memset(bo->base.vaddr, 0, bo->base.base.size); 441 return bo; 442 } 443 444 cma_obj = drm_gem_cma_create(dev, size); 445 if (IS_ERR(cma_obj)) { 446 /* 447 * If we've run out of CMA memory, kill the cache of 448 * CMA allocations we've got laying around and try again. 449 */ 450 vc4_bo_cache_purge(dev); 451 cma_obj = drm_gem_cma_create(dev, size); 452 } 453 454 if (IS_ERR(cma_obj)) { 455 /* 456 * Still not enough CMA memory, purge the userspace BO 457 * cache and retry. 458 * This is sub-optimal since we purge the whole userspace 459 * BO cache which forces user that want to re-use the BO to 460 * restore its initial content. 461 * Ideally, we should purge entries one by one and retry 462 * after each to see if CMA allocation succeeds. Or even 463 * better, try to find an entry with at least the same 464 * size. 465 */ 466 vc4_bo_userspace_cache_purge(dev); 467 cma_obj = drm_gem_cma_create(dev, size); 468 } 469 470 if (IS_ERR(cma_obj)) { 471 struct drm_printer p = drm_info_printer(vc4->base.dev); 472 DRM_ERROR("Failed to allocate from CMA:\n"); 473 vc4_bo_stats_print(&p, vc4); 474 return ERR_PTR(-ENOMEM); 475 } 476 bo = to_vc4_bo(&cma_obj->base); 477 478 /* By default, BOs do not support the MADV ioctl. This will be enabled 479 * only on BOs that are exposed to userspace (V3D, V3D_SHADER and DUMB 480 * BOs). 481 */ 482 bo->madv = __VC4_MADV_NOTSUPP; 483 484 mutex_lock(&vc4->bo_lock); 485 vc4_bo_set_label(&cma_obj->base, type); 486 mutex_unlock(&vc4->bo_lock); 487 488 return bo; 489 } 490 491 int vc4_dumb_create(struct drm_file *file_priv, 492 struct drm_device *dev, 493 struct drm_mode_create_dumb *args) 494 { 495 int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8); 496 struct vc4_bo *bo = NULL; 497 int ret; 498 499 if (args->pitch < min_pitch) 500 args->pitch = min_pitch; 501 502 if (args->size < args->pitch * args->height) 503 args->size = args->pitch * args->height; 504 505 bo = vc4_bo_create(dev, args->size, false, VC4_BO_TYPE_DUMB); 506 if (IS_ERR(bo)) 507 return PTR_ERR(bo); 508 509 bo->madv = VC4_MADV_WILLNEED; 510 511 ret = drm_gem_handle_create(file_priv, &bo->base.base, &args->handle); 512 drm_gem_object_put(&bo->base.base); 513 514 return ret; 515 } 516 517 static void vc4_bo_cache_free_old(struct drm_device *dev) 518 { 519 struct vc4_dev *vc4 = to_vc4_dev(dev); 520 unsigned long expire_time = jiffies - msecs_to_jiffies(1000); 521 522 lockdep_assert_held(&vc4->bo_lock); 523 524 while (!list_empty(&vc4->bo_cache.time_list)) { 525 struct vc4_bo *bo = list_last_entry(&vc4->bo_cache.time_list, 526 struct vc4_bo, unref_head); 527 if (time_before(expire_time, bo->free_time)) { 528 mod_timer(&vc4->bo_cache.time_timer, 529 round_jiffies_up(jiffies + 530 msecs_to_jiffies(1000))); 531 return; 532 } 533 534 vc4_bo_remove_from_cache(bo); 535 vc4_bo_destroy(bo); 536 } 537 } 538 539 /* Called on the last userspace/kernel unreference of the BO. Returns 540 * it to the BO cache if possible, otherwise frees it. 541 */ 542 void vc4_free_object(struct drm_gem_object *gem_bo) 543 { 544 struct drm_device *dev = gem_bo->dev; 545 struct vc4_dev *vc4 = to_vc4_dev(dev); 546 struct vc4_bo *bo = to_vc4_bo(gem_bo); 547 struct list_head *cache_list; 548 549 /* Remove the BO from the purgeable list. */ 550 mutex_lock(&bo->madv_lock); 551 if (bo->madv == VC4_MADV_DONTNEED && !refcount_read(&bo->usecnt)) 552 vc4_bo_remove_from_purgeable_pool(bo); 553 mutex_unlock(&bo->madv_lock); 554 555 mutex_lock(&vc4->bo_lock); 556 /* If the object references someone else's memory, we can't cache it. 557 */ 558 if (gem_bo->import_attach) { 559 vc4_bo_destroy(bo); 560 goto out; 561 } 562 563 /* Don't cache if it was publicly named. */ 564 if (gem_bo->name) { 565 vc4_bo_destroy(bo); 566 goto out; 567 } 568 569 /* If this object was partially constructed but CMA allocation 570 * had failed, just free it. Can also happen when the BO has been 571 * purged. 572 */ 573 if (!bo->base.vaddr) { 574 vc4_bo_destroy(bo); 575 goto out; 576 } 577 578 cache_list = vc4_get_cache_list_for_size(dev, gem_bo->size); 579 if (!cache_list) { 580 vc4_bo_destroy(bo); 581 goto out; 582 } 583 584 if (bo->validated_shader) { 585 kfree(bo->validated_shader->uniform_addr_offsets); 586 kfree(bo->validated_shader->texture_samples); 587 kfree(bo->validated_shader); 588 bo->validated_shader = NULL; 589 } 590 591 /* Reset madv and usecnt before adding the BO to the cache. */ 592 bo->madv = __VC4_MADV_NOTSUPP; 593 refcount_set(&bo->usecnt, 0); 594 595 bo->t_format = false; 596 bo->free_time = jiffies; 597 list_add(&bo->size_head, cache_list); 598 list_add(&bo->unref_head, &vc4->bo_cache.time_list); 599 600 vc4_bo_set_label(&bo->base.base, VC4_BO_TYPE_KERNEL_CACHE); 601 602 vc4_bo_cache_free_old(dev); 603 604 out: 605 mutex_unlock(&vc4->bo_lock); 606 } 607 608 static void vc4_bo_cache_time_work(struct work_struct *work) 609 { 610 struct vc4_dev *vc4 = 611 container_of(work, struct vc4_dev, bo_cache.time_work); 612 struct drm_device *dev = &vc4->base; 613 614 mutex_lock(&vc4->bo_lock); 615 vc4_bo_cache_free_old(dev); 616 mutex_unlock(&vc4->bo_lock); 617 } 618 619 int vc4_bo_inc_usecnt(struct vc4_bo *bo) 620 { 621 int ret; 622 623 /* Fast path: if the BO is already retained by someone, no need to 624 * check the madv status. 625 */ 626 if (refcount_inc_not_zero(&bo->usecnt)) 627 return 0; 628 629 mutex_lock(&bo->madv_lock); 630 switch (bo->madv) { 631 case VC4_MADV_WILLNEED: 632 if (!refcount_inc_not_zero(&bo->usecnt)) 633 refcount_set(&bo->usecnt, 1); 634 ret = 0; 635 break; 636 case VC4_MADV_DONTNEED: 637 /* We shouldn't use a BO marked as purgeable if at least 638 * someone else retained its content by incrementing usecnt. 639 * Luckily the BO hasn't been purged yet, but something wrong 640 * is happening here. Just throw an error instead of 641 * authorizing this use case. 642 */ 643 case __VC4_MADV_PURGED: 644 /* We can't use a purged BO. */ 645 default: 646 /* Invalid madv value. */ 647 ret = -EINVAL; 648 break; 649 } 650 mutex_unlock(&bo->madv_lock); 651 652 return ret; 653 } 654 655 void vc4_bo_dec_usecnt(struct vc4_bo *bo) 656 { 657 /* Fast path: if the BO is still retained by someone, no need to test 658 * the madv value. 659 */ 660 if (refcount_dec_not_one(&bo->usecnt)) 661 return; 662 663 mutex_lock(&bo->madv_lock); 664 if (refcount_dec_and_test(&bo->usecnt) && 665 bo->madv == VC4_MADV_DONTNEED) 666 vc4_bo_add_to_purgeable_pool(bo); 667 mutex_unlock(&bo->madv_lock); 668 } 669 670 static void vc4_bo_cache_time_timer(struct timer_list *t) 671 { 672 struct vc4_dev *vc4 = from_timer(vc4, t, bo_cache.time_timer); 673 674 schedule_work(&vc4->bo_cache.time_work); 675 } 676 677 struct dma_buf * vc4_prime_export(struct drm_gem_object *obj, int flags) 678 { 679 struct vc4_bo *bo = to_vc4_bo(obj); 680 struct dma_buf *dmabuf; 681 int ret; 682 683 if (bo->validated_shader) { 684 DRM_DEBUG("Attempting to export shader BO\n"); 685 return ERR_PTR(-EINVAL); 686 } 687 688 /* Note: as soon as the BO is exported it becomes unpurgeable, because 689 * noone ever decrements the usecnt even if the reference held by the 690 * exported BO is released. This shouldn't be a problem since we don't 691 * expect exported BOs to be marked as purgeable. 692 */ 693 ret = vc4_bo_inc_usecnt(bo); 694 if (ret) { 695 DRM_ERROR("Failed to increment BO usecnt\n"); 696 return ERR_PTR(ret); 697 } 698 699 dmabuf = drm_gem_prime_export(obj, flags); 700 if (IS_ERR(dmabuf)) 701 vc4_bo_dec_usecnt(bo); 702 703 return dmabuf; 704 } 705 706 static vm_fault_t vc4_fault(struct vm_fault *vmf) 707 { 708 struct vm_area_struct *vma = vmf->vma; 709 struct drm_gem_object *obj = vma->vm_private_data; 710 struct vc4_bo *bo = to_vc4_bo(obj); 711 712 /* The only reason we would end up here is when user-space accesses 713 * BO's memory after it's been purged. 714 */ 715 mutex_lock(&bo->madv_lock); 716 WARN_ON(bo->madv != __VC4_MADV_PURGED); 717 mutex_unlock(&bo->madv_lock); 718 719 return VM_FAULT_SIGBUS; 720 } 721 722 int vc4_mmap(struct file *filp, struct vm_area_struct *vma) 723 { 724 struct drm_gem_object *gem_obj; 725 unsigned long vm_pgoff; 726 struct vc4_bo *bo; 727 int ret; 728 729 ret = drm_gem_mmap(filp, vma); 730 if (ret) 731 return ret; 732 733 gem_obj = vma->vm_private_data; 734 bo = to_vc4_bo(gem_obj); 735 736 if (bo->validated_shader && (vma->vm_flags & VM_WRITE)) { 737 DRM_DEBUG("mmaping of shader BOs for writing not allowed.\n"); 738 return -EINVAL; 739 } 740 741 if (bo->madv != VC4_MADV_WILLNEED) { 742 DRM_DEBUG("mmaping of %s BO not allowed\n", 743 bo->madv == VC4_MADV_DONTNEED ? 744 "purgeable" : "purged"); 745 return -EINVAL; 746 } 747 748 /* 749 * Clear the VM_PFNMAP flag that was set by drm_gem_mmap(), and set the 750 * vm_pgoff (used as a fake buffer offset by DRM) to 0 as we want to map 751 * the whole buffer. 752 */ 753 vma->vm_flags &= ~VM_PFNMAP; 754 755 /* This ->vm_pgoff dance is needed to make all parties happy: 756 * - dma_mmap_wc() uses ->vm_pgoff as an offset within the allocated 757 * mem-region, hence the need to set it to zero (the value set by 758 * the DRM core is a virtual offset encoding the GEM object-id) 759 * - the mmap() core logic needs ->vm_pgoff to be restored to its 760 * initial value before returning from this function because it 761 * encodes the offset of this GEM in the dev->anon_inode pseudo-file 762 * and this information will be used when we invalidate userspace 763 * mappings with drm_vma_node_unmap() (called from vc4_gem_purge()). 764 */ 765 vm_pgoff = vma->vm_pgoff; 766 vma->vm_pgoff = 0; 767 ret = dma_mmap_wc(bo->base.base.dev->dev, vma, bo->base.vaddr, 768 bo->base.paddr, vma->vm_end - vma->vm_start); 769 vma->vm_pgoff = vm_pgoff; 770 771 if (ret) 772 drm_gem_vm_close(vma); 773 774 return ret; 775 } 776 777 int vc4_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma) 778 { 779 struct vc4_bo *bo = to_vc4_bo(obj); 780 781 if (bo->validated_shader && (vma->vm_flags & VM_WRITE)) { 782 DRM_DEBUG("mmaping of shader BOs for writing not allowed.\n"); 783 return -EINVAL; 784 } 785 786 return drm_gem_cma_prime_mmap(obj, vma); 787 } 788 789 void *vc4_prime_vmap(struct drm_gem_object *obj) 790 { 791 struct vc4_bo *bo = to_vc4_bo(obj); 792 793 if (bo->validated_shader) { 794 DRM_DEBUG("mmaping of shader BOs not allowed.\n"); 795 return ERR_PTR(-EINVAL); 796 } 797 798 return drm_gem_cma_prime_vmap(obj); 799 } 800 801 struct drm_gem_object * 802 vc4_prime_import_sg_table(struct drm_device *dev, 803 struct dma_buf_attachment *attach, 804 struct sg_table *sgt) 805 { 806 struct drm_gem_object *obj; 807 808 obj = drm_gem_cma_prime_import_sg_table(dev, attach, sgt); 809 if (IS_ERR(obj)) 810 return obj; 811 812 return obj; 813 } 814 815 static int vc4_grab_bin_bo(struct vc4_dev *vc4, struct vc4_file *vc4file) 816 { 817 int ret; 818 819 if (!vc4->v3d) 820 return -ENODEV; 821 822 if (vc4file->bin_bo_used) 823 return 0; 824 825 ret = vc4_v3d_bin_bo_get(vc4, &vc4file->bin_bo_used); 826 if (ret) 827 return ret; 828 829 return 0; 830 } 831 832 int vc4_create_bo_ioctl(struct drm_device *dev, void *data, 833 struct drm_file *file_priv) 834 { 835 struct drm_vc4_create_bo *args = data; 836 struct vc4_file *vc4file = file_priv->driver_priv; 837 struct vc4_dev *vc4 = to_vc4_dev(dev); 838 struct vc4_bo *bo = NULL; 839 int ret; 840 841 ret = vc4_grab_bin_bo(vc4, vc4file); 842 if (ret) 843 return ret; 844 845 /* 846 * We can't allocate from the BO cache, because the BOs don't 847 * get zeroed, and that might leak data between users. 848 */ 849 bo = vc4_bo_create(dev, args->size, false, VC4_BO_TYPE_V3D); 850 if (IS_ERR(bo)) 851 return PTR_ERR(bo); 852 853 bo->madv = VC4_MADV_WILLNEED; 854 855 ret = drm_gem_handle_create(file_priv, &bo->base.base, &args->handle); 856 drm_gem_object_put(&bo->base.base); 857 858 return ret; 859 } 860 861 int vc4_mmap_bo_ioctl(struct drm_device *dev, void *data, 862 struct drm_file *file_priv) 863 { 864 struct drm_vc4_mmap_bo *args = data; 865 struct drm_gem_object *gem_obj; 866 867 gem_obj = drm_gem_object_lookup(file_priv, args->handle); 868 if (!gem_obj) { 869 DRM_DEBUG("Failed to look up GEM BO %d\n", args->handle); 870 return -EINVAL; 871 } 872 873 /* The mmap offset was set up at BO allocation time. */ 874 args->offset = drm_vma_node_offset_addr(&gem_obj->vma_node); 875 876 drm_gem_object_put(gem_obj); 877 return 0; 878 } 879 880 int 881 vc4_create_shader_bo_ioctl(struct drm_device *dev, void *data, 882 struct drm_file *file_priv) 883 { 884 struct drm_vc4_create_shader_bo *args = data; 885 struct vc4_file *vc4file = file_priv->driver_priv; 886 struct vc4_dev *vc4 = to_vc4_dev(dev); 887 struct vc4_bo *bo = NULL; 888 int ret; 889 890 if (args->size == 0) 891 return -EINVAL; 892 893 if (args->size % sizeof(u64) != 0) 894 return -EINVAL; 895 896 if (args->flags != 0) { 897 DRM_INFO("Unknown flags set: 0x%08x\n", args->flags); 898 return -EINVAL; 899 } 900 901 if (args->pad != 0) { 902 DRM_INFO("Pad set: 0x%08x\n", args->pad); 903 return -EINVAL; 904 } 905 906 ret = vc4_grab_bin_bo(vc4, vc4file); 907 if (ret) 908 return ret; 909 910 bo = vc4_bo_create(dev, args->size, true, VC4_BO_TYPE_V3D_SHADER); 911 if (IS_ERR(bo)) 912 return PTR_ERR(bo); 913 914 bo->madv = VC4_MADV_WILLNEED; 915 916 if (copy_from_user(bo->base.vaddr, 917 (void __user *)(uintptr_t)args->data, 918 args->size)) { 919 ret = -EFAULT; 920 goto fail; 921 } 922 /* Clear the rest of the memory from allocating from the BO 923 * cache. 924 */ 925 memset(bo->base.vaddr + args->size, 0, 926 bo->base.base.size - args->size); 927 928 bo->validated_shader = vc4_validate_shader(&bo->base); 929 if (!bo->validated_shader) { 930 ret = -EINVAL; 931 goto fail; 932 } 933 934 /* We have to create the handle after validation, to avoid 935 * races for users to do doing things like mmap the shader BO. 936 */ 937 ret = drm_gem_handle_create(file_priv, &bo->base.base, &args->handle); 938 939 fail: 940 drm_gem_object_put(&bo->base.base); 941 942 return ret; 943 } 944 945 /** 946 * vc4_set_tiling_ioctl() - Sets the tiling modifier for a BO. 947 * @dev: DRM device 948 * @data: ioctl argument 949 * @file_priv: DRM file for this fd 950 * 951 * The tiling state of the BO decides the default modifier of an fb if 952 * no specific modifier was set by userspace, and the return value of 953 * vc4_get_tiling_ioctl() (so that userspace can treat a BO it 954 * received from dmabuf as the same tiling format as the producer 955 * used). 956 */ 957 int vc4_set_tiling_ioctl(struct drm_device *dev, void *data, 958 struct drm_file *file_priv) 959 { 960 struct drm_vc4_set_tiling *args = data; 961 struct drm_gem_object *gem_obj; 962 struct vc4_bo *bo; 963 bool t_format; 964 965 if (args->flags != 0) 966 return -EINVAL; 967 968 switch (args->modifier) { 969 case DRM_FORMAT_MOD_NONE: 970 t_format = false; 971 break; 972 case DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED: 973 t_format = true; 974 break; 975 default: 976 return -EINVAL; 977 } 978 979 gem_obj = drm_gem_object_lookup(file_priv, args->handle); 980 if (!gem_obj) { 981 DRM_DEBUG("Failed to look up GEM BO %d\n", args->handle); 982 return -ENOENT; 983 } 984 bo = to_vc4_bo(gem_obj); 985 bo->t_format = t_format; 986 987 drm_gem_object_put(gem_obj); 988 989 return 0; 990 } 991 992 /** 993 * vc4_get_tiling_ioctl() - Gets the tiling modifier for a BO. 994 * @dev: DRM device 995 * @data: ioctl argument 996 * @file_priv: DRM file for this fd 997 * 998 * Returns the tiling modifier for a BO as set by vc4_set_tiling_ioctl(). 999 */ 1000 int vc4_get_tiling_ioctl(struct drm_device *dev, void *data, 1001 struct drm_file *file_priv) 1002 { 1003 struct drm_vc4_get_tiling *args = data; 1004 struct drm_gem_object *gem_obj; 1005 struct vc4_bo *bo; 1006 1007 if (args->flags != 0 || args->modifier != 0) 1008 return -EINVAL; 1009 1010 gem_obj = drm_gem_object_lookup(file_priv, args->handle); 1011 if (!gem_obj) { 1012 DRM_DEBUG("Failed to look up GEM BO %d\n", args->handle); 1013 return -ENOENT; 1014 } 1015 bo = to_vc4_bo(gem_obj); 1016 1017 if (bo->t_format) 1018 args->modifier = DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED; 1019 else 1020 args->modifier = DRM_FORMAT_MOD_NONE; 1021 1022 drm_gem_object_put(gem_obj); 1023 1024 return 0; 1025 } 1026 1027 static void vc4_bo_cache_destroy(struct drm_device *dev, void *unused); 1028 int vc4_bo_cache_init(struct drm_device *dev) 1029 { 1030 struct vc4_dev *vc4 = to_vc4_dev(dev); 1031 int i; 1032 1033 /* Create the initial set of BO labels that the kernel will 1034 * use. This lets us avoid a bunch of string reallocation in 1035 * the kernel's draw and BO allocation paths. 1036 */ 1037 vc4->bo_labels = kcalloc(VC4_BO_TYPE_COUNT, sizeof(*vc4->bo_labels), 1038 GFP_KERNEL); 1039 if (!vc4->bo_labels) 1040 return -ENOMEM; 1041 vc4->num_labels = VC4_BO_TYPE_COUNT; 1042 1043 BUILD_BUG_ON(ARRAY_SIZE(bo_type_names) != VC4_BO_TYPE_COUNT); 1044 for (i = 0; i < VC4_BO_TYPE_COUNT; i++) 1045 vc4->bo_labels[i].name = bo_type_names[i]; 1046 1047 mutex_init(&vc4->bo_lock); 1048 1049 vc4_debugfs_add_file(dev, "bo_stats", vc4_bo_stats_debugfs, NULL); 1050 1051 INIT_LIST_HEAD(&vc4->bo_cache.time_list); 1052 1053 INIT_WORK(&vc4->bo_cache.time_work, vc4_bo_cache_time_work); 1054 timer_setup(&vc4->bo_cache.time_timer, vc4_bo_cache_time_timer, 0); 1055 1056 return drmm_add_action_or_reset(dev, vc4_bo_cache_destroy, NULL); 1057 } 1058 1059 static void vc4_bo_cache_destroy(struct drm_device *dev, void *unused) 1060 { 1061 struct vc4_dev *vc4 = to_vc4_dev(dev); 1062 int i; 1063 1064 del_timer(&vc4->bo_cache.time_timer); 1065 cancel_work_sync(&vc4->bo_cache.time_work); 1066 1067 vc4_bo_cache_purge(dev); 1068 1069 for (i = 0; i < vc4->num_labels; i++) { 1070 if (vc4->bo_labels[i].num_allocated) { 1071 DRM_ERROR("Destroying BO cache with %d %s " 1072 "BOs still allocated\n", 1073 vc4->bo_labels[i].num_allocated, 1074 vc4->bo_labels[i].name); 1075 } 1076 1077 if (is_user_label(i)) 1078 kfree(vc4->bo_labels[i].name); 1079 } 1080 kfree(vc4->bo_labels); 1081 } 1082 1083 int vc4_label_bo_ioctl(struct drm_device *dev, void *data, 1084 struct drm_file *file_priv) 1085 { 1086 struct vc4_dev *vc4 = to_vc4_dev(dev); 1087 struct drm_vc4_label_bo *args = data; 1088 char *name; 1089 struct drm_gem_object *gem_obj; 1090 int ret = 0, label; 1091 1092 if (!args->len) 1093 return -EINVAL; 1094 1095 name = strndup_user(u64_to_user_ptr(args->name), args->len + 1); 1096 if (IS_ERR(name)) 1097 return PTR_ERR(name); 1098 1099 gem_obj = drm_gem_object_lookup(file_priv, args->handle); 1100 if (!gem_obj) { 1101 DRM_ERROR("Failed to look up GEM BO %d\n", args->handle); 1102 kfree(name); 1103 return -ENOENT; 1104 } 1105 1106 mutex_lock(&vc4->bo_lock); 1107 label = vc4_get_user_label(vc4, name); 1108 if (label != -1) 1109 vc4_bo_set_label(gem_obj, label); 1110 else 1111 ret = -ENOMEM; 1112 mutex_unlock(&vc4->bo_lock); 1113 1114 drm_gem_object_put(gem_obj); 1115 1116 return ret; 1117 } 1118