1 // SPDX-License-Identifier: GPL-2.0 OR MIT 2 /* 3 * Copyright 2014-2022 Advanced Micro Devices, Inc. 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a 6 * copy of this software and associated documentation files (the "Software"), 7 * to deal in the Software without restriction, including without limitation 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 * and/or sell copies of the Software, and to permit persons to whom the 10 * Software is furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice shall be included in 13 * all copies or substantial portions of the Software. 14 * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 21 * OTHER DEALINGS IN THE SOFTWARE. 22 */ 23 24 #include <linux/mm_types.h> 25 #include <linux/slab.h> 26 #include <linux/types.h> 27 #include <linux/sched/signal.h> 28 #include <linux/sched/mm.h> 29 #include <linux/uaccess.h> 30 #include <linux/mman.h> 31 #include <linux/memory.h> 32 #include "kfd_priv.h" 33 #include "kfd_events.h" 34 #include "kfd_device_queue_manager.h" 35 #include <linux/device.h> 36 37 /* 38 * Wrapper around wait_queue_entry_t 39 */ 40 struct kfd_event_waiter { 41 wait_queue_entry_t wait; 42 struct kfd_event *event; /* Event to wait for */ 43 bool activated; /* Becomes true when event is signaled */ 44 bool event_age_enabled; /* set to true when last_event_age is non-zero */ 45 }; 46 47 /* 48 * Each signal event needs a 64-bit signal slot where the signaler will write 49 * a 1 before sending an interrupt. (This is needed because some interrupts 50 * do not contain enough spare data bits to identify an event.) 51 * We get whole pages and map them to the process VA. 52 * Individual signal events use their event_id as slot index. 53 */ 54 struct kfd_signal_page { 55 uint64_t *kernel_address; 56 uint64_t __user *user_address; 57 bool need_to_free_pages; 58 }; 59 60 static uint64_t *page_slots(struct kfd_signal_page *page) 61 { 62 return page->kernel_address; 63 } 64 65 static struct kfd_signal_page *allocate_signal_page(struct kfd_process *p) 66 { 67 void *backing_store; 68 struct kfd_signal_page *page; 69 70 page = kzalloc_obj(*page); 71 if (!page) 72 return NULL; 73 74 backing_store = (void *) __get_free_pages(GFP_KERNEL, 75 get_order(KFD_SIGNAL_EVENT_LIMIT * 8)); 76 if (!backing_store) 77 goto fail_alloc_signal_store; 78 79 /* Initialize all events to unsignaled */ 80 memset(backing_store, (uint8_t) UNSIGNALED_EVENT_SLOT, 81 KFD_SIGNAL_EVENT_LIMIT * 8); 82 83 page->kernel_address = backing_store; 84 page->need_to_free_pages = true; 85 pr_debug("Allocated new event signal page at %p, for process %p\n", 86 page, p); 87 88 return page; 89 90 fail_alloc_signal_store: 91 kfree(page); 92 return NULL; 93 } 94 95 static int allocate_event_notification_slot(struct kfd_process *p, 96 struct kfd_event *ev, 97 const int *restore_id) 98 { 99 int id; 100 101 if (!p->signal_page) { 102 p->signal_page = allocate_signal_page(p); 103 if (!p->signal_page) 104 return -ENOMEM; 105 /* Oldest user mode expects 256 event slots */ 106 p->signal_mapped_size = 256*8; 107 } 108 109 if (restore_id) { 110 id = idr_alloc(&p->event_idr, ev, *restore_id, *restore_id + 1, 111 GFP_KERNEL); 112 } else { 113 /* 114 * Compatibility with old user mode: Only use signal slots 115 * user mode has mapped, may be less than 116 * KFD_SIGNAL_EVENT_LIMIT. This also allows future increase 117 * of the event limit without breaking user mode. 118 */ 119 id = idr_alloc(&p->event_idr, ev, 0, p->signal_mapped_size / 8, 120 GFP_KERNEL); 121 } 122 if (id < 0) 123 return id; 124 125 ev->event_id = id; 126 page_slots(p->signal_page)[id] = UNSIGNALED_EVENT_SLOT; 127 128 return 0; 129 } 130 131 /* 132 * Assumes that p->event_mutex or rcu_readlock is held and of course that p is 133 * not going away. 134 */ 135 static struct kfd_event *lookup_event_by_id(struct kfd_process *p, uint32_t id) 136 { 137 return idr_find(&p->event_idr, id); 138 } 139 140 /** 141 * lookup_signaled_event_by_partial_id - Lookup signaled event from partial ID 142 * @p: Pointer to struct kfd_process 143 * @id: ID to look up 144 * @bits: Number of valid bits in @id 145 * @signal_mailbox_updated: flag indicates if FW updates signal mailbox entry 146 * 147 * Finds the first signaled event with a matching partial ID. If no 148 * matching signaled event is found, returns NULL. In that case the 149 * caller should assume that the partial ID is invalid and do an 150 * exhaustive search of all siglaned events. 151 * 152 * If multiple events with the same partial ID signal at the same 153 * time, they will be found one interrupt at a time, not necessarily 154 * in the same order the interrupts occurred. As long as the number of 155 * interrupts is correct, all signaled events will be seen by the 156 * driver. 157 */ 158 static struct kfd_event *lookup_signaled_event_by_partial_id( 159 struct kfd_process *p, uint32_t id, uint32_t bits, 160 bool signal_mailbox_updated) 161 { 162 struct kfd_event *ev; 163 164 if (!p->signal_page || id >= KFD_SIGNAL_EVENT_LIMIT) 165 return NULL; 166 167 /* Fast path for the common case that @id is not a partial ID 168 * and we only need a single lookup. 169 */ 170 if (bits > 31 || (1U << bits) >= KFD_SIGNAL_EVENT_LIMIT) { 171 if (signal_mailbox_updated && 172 page_slots(p->signal_page)[id] == UNSIGNALED_EVENT_SLOT) 173 return NULL; 174 175 return idr_find(&p->event_idr, id); 176 } 177 178 /* General case for partial IDs: Iterate over all matching IDs 179 * and find the first one that has signaled. 180 */ 181 for (ev = NULL; id < KFD_SIGNAL_EVENT_LIMIT && !ev; id += 1U << bits) { 182 if (page_slots(p->signal_page)[id] == UNSIGNALED_EVENT_SLOT) 183 continue; 184 185 ev = idr_find(&p->event_idr, id); 186 } 187 188 return ev; 189 } 190 191 static int create_signal_event(struct file *devkfd, struct kfd_process *p, 192 struct kfd_event *ev, const int *restore_id) 193 { 194 int ret; 195 196 if (p->signal_mapped_size && 197 p->signal_event_count == p->signal_mapped_size / 8) { 198 if (!p->signal_event_limit_reached) { 199 pr_debug("Signal event wasn't created because limit was reached\n"); 200 p->signal_event_limit_reached = true; 201 } 202 return -ENOSPC; 203 } 204 205 ret = allocate_event_notification_slot(p, ev, restore_id); 206 if (ret) { 207 pr_warn("Signal event wasn't created because out of kernel memory\n"); 208 return ret; 209 } 210 211 p->signal_event_count++; 212 213 ev->user_signal_address = &p->signal_page->user_address[ev->event_id]; 214 pr_debug("Signal event number %zu created with id %d, address %p\n", 215 p->signal_event_count, ev->event_id, 216 ev->user_signal_address); 217 218 return 0; 219 } 220 221 static int create_other_event(struct kfd_process *p, struct kfd_event *ev, const int *restore_id) 222 { 223 int id; 224 225 if (restore_id) 226 id = idr_alloc(&p->event_idr, ev, *restore_id, *restore_id + 1, 227 GFP_KERNEL); 228 else 229 /* Cast KFD_LAST_NONSIGNAL_EVENT to uint32_t. This allows an 230 * intentional integer overflow to -1 without a compiler 231 * warning. idr_alloc treats a negative value as "maximum 232 * signed integer". 233 */ 234 id = idr_alloc(&p->event_idr, ev, KFD_FIRST_NONSIGNAL_EVENT_ID, 235 (uint32_t)KFD_LAST_NONSIGNAL_EVENT_ID + 1, 236 GFP_KERNEL); 237 238 if (id < 0) 239 return id; 240 ev->event_id = id; 241 242 return 0; 243 } 244 245 int kfd_event_init_process(struct kfd_process *p) 246 { 247 int id; 248 249 mutex_init(&p->event_mutex); 250 idr_init(&p->event_idr); 251 p->signal_page = NULL; 252 p->signal_event_count = 1; 253 /* Allocate event ID 0. It is used for a fast path to ignore bogus events 254 * that are sent by the CP without a context ID 255 */ 256 id = idr_alloc(&p->event_idr, NULL, 0, 1, GFP_KERNEL); 257 if (id < 0) { 258 idr_destroy(&p->event_idr); 259 mutex_destroy(&p->event_mutex); 260 return id; 261 } 262 return 0; 263 } 264 265 static void destroy_event(struct kfd_process *p, struct kfd_event *ev) 266 { 267 struct kfd_event_waiter *waiter; 268 269 /* Wake up pending waiters. They will return failure */ 270 spin_lock(&ev->lock); 271 list_for_each_entry(waiter, &ev->wq.head, wait.entry) 272 WRITE_ONCE(waiter->event, NULL); 273 wake_up_all(&ev->wq); 274 spin_unlock(&ev->lock); 275 276 if (ev->type == KFD_EVENT_TYPE_SIGNAL || 277 ev->type == KFD_EVENT_TYPE_DEBUG) 278 p->signal_event_count--; 279 280 idr_remove(&p->event_idr, ev->event_id); 281 kfree_rcu(ev, rcu); 282 } 283 284 static void destroy_events(struct kfd_process *p) 285 { 286 struct kfd_event *ev; 287 uint32_t id; 288 289 idr_for_each_entry(&p->event_idr, ev, id) 290 if (ev) 291 destroy_event(p, ev); 292 idr_destroy(&p->event_idr); 293 mutex_destroy(&p->event_mutex); 294 } 295 296 /* 297 * We assume that the process is being destroyed and there is no need to 298 * unmap the pages or keep bookkeeping data in order. 299 */ 300 static void shutdown_signal_page(struct kfd_process *p) 301 { 302 struct kfd_signal_page *page = p->signal_page; 303 304 if (page) { 305 if (page->need_to_free_pages) 306 free_pages((unsigned long)page->kernel_address, 307 get_order(KFD_SIGNAL_EVENT_LIMIT * 8)); 308 kfree(page); 309 } 310 } 311 312 void kfd_event_free_process(struct kfd_process *p) 313 { 314 destroy_events(p); 315 shutdown_signal_page(p); 316 } 317 318 static bool event_can_be_gpu_signaled(const struct kfd_event *ev) 319 { 320 return ev->type == KFD_EVENT_TYPE_SIGNAL || 321 ev->type == KFD_EVENT_TYPE_DEBUG; 322 } 323 324 static bool event_can_be_cpu_signaled(const struct kfd_event *ev) 325 { 326 return ev->type == KFD_EVENT_TYPE_SIGNAL; 327 } 328 329 static int kfd_event_page_set(struct kfd_process *p, void *kernel_address, 330 uint64_t size, uint64_t user_handle) 331 { 332 struct kfd_signal_page *page; 333 334 if (p->signal_page) 335 return -EBUSY; 336 337 if (size < KFD_SIGNAL_EVENT_LIMIT * 8) { 338 pr_err("Event page size %llu is too small, need at least %lu bytes\n", 339 size, (unsigned long)(KFD_SIGNAL_EVENT_LIMIT * 8)); 340 return -EINVAL; 341 } 342 343 page = kzalloc_obj(*page); 344 if (!page) 345 return -ENOMEM; 346 347 /* Initialize all events to unsignaled */ 348 memset(kernel_address, (uint8_t) UNSIGNALED_EVENT_SLOT, 349 KFD_SIGNAL_EVENT_LIMIT * 8); 350 351 page->kernel_address = kernel_address; 352 353 p->signal_page = page; 354 p->signal_mapped_size = size; 355 p->signal_handle = user_handle; 356 return 0; 357 } 358 359 int kfd_kmap_event_page(struct kfd_process *p, uint64_t event_page_offset) 360 { 361 struct kfd_node *kfd; 362 struct kfd_process_device *pdd; 363 void *mem, *kern_addr; 364 uint64_t size; 365 int err = 0; 366 367 if (p->signal_page) { 368 pr_err("Event page is already set\n"); 369 return -EINVAL; 370 } 371 372 pdd = kfd_process_device_data_by_id(p, GET_GPU_ID(event_page_offset)); 373 if (!pdd) { 374 pr_err("Getting device by id failed in %s\n", __func__); 375 return -EINVAL; 376 } 377 kfd = pdd->dev; 378 379 pdd = kfd_bind_process_to_device(kfd, p); 380 if (IS_ERR(pdd)) 381 return PTR_ERR(pdd); 382 383 mem = kfd_process_device_translate_handle(pdd, 384 GET_IDR_HANDLE(event_page_offset)); 385 if (!mem) { 386 pr_err("Can't find BO, offset is 0x%llx\n", event_page_offset); 387 return -EINVAL; 388 } 389 390 err = amdgpu_amdkfd_gpuvm_map_gtt_bo_to_kernel(mem, &kern_addr, &size); 391 if (err) { 392 pr_err("Failed to map event page to kernel\n"); 393 return err; 394 } 395 396 err = kfd_event_page_set(p, kern_addr, size, event_page_offset); 397 if (err) { 398 pr_err("Failed to set event page\n"); 399 amdgpu_amdkfd_gpuvm_unmap_gtt_bo_from_kernel(mem); 400 return err; 401 } 402 return err; 403 } 404 405 int kfd_event_create(struct file *devkfd, struct kfd_process *p, 406 uint32_t event_type, bool auto_reset, uint32_t node_id, 407 uint32_t *event_id, uint32_t *event_trigger_data, 408 uint64_t *event_page_offset, uint32_t *event_slot_index) 409 { 410 int ret = 0; 411 struct kfd_event *ev = kzalloc_obj(*ev); 412 413 if (!ev) 414 return -ENOMEM; 415 416 ev->type = event_type; 417 ev->auto_reset = auto_reset; 418 ev->signaled = false; 419 420 spin_lock_init(&ev->lock); 421 init_waitqueue_head(&ev->wq); 422 423 *event_page_offset = 0; 424 425 mutex_lock(&p->event_mutex); 426 427 switch (event_type) { 428 case KFD_EVENT_TYPE_SIGNAL: 429 case KFD_EVENT_TYPE_DEBUG: 430 ret = create_signal_event(devkfd, p, ev, NULL); 431 if (!ret) { 432 *event_page_offset = KFD_MMAP_TYPE_EVENTS; 433 *event_slot_index = ev->event_id; 434 } 435 break; 436 default: 437 ret = create_other_event(p, ev, NULL); 438 break; 439 } 440 441 if (!ret) { 442 *event_id = ev->event_id; 443 *event_trigger_data = ev->event_id; 444 ev->event_age = 1; 445 } else { 446 kfree(ev); 447 } 448 449 mutex_unlock(&p->event_mutex); 450 451 return ret; 452 } 453 454 int kfd_criu_restore_event(struct file *devkfd, 455 struct kfd_process *p, 456 uint8_t __user *user_priv_ptr, 457 uint64_t *priv_data_offset, 458 uint64_t max_priv_data_size) 459 { 460 struct kfd_criu_event_priv_data *ev_priv; 461 struct kfd_event *ev = NULL; 462 int ret = 0; 463 464 ev_priv = kmalloc_obj(*ev_priv); 465 if (!ev_priv) 466 return -ENOMEM; 467 468 ev = kzalloc_obj(*ev); 469 if (!ev) { 470 ret = -ENOMEM; 471 goto exit; 472 } 473 474 if (*priv_data_offset + sizeof(*ev_priv) > max_priv_data_size) { 475 ret = -EINVAL; 476 goto exit; 477 } 478 479 ret = copy_from_user(ev_priv, user_priv_ptr + *priv_data_offset, sizeof(*ev_priv)); 480 if (ret) { 481 ret = -EFAULT; 482 goto exit; 483 } 484 *priv_data_offset += sizeof(*ev_priv); 485 486 if (ev_priv->user_handle) { 487 ret = kfd_kmap_event_page(p, ev_priv->user_handle); 488 if (ret) 489 goto exit; 490 } 491 492 ev->type = ev_priv->type; 493 ev->auto_reset = ev_priv->auto_reset; 494 ev->signaled = ev_priv->signaled; 495 496 spin_lock_init(&ev->lock); 497 init_waitqueue_head(&ev->wq); 498 499 mutex_lock(&p->event_mutex); 500 switch (ev->type) { 501 case KFD_EVENT_TYPE_SIGNAL: 502 case KFD_EVENT_TYPE_DEBUG: 503 ret = create_signal_event(devkfd, p, ev, &ev_priv->event_id); 504 break; 505 case KFD_EVENT_TYPE_MEMORY: 506 memcpy(&ev->memory_exception_data, 507 &ev_priv->memory_exception_data, 508 sizeof(struct kfd_hsa_memory_exception_data)); 509 510 ret = create_other_event(p, ev, &ev_priv->event_id); 511 break; 512 case KFD_EVENT_TYPE_HW_EXCEPTION: 513 memcpy(&ev->hw_exception_data, 514 &ev_priv->hw_exception_data, 515 sizeof(struct kfd_hsa_hw_exception_data)); 516 517 ret = create_other_event(p, ev, &ev_priv->event_id); 518 break; 519 } 520 mutex_unlock(&p->event_mutex); 521 522 exit: 523 if (ret) 524 kfree(ev); 525 526 kfree(ev_priv); 527 528 return ret; 529 } 530 531 int kfd_criu_checkpoint_events(struct kfd_process *p, 532 uint8_t __user *user_priv_data, 533 uint64_t *priv_data_offset) 534 { 535 struct kfd_criu_event_priv_data *ev_privs; 536 int i = 0; 537 int ret = 0; 538 struct kfd_event *ev; 539 uint32_t ev_id; 540 541 uint32_t num_events = kfd_get_num_events(p); 542 543 if (!num_events) 544 return 0; 545 546 ev_privs = kvzalloc(num_events * sizeof(*ev_privs), GFP_KERNEL); 547 if (!ev_privs) 548 return -ENOMEM; 549 550 551 idr_for_each_entry(&p->event_idr, ev, ev_id) { 552 struct kfd_criu_event_priv_data *ev_priv; 553 554 /* 555 * Currently, all events have same size of private_data, but the current ioctl's 556 * and CRIU plugin supports private_data of variable sizes 557 */ 558 ev_priv = &ev_privs[i]; 559 560 ev_priv->object_type = KFD_CRIU_OBJECT_TYPE_EVENT; 561 562 /* We store the user_handle with the first event */ 563 if (i == 0 && p->signal_page) 564 ev_priv->user_handle = p->signal_handle; 565 566 ev_priv->event_id = ev->event_id; 567 ev_priv->auto_reset = ev->auto_reset; 568 ev_priv->type = ev->type; 569 ev_priv->signaled = ev->signaled; 570 571 if (ev_priv->type == KFD_EVENT_TYPE_MEMORY) 572 memcpy(&ev_priv->memory_exception_data, 573 &ev->memory_exception_data, 574 sizeof(struct kfd_hsa_memory_exception_data)); 575 else if (ev_priv->type == KFD_EVENT_TYPE_HW_EXCEPTION) 576 memcpy(&ev_priv->hw_exception_data, 577 &ev->hw_exception_data, 578 sizeof(struct kfd_hsa_hw_exception_data)); 579 580 pr_debug("Checkpointed event[%d] id = 0x%08x auto_reset = %x type = %x signaled = %x\n", 581 i, 582 ev_priv->event_id, 583 ev_priv->auto_reset, 584 ev_priv->type, 585 ev_priv->signaled); 586 i++; 587 } 588 589 ret = copy_to_user(user_priv_data + *priv_data_offset, 590 ev_privs, num_events * sizeof(*ev_privs)); 591 if (ret) { 592 pr_err("Failed to copy events priv to user\n"); 593 ret = -EFAULT; 594 } 595 596 *priv_data_offset += num_events * sizeof(*ev_privs); 597 598 kvfree(ev_privs); 599 return ret; 600 } 601 602 int kfd_get_num_events(struct kfd_process *p) 603 { 604 struct kfd_event *ev; 605 uint32_t id; 606 u32 num_events = 0; 607 608 idr_for_each_entry(&p->event_idr, ev, id) 609 num_events++; 610 611 return num_events; 612 } 613 614 /* Assumes that p is current. */ 615 int kfd_event_destroy(struct kfd_process *p, uint32_t event_id) 616 { 617 struct kfd_event *ev; 618 int ret = 0; 619 620 mutex_lock(&p->event_mutex); 621 622 ev = lookup_event_by_id(p, event_id); 623 624 if (ev) 625 destroy_event(p, ev); 626 else 627 ret = -EINVAL; 628 629 mutex_unlock(&p->event_mutex); 630 return ret; 631 } 632 633 static void set_event(struct kfd_event *ev) 634 { 635 struct kfd_event_waiter *waiter; 636 637 /* Auto reset if the list is non-empty and we're waking 638 * someone. waitqueue_active is safe here because we're 639 * protected by the ev->lock, which is also held when 640 * updating the wait queues in kfd_wait_on_events. 641 */ 642 ev->signaled = !ev->auto_reset || !waitqueue_active(&ev->wq); 643 if (!(++ev->event_age)) { 644 /* Never wrap back to reserved/default event age 0/1 */ 645 ev->event_age = 2; 646 WARN_ONCE(1, "event_age wrap back!"); 647 } 648 649 list_for_each_entry(waiter, &ev->wq.head, wait.entry) 650 WRITE_ONCE(waiter->activated, true); 651 652 wake_up_all(&ev->wq); 653 } 654 655 /* Assumes that p is current. */ 656 int kfd_set_event(struct kfd_process *p, uint32_t event_id) 657 { 658 int ret = 0; 659 struct kfd_event *ev; 660 661 rcu_read_lock(); 662 663 ev = lookup_event_by_id(p, event_id); 664 if (!ev) { 665 ret = -EINVAL; 666 goto unlock_rcu; 667 } 668 spin_lock(&ev->lock); 669 670 if (event_can_be_cpu_signaled(ev)) 671 set_event(ev); 672 else 673 ret = -EINVAL; 674 675 spin_unlock(&ev->lock); 676 unlock_rcu: 677 rcu_read_unlock(); 678 return ret; 679 } 680 681 static void reset_event(struct kfd_event *ev) 682 { 683 ev->signaled = false; 684 } 685 686 /* Assumes that p is current. */ 687 int kfd_reset_event(struct kfd_process *p, uint32_t event_id) 688 { 689 int ret = 0; 690 struct kfd_event *ev; 691 692 rcu_read_lock(); 693 694 ev = lookup_event_by_id(p, event_id); 695 if (!ev) { 696 ret = -EINVAL; 697 goto unlock_rcu; 698 } 699 spin_lock(&ev->lock); 700 701 if (event_can_be_cpu_signaled(ev)) 702 reset_event(ev); 703 else 704 ret = -EINVAL; 705 706 spin_unlock(&ev->lock); 707 unlock_rcu: 708 rcu_read_unlock(); 709 return ret; 710 711 } 712 713 static void acknowledge_signal(struct kfd_process *p, struct kfd_event *ev) 714 { 715 WRITE_ONCE(page_slots(p->signal_page)[ev->event_id], UNSIGNALED_EVENT_SLOT); 716 } 717 718 static void set_event_from_interrupt(struct kfd_process *p, 719 struct kfd_event *ev) 720 { 721 if (ev && event_can_be_gpu_signaled(ev)) { 722 acknowledge_signal(p, ev); 723 spin_lock(&ev->lock); 724 set_event(ev); 725 spin_unlock(&ev->lock); 726 } 727 } 728 729 void kfd_signal_event_interrupt(u32 pasid, uint32_t partial_id, 730 uint32_t valid_id_bits, bool signal_mailbox_updated) 731 { 732 struct kfd_event *ev = NULL; 733 734 /* 735 * Because we are called from arbitrary context (workqueue) as opposed 736 * to process context, kfd_process could attempt to exit while we are 737 * running so the lookup function increments the process ref count. 738 */ 739 struct kfd_process *p = kfd_lookup_process_by_pasid(pasid, NULL); 740 741 if (!p) 742 return; /* Presumably process exited. */ 743 744 rcu_read_lock(); 745 746 if (valid_id_bits) 747 ev = lookup_signaled_event_by_partial_id(p, partial_id, 748 valid_id_bits, 749 signal_mailbox_updated); 750 if (ev) { 751 set_event_from_interrupt(p, ev); 752 } else if (p->signal_page) { 753 /* 754 * Partial ID lookup failed. Assume that the event ID 755 * in the interrupt payload was invalid and do an 756 * exhaustive search of signaled events. 757 */ 758 uint64_t *slots = page_slots(p->signal_page); 759 uint32_t id; 760 761 if (valid_id_bits) 762 pr_debug_ratelimited("Partial ID invalid: %u (%u valid bits)\n", 763 partial_id, valid_id_bits); 764 765 if (p->signal_event_count < KFD_SIGNAL_EVENT_LIMIT / 64) { 766 /* With relatively few events, it's faster to 767 * iterate over the event IDR 768 */ 769 idr_for_each_entry(&p->event_idr, ev, id) { 770 if (id >= KFD_SIGNAL_EVENT_LIMIT) 771 break; 772 773 if (READ_ONCE(slots[id]) != UNSIGNALED_EVENT_SLOT) 774 set_event_from_interrupt(p, ev); 775 } 776 } else { 777 /* With relatively many events, it's faster to 778 * iterate over the signal slots and lookup 779 * only signaled events from the IDR. 780 */ 781 for (id = 1; id < KFD_SIGNAL_EVENT_LIMIT; id++) 782 if (READ_ONCE(slots[id]) != UNSIGNALED_EVENT_SLOT) { 783 ev = lookup_event_by_id(p, id); 784 set_event_from_interrupt(p, ev); 785 } 786 } 787 } 788 789 rcu_read_unlock(); 790 kfd_unref_process(p); 791 } 792 793 static struct kfd_event_waiter *alloc_event_waiters(uint32_t num_events) 794 { 795 struct kfd_event_waiter *event_waiters; 796 uint32_t i; 797 798 event_waiters = kzalloc_objs(struct kfd_event_waiter, num_events); 799 if (!event_waiters) 800 return NULL; 801 802 for (i = 0; i < num_events; i++) 803 init_wait(&event_waiters[i].wait); 804 805 return event_waiters; 806 } 807 808 static int init_event_waiter(struct kfd_process *p, 809 struct kfd_event_waiter *waiter, 810 struct kfd_event_data *event_data) 811 { 812 struct kfd_event *ev = lookup_event_by_id(p, event_data->event_id); 813 814 if (!ev) 815 return -EINVAL; 816 817 spin_lock(&ev->lock); 818 waiter->event = ev; 819 waiter->activated = ev->signaled; 820 ev->signaled = ev->signaled && !ev->auto_reset; 821 822 /* last_event_age = 0 reserved for backward compatible */ 823 if (waiter->event->type == KFD_EVENT_TYPE_SIGNAL && 824 event_data->signal_event_data.last_event_age) { 825 waiter->event_age_enabled = true; 826 if (ev->event_age != event_data->signal_event_data.last_event_age) 827 waiter->activated = true; 828 } 829 830 if (!waiter->activated) 831 add_wait_queue(&ev->wq, &waiter->wait); 832 spin_unlock(&ev->lock); 833 834 return 0; 835 } 836 837 /* test_event_condition - Test condition of events being waited for 838 * @all: Return completion only if all events have signaled 839 * @num_events: Number of events to wait for 840 * @event_waiters: Array of event waiters, one per event 841 * 842 * Returns KFD_IOC_WAIT_RESULT_COMPLETE if all (or one) event(s) have 843 * signaled. Returns KFD_IOC_WAIT_RESULT_TIMEOUT if no (or not all) 844 * events have signaled. Returns KFD_IOC_WAIT_RESULT_FAIL if any of 845 * the events have been destroyed. 846 */ 847 static uint32_t test_event_condition(bool all, uint32_t num_events, 848 struct kfd_event_waiter *event_waiters) 849 { 850 uint32_t i; 851 uint32_t activated_count = 0; 852 853 for (i = 0; i < num_events; i++) { 854 if (!READ_ONCE(event_waiters[i].event)) 855 return KFD_IOC_WAIT_RESULT_FAIL; 856 857 if (READ_ONCE(event_waiters[i].activated)) { 858 if (!all) 859 return KFD_IOC_WAIT_RESULT_COMPLETE; 860 861 activated_count++; 862 } 863 } 864 865 return activated_count == num_events ? 866 KFD_IOC_WAIT_RESULT_COMPLETE : KFD_IOC_WAIT_RESULT_TIMEOUT; 867 } 868 869 /* 870 * Copy event specific data, if defined. 871 * Currently only memory exception events have additional data to copy to user 872 */ 873 static int copy_signaled_event_data(uint32_t num_events, 874 struct kfd_event_waiter *event_waiters, 875 struct kfd_event_data __user *data) 876 { 877 void *src; 878 void __user *dst; 879 struct kfd_event_waiter *waiter; 880 struct kfd_event *event; 881 uint32_t i, size = 0; 882 883 for (i = 0; i < num_events; i++) { 884 waiter = &event_waiters[i]; 885 event = waiter->event; 886 if (!event) 887 return -EINVAL; /* event was destroyed */ 888 if (waiter->activated) { 889 if (event->type == KFD_EVENT_TYPE_MEMORY) { 890 dst = &data[i].memory_exception_data; 891 src = &event->memory_exception_data; 892 size = sizeof(struct kfd_hsa_memory_exception_data); 893 } else if (event->type == KFD_EVENT_TYPE_HW_EXCEPTION) { 894 dst = &data[i].memory_exception_data; 895 src = &event->hw_exception_data; 896 size = sizeof(struct kfd_hsa_hw_exception_data); 897 } else if (event->type == KFD_EVENT_TYPE_SIGNAL && 898 waiter->event_age_enabled) { 899 dst = &data[i].signal_event_data.last_event_age; 900 src = &event->event_age; 901 size = sizeof(u64); 902 } 903 if (size && copy_to_user(dst, src, size)) 904 return -EFAULT; 905 } 906 } 907 908 return 0; 909 } 910 911 static long user_timeout_to_jiffies(uint32_t user_timeout_ms) 912 { 913 if (user_timeout_ms == KFD_EVENT_TIMEOUT_IMMEDIATE) 914 return 0; 915 916 if (user_timeout_ms == KFD_EVENT_TIMEOUT_INFINITE) 917 return MAX_SCHEDULE_TIMEOUT; 918 919 /* 920 * msecs_to_jiffies interprets all values above 2^31-1 as infinite, 921 * but we consider them finite. 922 * This hack is wrong, but nobody is likely to notice. 923 */ 924 user_timeout_ms = min_t(uint32_t, user_timeout_ms, 0x7FFFFFFF); 925 926 return msecs_to_jiffies(user_timeout_ms) + 1; 927 } 928 929 static void free_waiters(uint32_t num_events, struct kfd_event_waiter *waiters, 930 bool undo_auto_reset) 931 { 932 uint32_t i; 933 934 for (i = 0; i < num_events; i++) 935 if (waiters[i].event) { 936 spin_lock(&waiters[i].event->lock); 937 remove_wait_queue(&waiters[i].event->wq, 938 &waiters[i].wait); 939 if (undo_auto_reset && waiters[i].activated && 940 waiters[i].event && waiters[i].event->auto_reset) 941 set_event(waiters[i].event); 942 spin_unlock(&waiters[i].event->lock); 943 } 944 945 kfree(waiters); 946 } 947 948 int kfd_wait_on_events(struct kfd_process *p, 949 uint32_t num_events, void __user *data, 950 bool all, uint32_t *user_timeout_ms, 951 uint32_t *wait_result) 952 { 953 struct kfd_event_data __user *events = 954 (struct kfd_event_data __user *) data; 955 uint32_t i; 956 int ret = 0; 957 958 struct kfd_event_waiter *event_waiters = NULL; 959 long timeout = user_timeout_to_jiffies(*user_timeout_ms); 960 961 event_waiters = alloc_event_waiters(num_events); 962 if (!event_waiters) { 963 ret = -ENOMEM; 964 goto out; 965 } 966 967 /* Use p->event_mutex here to protect against concurrent creation and 968 * destruction of events while we initialize event_waiters. 969 */ 970 mutex_lock(&p->event_mutex); 971 972 for (i = 0; i < num_events; i++) { 973 struct kfd_event_data event_data; 974 975 if (copy_from_user(&event_data, &events[i], 976 sizeof(struct kfd_event_data))) { 977 ret = -EFAULT; 978 goto out_unlock; 979 } 980 981 ret = init_event_waiter(p, &event_waiters[i], &event_data); 982 if (ret) 983 goto out_unlock; 984 } 985 986 /* Check condition once. */ 987 *wait_result = test_event_condition(all, num_events, event_waiters); 988 if (*wait_result == KFD_IOC_WAIT_RESULT_COMPLETE) { 989 ret = copy_signaled_event_data(num_events, 990 event_waiters, events); 991 goto out_unlock; 992 } else if (WARN_ON(*wait_result == KFD_IOC_WAIT_RESULT_FAIL)) { 993 /* This should not happen. Events shouldn't be 994 * destroyed while we're holding the event_mutex 995 */ 996 goto out_unlock; 997 } 998 999 mutex_unlock(&p->event_mutex); 1000 1001 while (true) { 1002 if (fatal_signal_pending(current)) { 1003 ret = -EINTR; 1004 break; 1005 } 1006 1007 if (signal_pending(current)) { 1008 ret = -ERESTARTSYS; 1009 if (*user_timeout_ms != KFD_EVENT_TIMEOUT_IMMEDIATE && 1010 *user_timeout_ms != KFD_EVENT_TIMEOUT_INFINITE) 1011 *user_timeout_ms = jiffies_to_msecs( 1012 max(0l, timeout-1)); 1013 break; 1014 } 1015 1016 /* Set task state to interruptible sleep before 1017 * checking wake-up conditions. A concurrent wake-up 1018 * will put the task back into runnable state. In that 1019 * case schedule_timeout will not put the task to 1020 * sleep and we'll get a chance to re-check the 1021 * updated conditions almost immediately. Otherwise, 1022 * this race condition would lead to a soft hang or a 1023 * very long sleep. 1024 */ 1025 set_current_state(TASK_INTERRUPTIBLE); 1026 1027 *wait_result = test_event_condition(all, num_events, 1028 event_waiters); 1029 if (*wait_result != KFD_IOC_WAIT_RESULT_TIMEOUT) 1030 break; 1031 1032 if (timeout <= 0) 1033 break; 1034 1035 timeout = schedule_timeout(timeout); 1036 } 1037 __set_current_state(TASK_RUNNING); 1038 1039 mutex_lock(&p->event_mutex); 1040 /* copy_signaled_event_data may sleep. So this has to happen 1041 * after the task state is set back to RUNNING. 1042 * 1043 * The event may also have been destroyed after signaling. So 1044 * copy_signaled_event_data also must confirm that the event 1045 * still exists. Therefore this must be under the p->event_mutex 1046 * which is also held when events are destroyed. 1047 */ 1048 if (!ret && *wait_result == KFD_IOC_WAIT_RESULT_COMPLETE) 1049 ret = copy_signaled_event_data(num_events, 1050 event_waiters, events); 1051 1052 out_unlock: 1053 free_waiters(num_events, event_waiters, ret == -ERESTARTSYS); 1054 mutex_unlock(&p->event_mutex); 1055 out: 1056 if (ret) 1057 *wait_result = KFD_IOC_WAIT_RESULT_FAIL; 1058 else if (*wait_result == KFD_IOC_WAIT_RESULT_FAIL) 1059 ret = -EIO; 1060 1061 return ret; 1062 } 1063 1064 int kfd_event_mmap(struct kfd_process *p, struct vm_area_struct *vma) 1065 { 1066 unsigned long pfn; 1067 struct kfd_signal_page *page; 1068 int ret; 1069 1070 /* check required size doesn't exceed the allocated size */ 1071 if (get_order(KFD_SIGNAL_EVENT_LIMIT * 8) < 1072 get_order(vma->vm_end - vma->vm_start)) { 1073 pr_err("Event page mmap requested illegal size\n"); 1074 return -EINVAL; 1075 } 1076 1077 page = p->signal_page; 1078 if (!page) { 1079 /* Probably KFD bug, but mmap is user-accessible. */ 1080 pr_debug("Signal page could not be found\n"); 1081 return -EINVAL; 1082 } 1083 1084 pfn = __pa(page->kernel_address); 1085 pfn >>= PAGE_SHIFT; 1086 1087 vm_flags_set(vma, VM_IO | VM_DONTCOPY | VM_DONTEXPAND | VM_NORESERVE 1088 | VM_DONTDUMP | VM_PFNMAP); 1089 1090 pr_debug("Mapping signal page\n"); 1091 pr_debug(" start user address == 0x%08lx\n", vma->vm_start); 1092 pr_debug(" end user address == 0x%08lx\n", vma->vm_end); 1093 pr_debug(" pfn == 0x%016lX\n", pfn); 1094 pr_debug(" vm_flags == 0x%08lX\n", vma->vm_flags); 1095 pr_debug(" size == 0x%08lX\n", 1096 vma->vm_end - vma->vm_start); 1097 1098 page->user_address = (uint64_t __user *)vma->vm_start; 1099 1100 /* mapping the page to user process */ 1101 ret = remap_pfn_range(vma, vma->vm_start, pfn, 1102 vma->vm_end - vma->vm_start, vma->vm_page_prot); 1103 if (!ret) 1104 p->signal_mapped_size = vma->vm_end - vma->vm_start; 1105 1106 return ret; 1107 } 1108 1109 /* 1110 * Assumes that p is not going away. 1111 */ 1112 static void lookup_events_by_type_and_signal(struct kfd_process *p, 1113 int type, void *event_data) 1114 { 1115 struct kfd_hsa_memory_exception_data *ev_data; 1116 struct kfd_event *ev; 1117 uint32_t id; 1118 bool send_signal = true; 1119 1120 ev_data = (struct kfd_hsa_memory_exception_data *) event_data; 1121 1122 rcu_read_lock(); 1123 1124 id = KFD_FIRST_NONSIGNAL_EVENT_ID; 1125 idr_for_each_entry_continue(&p->event_idr, ev, id) 1126 if (ev->type == type) { 1127 send_signal = false; 1128 dev_dbg(kfd_device, 1129 "Event found: id %X type %d", 1130 ev->event_id, ev->type); 1131 spin_lock(&ev->lock); 1132 set_event(ev); 1133 if (ev->type == KFD_EVENT_TYPE_MEMORY && ev_data) 1134 ev->memory_exception_data = *ev_data; 1135 spin_unlock(&ev->lock); 1136 } 1137 1138 if (type == KFD_EVENT_TYPE_MEMORY) { 1139 dev_warn(kfd_device, 1140 "Sending SIGSEGV to process pid %d", 1141 p->lead_thread->pid); 1142 send_sig(SIGSEGV, p->lead_thread, 0); 1143 } 1144 1145 /* Send SIGTERM no event of type "type" has been found*/ 1146 if (send_signal) { 1147 if (send_sigterm) { 1148 dev_warn(kfd_device, 1149 "Sending SIGTERM to process pid %d", 1150 p->lead_thread->pid); 1151 send_sig(SIGTERM, p->lead_thread, 0); 1152 } else { 1153 dev_err(kfd_device, 1154 "Process pid %d got unhandled exception", 1155 p->lead_thread->pid); 1156 } 1157 } 1158 1159 rcu_read_unlock(); 1160 } 1161 1162 void kfd_signal_hw_exception_event(u32 pasid) 1163 { 1164 /* 1165 * Because we are called from arbitrary context (workqueue) as opposed 1166 * to process context, kfd_process could attempt to exit while we are 1167 * running so the lookup function increments the process ref count. 1168 */ 1169 struct kfd_process *p = kfd_lookup_process_by_pasid(pasid, NULL); 1170 1171 if (!p) 1172 return; /* Presumably process exited. */ 1173 1174 lookup_events_by_type_and_signal(p, KFD_EVENT_TYPE_HW_EXCEPTION, NULL); 1175 kfd_unref_process(p); 1176 } 1177 1178 void kfd_signal_vm_fault_event_with_userptr(struct kfd_process *p, uint64_t gpu_va) 1179 { 1180 struct kfd_process_device *pdd; 1181 struct kfd_hsa_memory_exception_data exception_data; 1182 int i; 1183 1184 memset(&exception_data, 0, sizeof(exception_data)); 1185 exception_data.va = gpu_va; 1186 exception_data.failure.NotPresent = 1; 1187 1188 // Send VM seg fault to all kfd process device 1189 for (i = 0; i < p->n_pdds; i++) { 1190 pdd = p->pdds[i]; 1191 exception_data.gpu_id = pdd->user_gpu_id; 1192 kfd_evict_process_device(pdd); 1193 kfd_signal_vm_fault_event(pdd, NULL, &exception_data); 1194 } 1195 } 1196 1197 void kfd_signal_vm_fault_event(struct kfd_process_device *pdd, 1198 struct kfd_vm_fault_info *info, 1199 struct kfd_hsa_memory_exception_data *data) 1200 { 1201 struct kfd_event *ev; 1202 uint32_t id; 1203 struct kfd_process *p = pdd->process; 1204 struct kfd_hsa_memory_exception_data memory_exception_data; 1205 int user_gpu_id; 1206 1207 user_gpu_id = kfd_process_get_user_gpu_id(p, pdd->dev->id); 1208 if (unlikely(user_gpu_id == -EINVAL)) { 1209 WARN_ONCE(1, "Could not get user_gpu_id from dev->id:%x\n", 1210 pdd->dev->id); 1211 return; 1212 } 1213 1214 /* SoC15 chips and onwards will pass in data from now on. */ 1215 if (!data) { 1216 memset(&memory_exception_data, 0, sizeof(memory_exception_data)); 1217 memory_exception_data.gpu_id = user_gpu_id; 1218 memory_exception_data.failure.imprecise = true; 1219 1220 /* Set failure reason */ 1221 if (info) { 1222 memory_exception_data.va = (info->page_addr) << 1223 PAGE_SHIFT; 1224 memory_exception_data.failure.NotPresent = 1225 info->prot_valid ? 1 : 0; 1226 memory_exception_data.failure.NoExecute = 1227 info->prot_exec ? 1 : 0; 1228 memory_exception_data.failure.ReadOnly = 1229 info->prot_write ? 1 : 0; 1230 memory_exception_data.failure.imprecise = 0; 1231 } 1232 } 1233 1234 rcu_read_lock(); 1235 1236 id = KFD_FIRST_NONSIGNAL_EVENT_ID; 1237 idr_for_each_entry_continue(&p->event_idr, ev, id) 1238 if (ev->type == KFD_EVENT_TYPE_MEMORY) { 1239 spin_lock(&ev->lock); 1240 ev->memory_exception_data = data ? *data : 1241 memory_exception_data; 1242 set_event(ev); 1243 spin_unlock(&ev->lock); 1244 } 1245 1246 rcu_read_unlock(); 1247 } 1248 1249 void kfd_signal_reset_event(struct kfd_node *dev) 1250 { 1251 struct kfd_hsa_hw_exception_data hw_exception_data; 1252 struct kfd_hsa_memory_exception_data memory_exception_data; 1253 struct kfd_process *p; 1254 struct kfd_event *ev; 1255 unsigned int temp; 1256 uint32_t id, idx; 1257 int reset_cause = atomic_read(&dev->sram_ecc_flag) ? 1258 KFD_HW_EXCEPTION_ECC : 1259 KFD_HW_EXCEPTION_GPU_HANG; 1260 1261 /* Whole gpu reset caused by GPU hang and memory is lost */ 1262 memset(&hw_exception_data, 0, sizeof(hw_exception_data)); 1263 hw_exception_data.memory_lost = 1; 1264 hw_exception_data.reset_cause = reset_cause; 1265 1266 memset(&memory_exception_data, 0, sizeof(memory_exception_data)); 1267 memory_exception_data.ErrorType = KFD_MEM_ERR_SRAM_ECC; 1268 memory_exception_data.failure.imprecise = true; 1269 1270 idx = srcu_read_lock(&kfd_processes_srcu); 1271 hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) { 1272 int user_gpu_id = kfd_process_get_user_gpu_id(p, dev->id); 1273 struct kfd_process_device *pdd = kfd_get_process_device_data(dev, p); 1274 1275 if (unlikely(user_gpu_id == -EINVAL)) { 1276 WARN_ONCE(1, "Could not get user_gpu_id from dev->id:%x\n", dev->id); 1277 continue; 1278 } 1279 1280 if (unlikely(!pdd)) { 1281 WARN_ONCE(1, "Could not get device data from process pid:%d\n", 1282 p->lead_thread->pid); 1283 continue; 1284 } 1285 1286 if (dev->dqm->detect_hang_count && !pdd->has_reset_queue) 1287 continue; 1288 1289 if (dev->dqm->detect_hang_count) { 1290 struct amdgpu_task_info *ti; 1291 struct amdgpu_fpriv *drv_priv; 1292 1293 if (unlikely(amdgpu_file_to_fpriv(pdd->drm_file, &drv_priv))) { 1294 WARN_ONCE(1, "Could not get vm for device %x from pid:%d\n", 1295 dev->id, p->lead_thread->pid); 1296 continue; 1297 } 1298 1299 ti = amdgpu_vm_get_task_info_vm(&drv_priv->vm); 1300 if (ti) { 1301 dev_err(dev->adev->dev, 1302 "Queues reset on process %s tid %d thread %s pid %d\n", 1303 ti->process_name, ti->tgid, ti->task.comm, ti->task.pid); 1304 amdgpu_vm_put_task_info(ti); 1305 } 1306 } 1307 1308 rcu_read_lock(); 1309 1310 id = KFD_FIRST_NONSIGNAL_EVENT_ID; 1311 idr_for_each_entry_continue(&p->event_idr, ev, id) { 1312 if (ev->type == KFD_EVENT_TYPE_HW_EXCEPTION) { 1313 spin_lock(&ev->lock); 1314 ev->hw_exception_data = hw_exception_data; 1315 ev->hw_exception_data.gpu_id = user_gpu_id; 1316 set_event(ev); 1317 spin_unlock(&ev->lock); 1318 } 1319 if (ev->type == KFD_EVENT_TYPE_MEMORY && 1320 reset_cause == KFD_HW_EXCEPTION_ECC) { 1321 spin_lock(&ev->lock); 1322 ev->memory_exception_data = memory_exception_data; 1323 ev->memory_exception_data.gpu_id = user_gpu_id; 1324 set_event(ev); 1325 spin_unlock(&ev->lock); 1326 } 1327 } 1328 1329 rcu_read_unlock(); 1330 } 1331 srcu_read_unlock(&kfd_processes_srcu, idx); 1332 } 1333 1334 void kfd_signal_poison_consumed_event(struct kfd_node *dev, u32 pasid) 1335 { 1336 struct kfd_process *p = kfd_lookup_process_by_pasid(pasid, NULL); 1337 struct kfd_hsa_memory_exception_data memory_exception_data; 1338 struct kfd_hsa_hw_exception_data hw_exception_data; 1339 struct kfd_event *ev; 1340 uint32_t id = KFD_FIRST_NONSIGNAL_EVENT_ID; 1341 int user_gpu_id; 1342 1343 if (!p) { 1344 dev_warn(dev->adev->dev, "Not find process with pasid:%d\n", pasid); 1345 return; /* Presumably process exited. */ 1346 } 1347 1348 user_gpu_id = kfd_process_get_user_gpu_id(p, dev->id); 1349 if (unlikely(user_gpu_id == -EINVAL)) { 1350 WARN_ONCE(1, "Could not get user_gpu_id from dev->id:%x\n", dev->id); 1351 kfd_unref_process(p); 1352 return; 1353 } 1354 1355 memset(&hw_exception_data, 0, sizeof(hw_exception_data)); 1356 hw_exception_data.gpu_id = user_gpu_id; 1357 hw_exception_data.memory_lost = 1; 1358 hw_exception_data.reset_cause = KFD_HW_EXCEPTION_ECC; 1359 1360 memset(&memory_exception_data, 0, sizeof(memory_exception_data)); 1361 memory_exception_data.ErrorType = KFD_MEM_ERR_POISON_CONSUMED; 1362 memory_exception_data.gpu_id = user_gpu_id; 1363 memory_exception_data.failure.imprecise = true; 1364 1365 rcu_read_lock(); 1366 1367 idr_for_each_entry_continue(&p->event_idr, ev, id) { 1368 if (ev->type == KFD_EVENT_TYPE_HW_EXCEPTION) { 1369 spin_lock(&ev->lock); 1370 ev->hw_exception_data = hw_exception_data; 1371 set_event(ev); 1372 spin_unlock(&ev->lock); 1373 } 1374 1375 if (ev->type == KFD_EVENT_TYPE_MEMORY) { 1376 spin_lock(&ev->lock); 1377 ev->memory_exception_data = memory_exception_data; 1378 set_event(ev); 1379 spin_unlock(&ev->lock); 1380 } 1381 } 1382 1383 dev_warn(dev->adev->dev, "Send SIGBUS to process %s(pasid:%d)\n", 1384 p->lead_thread->comm, pasid); 1385 rcu_read_unlock(); 1386 1387 /* user application will handle SIGBUS signal */ 1388 send_sig(SIGBUS, p->lead_thread, 0); 1389 1390 kfd_unref_process(p); 1391 } 1392 1393 /* signal KFD_EVENT_TYPE_SIGNAL events from process p 1394 * send signal SIGBUS to correspondent user space process 1395 */ 1396 void kfd_signal_process_terminate_event(struct kfd_process *p) 1397 { 1398 struct kfd_event *ev; 1399 u32 id; 1400 1401 rcu_read_lock(); 1402 1403 /* iterate from id 1 for KFD_EVENT_TYPE_SIGNAL events */ 1404 id = 1; 1405 idr_for_each_entry_continue(&p->event_idr, ev, id) 1406 if (ev->type == KFD_EVENT_TYPE_SIGNAL) { 1407 spin_lock(&ev->lock); 1408 set_event(ev); 1409 spin_unlock(&ev->lock); 1410 } 1411 1412 /* Send SIGBUS to p->lead_thread */ 1413 dev_notice(kfd_device, 1414 "Sending SIGBUS to process %d", 1415 p->lead_thread->pid); 1416 1417 send_sig(SIGBUS, p->lead_thread, 0); 1418 1419 rcu_read_unlock(); 1420 } 1421