2 * Copyright 2014 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
23 #include <linux/mutex.h>
24 #include <linux/log2.h>
25 #include <linux/sched.h>
26 #include <linux/sched/mm.h>
27 #include <linux/sched/task.h>
28 #include <linux/mmu_context.h>
29 #include <linux/slab.h>
30 #include <linux/amd-iommu.h>
31 #include <linux/notifier.h>
32 #include <linux/compat.h>
33 #include <linux/mman.h>
34 #include <linux/file.h>
35 #include <linux/pm_runtime.h>
36 #include "amdgpu_amdkfd.h"
42 #include "kfd_device_queue_manager.h"
43 #include "kfd_dbgmgr.h"
44 #include "kfd_iommu.h"
47 * List of struct kfd_process (field kfd_process).
48 * Unique/indexed by mm_struct*
50 DEFINE_HASHTABLE(kfd_processes_table, KFD_PROCESS_TABLE_SIZE);
51 static DEFINE_MUTEX(kfd_processes_mutex);
53 DEFINE_SRCU(kfd_processes_srcu);
55 /* For process termination handling */
56 static struct workqueue_struct *kfd_process_wq;
58 /* Ordered, single-threaded workqueue for restoring evicted
59 * processes. Restoring multiple processes concurrently under memory
60 * pressure can lead to processes blocking each other from validating
61 * their BOs and result in a live-lock situation where processes
62 * remain evicted indefinitely.
64 static struct workqueue_struct *kfd_restore_wq;
66 static struct kfd_process *find_process(const struct task_struct *thread);
67 static void kfd_process_ref_release(struct kref *ref);
68 static struct kfd_process *create_process(const struct task_struct *thread);
69 static int kfd_process_init_cwsr_apu(struct kfd_process *p, struct file *filep);
71 static void evict_process_worker(struct work_struct *work);
72 static void restore_process_worker(struct work_struct *work);
74 struct kfd_procfs_tree {
78 static struct kfd_procfs_tree procfs;
81 * Structure for SDMA activity tracking
83 struct kfd_sdma_activity_handler_workarea {
84 struct work_struct sdma_activity_work;
85 struct kfd_process_device *pdd;
86 uint64_t sdma_activity_counter;
89 struct temp_sdma_queue_list {
90 uint64_t __user *rptr;
92 unsigned int queue_id;
93 struct list_head list;
96 static void kfd_sdma_activity_worker(struct work_struct *work)
98 struct kfd_sdma_activity_handler_workarea *workarea;
99 struct kfd_process_device *pdd;
101 struct mm_struct *mm;
103 struct qcm_process_device *qpd;
104 struct device_queue_manager *dqm;
106 struct temp_sdma_queue_list sdma_q_list;
107 struct temp_sdma_queue_list *sdma_q, *next;
109 workarea = container_of(work, struct kfd_sdma_activity_handler_workarea,
122 * Total SDMA activity is current SDMA activity + past SDMA activity
123 * Past SDMA count is stored in pdd.
124 * To get the current activity counters for all active SDMA queues,
125 * we loop over all SDMA queues and get their counts from user-space.
127 * We cannot call get_user() with dqm_lock held as it can cause
128 * a circular lock dependency situation. To read the SDMA stats,
129 * we need to do the following:
131 * 1. Create a temporary list of SDMA queue nodes from the qpd->queues_list,
132 * with dqm_lock/dqm_unlock().
133 * 2. Call get_user() for each node in temporary list without dqm_lock.
134 * Save the SDMA count for each node and also add the count to the total
135 * SDMA count counter.
136 * Its possible, during this step, a few SDMA queue nodes got deleted
137 * from the qpd->queues_list.
138 * 3. Do a second pass over qpd->queues_list to check if any nodes got deleted.
139 * If any node got deleted, its SDMA count would be captured in the sdma
140 * past activity counter. So subtract the SDMA counter stored in step 2
141 * for this node from the total SDMA count.
143 INIT_LIST_HEAD(&sdma_q_list.list);
146 * Create the temp list of all SDMA queues
150 list_for_each_entry(q, &qpd->queues_list, list) {
151 if ((q->properties.type != KFD_QUEUE_TYPE_SDMA) &&
152 (q->properties.type != KFD_QUEUE_TYPE_SDMA_XGMI))
155 sdma_q = kzalloc(sizeof(struct temp_sdma_queue_list), GFP_KERNEL);
161 INIT_LIST_HEAD(&sdma_q->list);
162 sdma_q->rptr = (uint64_t __user *)q->properties.read_ptr;
163 sdma_q->queue_id = q->properties.queue_id;
164 list_add_tail(&sdma_q->list, &sdma_q_list.list);
168 * If the temp list is empty, then no SDMA queues nodes were found in
169 * qpd->queues_list. Return the past activity count as the total sdma
172 if (list_empty(&sdma_q_list.list)) {
173 workarea->sdma_activity_counter = pdd->sdma_past_activity_counter;
181 * Get the usage count for each SDMA queue in temp_list.
183 mm = get_task_mm(pdd->process->lead_thread);
189 list_for_each_entry(sdma_q, &sdma_q_list.list, list) {
191 ret = read_sdma_queue_counter(sdma_q->rptr, &val);
193 pr_debug("Failed to read SDMA queue active counter for queue id: %d",
196 sdma_q->sdma_val = val;
197 workarea->sdma_activity_counter += val;
201 kthread_unuse_mm(mm);
205 * Do a second iteration over qpd_queues_list to check if any SDMA
206 * nodes got deleted while fetching SDMA counter.
210 workarea->sdma_activity_counter += pdd->sdma_past_activity_counter;
212 list_for_each_entry(q, &qpd->queues_list, list) {
213 if (list_empty(&sdma_q_list.list))
216 if ((q->properties.type != KFD_QUEUE_TYPE_SDMA) &&
217 (q->properties.type != KFD_QUEUE_TYPE_SDMA_XGMI))
220 list_for_each_entry_safe(sdma_q, next, &sdma_q_list.list, list) {
221 if (((uint64_t __user *)q->properties.read_ptr == sdma_q->rptr) &&
222 (sdma_q->queue_id == q->properties.queue_id)) {
223 list_del(&sdma_q->list);
233 * If temp list is not empty, it implies some queues got deleted
234 * from qpd->queues_list during SDMA usage read. Subtract the SDMA
235 * count for each node from the total SDMA count.
237 list_for_each_entry_safe(sdma_q, next, &sdma_q_list.list, list) {
238 workarea->sdma_activity_counter -= sdma_q->sdma_val;
239 list_del(&sdma_q->list);
246 list_for_each_entry_safe(sdma_q, next, &sdma_q_list.list, list) {
247 list_del(&sdma_q->list);
253 * @kfd_get_cu_occupancy() - Collect number of waves in-flight on this device
254 * by current process. Translates acquired wave count into number of compute units
257 * @atr: Handle of attribute that allows reporting of wave count. The attribute
258 * handle encapsulates GPU device it is associated with, thereby allowing collection
259 * of waves in flight, etc
261 * @buffer: Handle of user provided buffer updated with wave count
263 * Return: Number of bytes written to user buffer or an error value
265 static int kfd_get_cu_occupancy(struct attribute *attr, char *buffer)
269 int max_waves_per_cu;
270 struct kfd_dev *dev = NULL;
271 struct kfd_process *proc = NULL;
272 struct kfd_process_device *pdd = NULL;
274 pdd = container_of(attr, struct kfd_process_device, attr_cu_occupancy);
276 if (dev->kfd2kgd->get_cu_occupancy == NULL)
281 if (pdd->qpd.queue_count == 0) {
282 pr_debug("Gpu-Id: %d has no active queues for process %d\n",
283 dev->id, proc->pasid);
284 return snprintf(buffer, PAGE_SIZE, "%d\n", cu_cnt);
287 /* Collect wave count from device if it supports */
289 max_waves_per_cu = 0;
290 dev->kfd2kgd->get_cu_occupancy(dev->kgd, proc->pasid, &wave_cnt,
293 /* Translate wave count to number of compute units */
294 cu_cnt = (wave_cnt + (max_waves_per_cu - 1)) / max_waves_per_cu;
295 return snprintf(buffer, PAGE_SIZE, "%d\n", cu_cnt);
298 static ssize_t kfd_procfs_show(struct kobject *kobj, struct attribute *attr,
301 if (strcmp(attr->name, "pasid") == 0) {
302 struct kfd_process *p = container_of(attr, struct kfd_process,
305 return snprintf(buffer, PAGE_SIZE, "%d\n", p->pasid);
306 } else if (strncmp(attr->name, "vram_", 5) == 0) {
307 struct kfd_process_device *pdd = container_of(attr, struct kfd_process_device,
309 return snprintf(buffer, PAGE_SIZE, "%llu\n", READ_ONCE(pdd->vram_usage));
310 } else if (strncmp(attr->name, "sdma_", 5) == 0) {
311 struct kfd_process_device *pdd = container_of(attr, struct kfd_process_device,
313 struct kfd_sdma_activity_handler_workarea sdma_activity_work_handler;
315 INIT_WORK(&sdma_activity_work_handler.sdma_activity_work,
316 kfd_sdma_activity_worker);
318 sdma_activity_work_handler.pdd = pdd;
319 sdma_activity_work_handler.sdma_activity_counter = 0;
321 schedule_work(&sdma_activity_work_handler.sdma_activity_work);
323 flush_work(&sdma_activity_work_handler.sdma_activity_work);
325 return snprintf(buffer, PAGE_SIZE, "%llu\n",
326 (sdma_activity_work_handler.sdma_activity_counter)/
327 SDMA_ACTIVITY_DIVISOR);
329 pr_err("Invalid attribute");
336 static void kfd_procfs_kobj_release(struct kobject *kobj)
341 static const struct sysfs_ops kfd_procfs_ops = {
342 .show = kfd_procfs_show,
345 static struct kobj_type procfs_type = {
346 .release = kfd_procfs_kobj_release,
347 .sysfs_ops = &kfd_procfs_ops,
350 void kfd_procfs_init(void)
354 procfs.kobj = kfd_alloc_struct(procfs.kobj);
358 ret = kobject_init_and_add(procfs.kobj, &procfs_type,
359 &kfd_device->kobj, "proc");
361 pr_warn("Could not create procfs proc folder");
362 /* If we fail to create the procfs, clean up */
363 kfd_procfs_shutdown();
367 void kfd_procfs_shutdown(void)
370 kobject_del(procfs.kobj);
371 kobject_put(procfs.kobj);
376 static ssize_t kfd_procfs_queue_show(struct kobject *kobj,
377 struct attribute *attr, char *buffer)
379 struct queue *q = container_of(kobj, struct queue, kobj);
381 if (!strcmp(attr->name, "size"))
382 return snprintf(buffer, PAGE_SIZE, "%llu",
383 q->properties.queue_size);
384 else if (!strcmp(attr->name, "type"))
385 return snprintf(buffer, PAGE_SIZE, "%d", q->properties.type);
386 else if (!strcmp(attr->name, "gpuid"))
387 return snprintf(buffer, PAGE_SIZE, "%u", q->device->id);
389 pr_err("Invalid attribute");
394 static ssize_t kfd_procfs_stats_show(struct kobject *kobj,
395 struct attribute *attr, char *buffer)
397 if (strcmp(attr->name, "evicted_ms") == 0) {
398 struct kfd_process_device *pdd = container_of(attr,
399 struct kfd_process_device,
401 uint64_t evict_jiffies;
403 evict_jiffies = atomic64_read(&pdd->evict_duration_counter);
405 return snprintf(buffer,
408 jiffies64_to_msecs(evict_jiffies));
410 /* Sysfs handle that gets CU occupancy is per device */
411 } else if (strcmp(attr->name, "cu_occupancy") == 0) {
412 return kfd_get_cu_occupancy(attr, buffer);
414 pr_err("Invalid attribute");
420 static struct attribute attr_queue_size = {
422 .mode = KFD_SYSFS_FILE_MODE
425 static struct attribute attr_queue_type = {
427 .mode = KFD_SYSFS_FILE_MODE
430 static struct attribute attr_queue_gpuid = {
432 .mode = KFD_SYSFS_FILE_MODE
435 static struct attribute *procfs_queue_attrs[] = {
442 static const struct sysfs_ops procfs_queue_ops = {
443 .show = kfd_procfs_queue_show,
446 static struct kobj_type procfs_queue_type = {
447 .sysfs_ops = &procfs_queue_ops,
448 .default_attrs = procfs_queue_attrs,
451 static const struct sysfs_ops procfs_stats_ops = {
452 .show = kfd_procfs_stats_show,
455 static struct attribute *procfs_stats_attrs[] = {
459 static struct kobj_type procfs_stats_type = {
460 .sysfs_ops = &procfs_stats_ops,
461 .default_attrs = procfs_stats_attrs,
464 int kfd_procfs_add_queue(struct queue *q)
466 struct kfd_process *proc;
469 if (!q || !q->process)
473 /* Create proc/<pid>/queues/<queue id> folder */
474 if (!proc->kobj_queues)
476 ret = kobject_init_and_add(&q->kobj, &procfs_queue_type,
477 proc->kobj_queues, "%u", q->properties.queue_id);
479 pr_warn("Creating proc/<pid>/queues/%u failed",
480 q->properties.queue_id);
481 kobject_put(&q->kobj);
488 static int kfd_sysfs_create_file(struct kfd_process *p, struct attribute *attr,
493 if (!p || !attr || !name)
497 attr->mode = KFD_SYSFS_FILE_MODE;
498 sysfs_attr_init(attr);
500 ret = sysfs_create_file(p->kobj, attr);
505 static int kfd_procfs_add_sysfs_stats(struct kfd_process *p)
509 char stats_dir_filename[MAX_SYSFS_FILENAME_LEN];
518 * Create sysfs files for each GPU:
519 * - proc/<pid>/stats_<gpuid>/
520 * - proc/<pid>/stats_<gpuid>/evicted_ms
521 * - proc/<pid>/stats_<gpuid>/cu_occupancy
523 for (i = 0; i < p->n_pdds; i++) {
524 struct kfd_process_device *pdd = p->pdds[i];
525 struct kobject *kobj_stats;
527 snprintf(stats_dir_filename, MAX_SYSFS_FILENAME_LEN,
528 "stats_%u", pdd->dev->id);
529 kobj_stats = kfd_alloc_struct(kobj_stats);
533 ret = kobject_init_and_add(kobj_stats,
539 pr_warn("Creating KFD proc/stats_%s folder failed",
541 kobject_put(kobj_stats);
545 pdd->kobj_stats = kobj_stats;
546 pdd->attr_evict.name = "evicted_ms";
547 pdd->attr_evict.mode = KFD_SYSFS_FILE_MODE;
548 sysfs_attr_init(&pdd->attr_evict);
549 ret = sysfs_create_file(kobj_stats, &pdd->attr_evict);
551 pr_warn("Creating eviction stats for gpuid %d failed",
554 /* Add sysfs file to report compute unit occupancy */
555 if (pdd->dev->kfd2kgd->get_cu_occupancy != NULL) {
556 pdd->attr_cu_occupancy.name = "cu_occupancy";
557 pdd->attr_cu_occupancy.mode = KFD_SYSFS_FILE_MODE;
558 sysfs_attr_init(&pdd->attr_cu_occupancy);
559 ret = sysfs_create_file(kobj_stats,
560 &pdd->attr_cu_occupancy);
562 pr_warn("Creating %s failed for gpuid: %d",
563 pdd->attr_cu_occupancy.name,
572 static int kfd_procfs_add_sysfs_files(struct kfd_process *p)
584 * Create sysfs files for each GPU:
585 * - proc/<pid>/vram_<gpuid>
586 * - proc/<pid>/sdma_<gpuid>
588 for (i = 0; i < p->n_pdds; i++) {
589 struct kfd_process_device *pdd = p->pdds[i];
591 snprintf(pdd->vram_filename, MAX_SYSFS_FILENAME_LEN, "vram_%u",
593 ret = kfd_sysfs_create_file(p, &pdd->attr_vram, pdd->vram_filename);
595 pr_warn("Creating vram usage for gpu id %d failed",
598 snprintf(pdd->sdma_filename, MAX_SYSFS_FILENAME_LEN, "sdma_%u",
600 ret = kfd_sysfs_create_file(p, &pdd->attr_sdma, pdd->sdma_filename);
602 pr_warn("Creating sdma usage for gpu id %d failed",
609 void kfd_procfs_del_queue(struct queue *q)
614 kobject_del(&q->kobj);
615 kobject_put(&q->kobj);
618 int kfd_process_create_wq(void)
621 kfd_process_wq = alloc_workqueue("kfd_process_wq", 0, 0);
623 kfd_restore_wq = alloc_ordered_workqueue("kfd_restore_wq", 0);
625 if (!kfd_process_wq || !kfd_restore_wq) {
626 kfd_process_destroy_wq();
633 void kfd_process_destroy_wq(void)
635 if (kfd_process_wq) {
636 destroy_workqueue(kfd_process_wq);
637 kfd_process_wq = NULL;
639 if (kfd_restore_wq) {
640 destroy_workqueue(kfd_restore_wq);
641 kfd_restore_wq = NULL;
645 static void kfd_process_free_gpuvm(struct kgd_mem *mem,
646 struct kfd_process_device *pdd)
648 struct kfd_dev *dev = pdd->dev;
650 amdgpu_amdkfd_gpuvm_unmap_memory_from_gpu(dev->kgd, mem, pdd->vm);
651 amdgpu_amdkfd_gpuvm_free_memory_of_gpu(dev->kgd, mem, NULL);
654 /* kfd_process_alloc_gpuvm - Allocate GPU VM for the KFD process
655 * This function should be only called right after the process
656 * is created and when kfd_processes_mutex is still being held
657 * to avoid concurrency. Because of that exclusiveness, we do
658 * not need to take p->mutex.
660 static int kfd_process_alloc_gpuvm(struct kfd_process_device *pdd,
661 uint64_t gpu_va, uint32_t size,
662 uint32_t flags, void **kptr)
664 struct kfd_dev *kdev = pdd->dev;
665 struct kgd_mem *mem = NULL;
669 err = amdgpu_amdkfd_gpuvm_alloc_memory_of_gpu(kdev->kgd, gpu_va, size,
670 pdd->vm, &mem, NULL, flags);
674 err = amdgpu_amdkfd_gpuvm_map_memory_to_gpu(kdev->kgd, mem, pdd->vm);
678 err = amdgpu_amdkfd_gpuvm_sync_memory(kdev->kgd, mem, true);
680 pr_debug("Sync memory failed, wait interrupted by user signal\n");
681 goto sync_memory_failed;
684 /* Create an obj handle so kfd_process_device_remove_obj_handle
685 * will take care of the bo removal when the process finishes.
686 * We do not need to take p->mutex, because the process is just
687 * created and the ioctls have not had the chance to run.
689 handle = kfd_process_device_create_obj_handle(pdd, mem);
697 err = amdgpu_amdkfd_gpuvm_map_gtt_bo_to_kernel(kdev->kgd,
698 (struct kgd_mem *)mem, kptr, NULL);
700 pr_debug("Map GTT BO to kernel failed\n");
701 goto free_obj_handle;
708 kfd_process_device_remove_obj_handle(pdd, handle);
711 kfd_process_free_gpuvm(mem, pdd);
715 amdgpu_amdkfd_gpuvm_free_memory_of_gpu(kdev->kgd, mem, NULL);
721 /* kfd_process_device_reserve_ib_mem - Reserve memory inside the
722 * process for IB usage The memory reserved is for KFD to submit
723 * IB to AMDGPU from kernel. If the memory is reserved
724 * successfully, ib_kaddr will have the CPU/kernel
725 * address. Check ib_kaddr before accessing the memory.
727 static int kfd_process_device_reserve_ib_mem(struct kfd_process_device *pdd)
729 struct qcm_process_device *qpd = &pdd->qpd;
730 uint32_t flags = KFD_IOC_ALLOC_MEM_FLAGS_GTT |
731 KFD_IOC_ALLOC_MEM_FLAGS_NO_SUBSTITUTE |
732 KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE |
733 KFD_IOC_ALLOC_MEM_FLAGS_EXECUTABLE;
737 if (qpd->ib_kaddr || !qpd->ib_base)
740 /* ib_base is only set for dGPU */
741 ret = kfd_process_alloc_gpuvm(pdd, qpd->ib_base, PAGE_SIZE, flags,
746 qpd->ib_kaddr = kaddr;
751 struct kfd_process *kfd_create_process(struct file *filep)
753 struct kfd_process *process;
754 struct task_struct *thread = current;
758 return ERR_PTR(-EINVAL);
760 /* Only the pthreads threading model is supported. */
761 if (thread->group_leader->mm != thread->mm)
762 return ERR_PTR(-EINVAL);
765 * take kfd processes mutex before starting of process creation
766 * so there won't be a case where two threads of the same process
767 * create two kfd_process structures
769 mutex_lock(&kfd_processes_mutex);
771 /* A prior open of /dev/kfd could have already created the process. */
772 process = find_process(thread);
774 pr_debug("Process already found\n");
776 process = create_process(thread);
780 ret = kfd_process_init_cwsr_apu(process, filep);
787 process->kobj = kfd_alloc_struct(process->kobj);
788 if (!process->kobj) {
789 pr_warn("Creating procfs kobject failed");
792 ret = kobject_init_and_add(process->kobj, &procfs_type,
794 (int)process->lead_thread->pid);
796 pr_warn("Creating procfs pid directory failed");
797 kobject_put(process->kobj);
801 process->attr_pasid.name = "pasid";
802 process->attr_pasid.mode = KFD_SYSFS_FILE_MODE;
803 sysfs_attr_init(&process->attr_pasid);
804 ret = sysfs_create_file(process->kobj, &process->attr_pasid);
806 pr_warn("Creating pasid for pid %d failed",
807 (int)process->lead_thread->pid);
809 process->kobj_queues = kobject_create_and_add("queues",
811 if (!process->kobj_queues)
812 pr_warn("Creating KFD proc/queues folder failed");
814 ret = kfd_procfs_add_sysfs_stats(process);
816 pr_warn("Creating sysfs stats dir for pid %d failed",
817 (int)process->lead_thread->pid);
819 ret = kfd_procfs_add_sysfs_files(process);
821 pr_warn("Creating sysfs usage file for pid %d failed",
822 (int)process->lead_thread->pid);
825 if (!IS_ERR(process))
826 kref_get(&process->ref);
827 mutex_unlock(&kfd_processes_mutex);
832 hash_del_rcu(&process->kfd_processes);
833 mutex_unlock(&kfd_processes_mutex);
834 synchronize_srcu(&kfd_processes_srcu);
835 /* kfd_process_free_notifier will trigger the cleanup */
836 mmu_notifier_put(&process->mmu_notifier);
840 struct kfd_process *kfd_get_process(const struct task_struct *thread)
842 struct kfd_process *process;
845 return ERR_PTR(-EINVAL);
847 /* Only the pthreads threading model is supported. */
848 if (thread->group_leader->mm != thread->mm)
849 return ERR_PTR(-EINVAL);
851 process = find_process(thread);
853 return ERR_PTR(-EINVAL);
858 static struct kfd_process *find_process_by_mm(const struct mm_struct *mm)
860 struct kfd_process *process;
862 hash_for_each_possible_rcu(kfd_processes_table, process,
863 kfd_processes, (uintptr_t)mm)
864 if (process->mm == mm)
870 static struct kfd_process *find_process(const struct task_struct *thread)
872 struct kfd_process *p;
875 idx = srcu_read_lock(&kfd_processes_srcu);
876 p = find_process_by_mm(thread->mm);
877 srcu_read_unlock(&kfd_processes_srcu, idx);
882 void kfd_unref_process(struct kfd_process *p)
884 kref_put(&p->ref, kfd_process_ref_release);
888 static void kfd_process_device_free_bos(struct kfd_process_device *pdd)
890 struct kfd_process *p = pdd->process;
896 * Remove all handles from idr and release appropriate
897 * local memory object
899 idr_for_each_entry(&pdd->alloc_idr, mem, id) {
901 for (i = 0; i < p->n_pdds; i++) {
902 struct kfd_process_device *peer_pdd = p->pdds[i];
906 amdgpu_amdkfd_gpuvm_unmap_memory_from_gpu(
907 peer_pdd->dev->kgd, mem, peer_pdd->vm);
910 amdgpu_amdkfd_gpuvm_free_memory_of_gpu(pdd->dev->kgd, mem, NULL);
911 kfd_process_device_remove_obj_handle(pdd, id);
915 static void kfd_process_free_outstanding_kfd_bos(struct kfd_process *p)
919 for (i = 0; i < p->n_pdds; i++)
920 kfd_process_device_free_bos(p->pdds[i]);
923 static void kfd_process_destroy_pdds(struct kfd_process *p)
927 for (i = 0; i < p->n_pdds; i++) {
928 struct kfd_process_device *pdd = p->pdds[i];
930 pr_debug("Releasing pdd (topology id %d) for process (pasid 0x%x)\n",
931 pdd->dev->id, p->pasid);
934 amdgpu_amdkfd_gpuvm_release_process_vm(
935 pdd->dev->kgd, pdd->vm);
939 if (pdd->qpd.cwsr_kaddr && !pdd->qpd.cwsr_base)
940 free_pages((unsigned long)pdd->qpd.cwsr_kaddr,
941 get_order(KFD_CWSR_TBA_TMA_SIZE));
943 kfree(pdd->qpd.doorbell_bitmap);
944 idr_destroy(&pdd->alloc_idr);
946 kfd_free_process_doorbells(pdd->dev, pdd->doorbell_index);
949 * before destroying pdd, make sure to report availability
952 if (pdd->runtime_inuse) {
953 pm_runtime_mark_last_busy(pdd->dev->ddev->dev);
954 pm_runtime_put_autosuspend(pdd->dev->ddev->dev);
955 pdd->runtime_inuse = false;
964 /* No process locking is needed in this function, because the process
965 * is not findable any more. We must assume that no other thread is
966 * using it any more, otherwise we couldn't safely free the process
967 * structure in the end.
969 static void kfd_process_wq_release(struct work_struct *work)
971 struct kfd_process *p = container_of(work, struct kfd_process,
975 /* Remove the procfs files */
977 sysfs_remove_file(p->kobj, &p->attr_pasid);
978 kobject_del(p->kobj_queues);
979 kobject_put(p->kobj_queues);
980 p->kobj_queues = NULL;
982 for (i = 0; i < p->n_pdds; i++) {
983 struct kfd_process_device *pdd = p->pdds[i];
985 sysfs_remove_file(p->kobj, &pdd->attr_vram);
986 sysfs_remove_file(p->kobj, &pdd->attr_sdma);
987 sysfs_remove_file(p->kobj, &pdd->attr_evict);
988 if (pdd->dev->kfd2kgd->get_cu_occupancy != NULL)
989 sysfs_remove_file(p->kobj, &pdd->attr_cu_occupancy);
990 kobject_del(pdd->kobj_stats);
991 kobject_put(pdd->kobj_stats);
992 pdd->kobj_stats = NULL;
995 kobject_del(p->kobj);
996 kobject_put(p->kobj);
1000 kfd_iommu_unbind_process(p);
1002 kfd_process_free_outstanding_kfd_bos(p);
1004 kfd_process_destroy_pdds(p);
1005 dma_fence_put(p->ef);
1007 kfd_event_free_process(p);
1009 kfd_pasid_free(p->pasid);
1010 mutex_destroy(&p->mutex);
1012 put_task_struct(p->lead_thread);
1017 static void kfd_process_ref_release(struct kref *ref)
1019 struct kfd_process *p = container_of(ref, struct kfd_process, ref);
1021 INIT_WORK(&p->release_work, kfd_process_wq_release);
1022 queue_work(kfd_process_wq, &p->release_work);
1025 static struct mmu_notifier *kfd_process_alloc_notifier(struct mm_struct *mm)
1027 int idx = srcu_read_lock(&kfd_processes_srcu);
1028 struct kfd_process *p = find_process_by_mm(mm);
1030 srcu_read_unlock(&kfd_processes_srcu, idx);
1032 return p ? &p->mmu_notifier : ERR_PTR(-ESRCH);
1035 static void kfd_process_free_notifier(struct mmu_notifier *mn)
1037 kfd_unref_process(container_of(mn, struct kfd_process, mmu_notifier));
1040 static void kfd_process_notifier_release(struct mmu_notifier *mn,
1041 struct mm_struct *mm)
1043 struct kfd_process *p;
1047 * The kfd_process structure can not be free because the
1048 * mmu_notifier srcu is read locked
1050 p = container_of(mn, struct kfd_process, mmu_notifier);
1051 if (WARN_ON(p->mm != mm))
1054 mutex_lock(&kfd_processes_mutex);
1055 hash_del_rcu(&p->kfd_processes);
1056 mutex_unlock(&kfd_processes_mutex);
1057 synchronize_srcu(&kfd_processes_srcu);
1059 cancel_delayed_work_sync(&p->eviction_work);
1060 cancel_delayed_work_sync(&p->restore_work);
1062 mutex_lock(&p->mutex);
1064 /* Iterate over all process device data structures and if the
1065 * pdd is in debug mode, we should first force unregistration,
1066 * then we will be able to destroy the queues
1068 for (i = 0; i < p->n_pdds; i++) {
1069 struct kfd_dev *dev = p->pdds[i]->dev;
1071 mutex_lock(kfd_get_dbgmgr_mutex());
1072 if (dev && dev->dbgmgr && dev->dbgmgr->pasid == p->pasid) {
1073 if (!kfd_dbgmgr_unregister(dev->dbgmgr, p)) {
1074 kfd_dbgmgr_destroy(dev->dbgmgr);
1078 mutex_unlock(kfd_get_dbgmgr_mutex());
1081 kfd_process_dequeue_from_all_devices(p);
1082 pqm_uninit(&p->pqm);
1084 /* Indicate to other users that MM is no longer valid */
1086 /* Signal the eviction fence after user mode queues are
1087 * destroyed. This allows any BOs to be freed without
1088 * triggering pointless evictions or waiting for fences.
1090 dma_fence_signal(p->ef);
1092 mutex_unlock(&p->mutex);
1094 mmu_notifier_put(&p->mmu_notifier);
1097 static const struct mmu_notifier_ops kfd_process_mmu_notifier_ops = {
1098 .release = kfd_process_notifier_release,
1099 .alloc_notifier = kfd_process_alloc_notifier,
1100 .free_notifier = kfd_process_free_notifier,
1103 static int kfd_process_init_cwsr_apu(struct kfd_process *p, struct file *filep)
1105 unsigned long offset;
1108 for (i = 0; i < p->n_pdds; i++) {
1109 struct kfd_dev *dev = p->pdds[i]->dev;
1110 struct qcm_process_device *qpd = &p->pdds[i]->qpd;
1112 if (!dev->cwsr_enabled || qpd->cwsr_kaddr || qpd->cwsr_base)
1115 offset = KFD_MMAP_TYPE_RESERVED_MEM | KFD_MMAP_GPU_ID(dev->id);
1116 qpd->tba_addr = (int64_t)vm_mmap(filep, 0,
1117 KFD_CWSR_TBA_TMA_SIZE, PROT_READ | PROT_EXEC,
1118 MAP_SHARED, offset);
1120 if (IS_ERR_VALUE(qpd->tba_addr)) {
1121 int err = qpd->tba_addr;
1123 pr_err("Failure to set tba address. error %d.\n", err);
1125 qpd->cwsr_kaddr = NULL;
1129 memcpy(qpd->cwsr_kaddr, dev->cwsr_isa, dev->cwsr_isa_size);
1131 qpd->tma_addr = qpd->tba_addr + KFD_CWSR_TMA_OFFSET;
1132 pr_debug("set tba :0x%llx, tma:0x%llx, cwsr_kaddr:%p for pqm.\n",
1133 qpd->tba_addr, qpd->tma_addr, qpd->cwsr_kaddr);
1139 static int kfd_process_device_init_cwsr_dgpu(struct kfd_process_device *pdd)
1141 struct kfd_dev *dev = pdd->dev;
1142 struct qcm_process_device *qpd = &pdd->qpd;
1143 uint32_t flags = KFD_IOC_ALLOC_MEM_FLAGS_GTT
1144 | KFD_IOC_ALLOC_MEM_FLAGS_NO_SUBSTITUTE
1145 | KFD_IOC_ALLOC_MEM_FLAGS_EXECUTABLE;
1149 if (!dev->cwsr_enabled || qpd->cwsr_kaddr || !qpd->cwsr_base)
1152 /* cwsr_base is only set for dGPU */
1153 ret = kfd_process_alloc_gpuvm(pdd, qpd->cwsr_base,
1154 KFD_CWSR_TBA_TMA_SIZE, flags, &kaddr);
1158 qpd->cwsr_kaddr = kaddr;
1159 qpd->tba_addr = qpd->cwsr_base;
1161 memcpy(qpd->cwsr_kaddr, dev->cwsr_isa, dev->cwsr_isa_size);
1163 qpd->tma_addr = qpd->tba_addr + KFD_CWSR_TMA_OFFSET;
1164 pr_debug("set tba :0x%llx, tma:0x%llx, cwsr_kaddr:%p for pqm.\n",
1165 qpd->tba_addr, qpd->tma_addr, qpd->cwsr_kaddr);
1170 void kfd_process_set_trap_handler(struct qcm_process_device *qpd,
1174 if (qpd->cwsr_kaddr) {
1175 /* KFD trap handler is bound, record as second-level TBA/TMA
1176 * in first-level TMA. First-level trap will jump to second.
1179 (uint64_t *)(qpd->cwsr_kaddr + KFD_CWSR_TMA_OFFSET);
1183 /* No trap handler bound, bind as first-level TBA/TMA. */
1184 qpd->tba_addr = tba_addr;
1185 qpd->tma_addr = tma_addr;
1190 * On return the kfd_process is fully operational and will be freed when the
1193 static struct kfd_process *create_process(const struct task_struct *thread)
1195 struct kfd_process *process;
1196 struct mmu_notifier *mn;
1199 process = kzalloc(sizeof(*process), GFP_KERNEL);
1201 goto err_alloc_process;
1203 kref_init(&process->ref);
1204 mutex_init(&process->mutex);
1205 process->mm = thread->mm;
1206 process->lead_thread = thread->group_leader;
1207 process->n_pdds = 0;
1208 INIT_DELAYED_WORK(&process->eviction_work, evict_process_worker);
1209 INIT_DELAYED_WORK(&process->restore_work, restore_process_worker);
1210 process->last_restore_timestamp = get_jiffies_64();
1211 kfd_event_init_process(process);
1212 process->is_32bit_user_mode = in_compat_syscall();
1214 process->pasid = kfd_pasid_alloc();
1215 if (process->pasid == 0)
1216 goto err_alloc_pasid;
1218 err = pqm_init(&process->pqm, process);
1220 goto err_process_pqm_init;
1222 /* init process apertures*/
1223 err = kfd_init_apertures(process);
1225 goto err_init_apertures;
1227 /* alloc_notifier needs to find the process in the hash table */
1228 hash_add_rcu(kfd_processes_table, &process->kfd_processes,
1229 (uintptr_t)process->mm);
1231 /* MMU notifier registration must be the last call that can fail
1232 * because after this point we cannot unwind the process creation.
1233 * After this point, mmu_notifier_put will trigger the cleanup by
1234 * dropping the last process reference in the free_notifier.
1236 mn = mmu_notifier_get(&kfd_process_mmu_notifier_ops, process->mm);
1239 goto err_register_notifier;
1241 BUG_ON(mn != &process->mmu_notifier);
1243 get_task_struct(process->lead_thread);
1247 err_register_notifier:
1248 hash_del_rcu(&process->kfd_processes);
1249 kfd_process_free_outstanding_kfd_bos(process);
1250 kfd_process_destroy_pdds(process);
1252 pqm_uninit(&process->pqm);
1253 err_process_pqm_init:
1254 kfd_pasid_free(process->pasid);
1256 mutex_destroy(&process->mutex);
1259 return ERR_PTR(err);
1262 static int init_doorbell_bitmap(struct qcm_process_device *qpd,
1263 struct kfd_dev *dev)
1266 int range_start = dev->shared_resources.non_cp_doorbells_start;
1267 int range_end = dev->shared_resources.non_cp_doorbells_end;
1269 if (!KFD_IS_SOC15(dev->device_info->asic_family))
1272 qpd->doorbell_bitmap =
1273 kzalloc(DIV_ROUND_UP(KFD_MAX_NUM_OF_QUEUES_PER_PROCESS,
1274 BITS_PER_BYTE), GFP_KERNEL);
1275 if (!qpd->doorbell_bitmap)
1278 /* Mask out doorbells reserved for SDMA, IH, and VCN on SOC15. */
1279 pr_debug("reserved doorbell 0x%03x - 0x%03x\n", range_start, range_end);
1280 pr_debug("reserved doorbell 0x%03x - 0x%03x\n",
1281 range_start + KFD_QUEUE_DOORBELL_MIRROR_OFFSET,
1282 range_end + KFD_QUEUE_DOORBELL_MIRROR_OFFSET);
1284 for (i = 0; i < KFD_MAX_NUM_OF_QUEUES_PER_PROCESS / 2; i++) {
1285 if (i >= range_start && i <= range_end) {
1286 set_bit(i, qpd->doorbell_bitmap);
1287 set_bit(i + KFD_QUEUE_DOORBELL_MIRROR_OFFSET,
1288 qpd->doorbell_bitmap);
1295 struct kfd_process_device *kfd_get_process_device_data(struct kfd_dev *dev,
1296 struct kfd_process *p)
1300 for (i = 0; i < p->n_pdds; i++)
1301 if (p->pdds[i]->dev == dev)
1307 struct kfd_process_device *kfd_create_process_device_data(struct kfd_dev *dev,
1308 struct kfd_process *p)
1310 struct kfd_process_device *pdd = NULL;
1312 if (WARN_ON_ONCE(p->n_pdds >= MAX_GPU_INSTANCE))
1314 pdd = kzalloc(sizeof(*pdd), GFP_KERNEL);
1318 if (kfd_alloc_process_doorbells(dev, &pdd->doorbell_index) < 0) {
1319 pr_err("Failed to alloc doorbell for pdd\n");
1323 if (init_doorbell_bitmap(&pdd->qpd, dev)) {
1324 pr_err("Failed to init doorbell for process\n");
1329 INIT_LIST_HEAD(&pdd->qpd.queues_list);
1330 INIT_LIST_HEAD(&pdd->qpd.priv_queue_list);
1331 pdd->qpd.dqm = dev->dqm;
1332 pdd->qpd.pqm = &p->pqm;
1333 pdd->qpd.evicted = 0;
1334 pdd->qpd.mapped_gws_queue = false;
1336 pdd->bound = PDD_UNBOUND;
1337 pdd->already_dequeued = false;
1338 pdd->runtime_inuse = false;
1339 pdd->vram_usage = 0;
1340 pdd->sdma_past_activity_counter = 0;
1341 atomic64_set(&pdd->evict_duration_counter, 0);
1342 p->pdds[p->n_pdds++] = pdd;
1344 /* Init idr used for memory handle translation */
1345 idr_init(&pdd->alloc_idr);
1355 * kfd_process_device_init_vm - Initialize a VM for a process-device
1357 * @pdd: The process-device
1358 * @drm_file: Optional pointer to a DRM file descriptor
1360 * If @drm_file is specified, it will be used to acquire the VM from
1361 * that file descriptor. If successful, the @pdd takes ownership of
1362 * the file descriptor.
1364 * If @drm_file is NULL, a new VM is created.
1366 * Returns 0 on success, -errno on failure.
1368 int kfd_process_device_init_vm(struct kfd_process_device *pdd,
1369 struct file *drm_file)
1371 struct kfd_process *p;
1372 struct kfd_dev *dev;
1384 ret = amdgpu_amdkfd_gpuvm_acquire_process_vm(
1385 dev->kgd, drm_file, p->pasid,
1386 &pdd->vm, &p->kgd_process_info, &p->ef);
1388 pr_err("Failed to create process VM object\n");
1392 amdgpu_vm_set_task_info(pdd->vm);
1394 ret = kfd_process_device_reserve_ib_mem(pdd);
1396 goto err_reserve_ib_mem;
1397 ret = kfd_process_device_init_cwsr_dgpu(pdd);
1401 pdd->drm_file = drm_file;
1407 kfd_process_device_free_bos(pdd);
1414 * Direct the IOMMU to bind the process (specifically the pasid->mm)
1416 * Unbinding occurs when the process dies or the device is removed.
1418 * Assumes that the process lock is held.
1420 struct kfd_process_device *kfd_bind_process_to_device(struct kfd_dev *dev,
1421 struct kfd_process *p)
1423 struct kfd_process_device *pdd;
1426 pdd = kfd_get_process_device_data(dev, p);
1428 pr_err("Process device data doesn't exist\n");
1429 return ERR_PTR(-ENOMEM);
1433 return ERR_PTR(-ENODEV);
1436 * signal runtime-pm system to auto resume and prevent
1437 * further runtime suspend once device pdd is created until
1440 if (!pdd->runtime_inuse) {
1441 err = pm_runtime_get_sync(dev->ddev->dev);
1443 pm_runtime_put_autosuspend(dev->ddev->dev);
1444 return ERR_PTR(err);
1448 err = kfd_iommu_bind_process_to_device(pdd);
1453 * make sure that runtime_usage counter is incremented just once
1456 pdd->runtime_inuse = true;
1461 /* balance runpm reference count and exit with error */
1462 if (!pdd->runtime_inuse) {
1463 pm_runtime_mark_last_busy(dev->ddev->dev);
1464 pm_runtime_put_autosuspend(dev->ddev->dev);
1467 return ERR_PTR(err);
1470 /* Create specific handle mapped to mem from process local memory idr
1471 * Assumes that the process lock is held.
1473 int kfd_process_device_create_obj_handle(struct kfd_process_device *pdd,
1476 return idr_alloc(&pdd->alloc_idr, mem, 0, 0, GFP_KERNEL);
1479 /* Translate specific handle from process local memory idr
1480 * Assumes that the process lock is held.
1482 void *kfd_process_device_translate_handle(struct kfd_process_device *pdd,
1488 return idr_find(&pdd->alloc_idr, handle);
1491 /* Remove specific handle from process local memory idr
1492 * Assumes that the process lock is held.
1494 void kfd_process_device_remove_obj_handle(struct kfd_process_device *pdd,
1498 idr_remove(&pdd->alloc_idr, handle);
1501 /* This increments the process->ref counter. */
1502 struct kfd_process *kfd_lookup_process_by_pasid(u32 pasid)
1504 struct kfd_process *p, *ret_p = NULL;
1507 int idx = srcu_read_lock(&kfd_processes_srcu);
1509 hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
1510 if (p->pasid == pasid) {
1517 srcu_read_unlock(&kfd_processes_srcu, idx);
1522 /* This increments the process->ref counter. */
1523 struct kfd_process *kfd_lookup_process_by_mm(const struct mm_struct *mm)
1525 struct kfd_process *p;
1527 int idx = srcu_read_lock(&kfd_processes_srcu);
1529 p = find_process_by_mm(mm);
1533 srcu_read_unlock(&kfd_processes_srcu, idx);
1538 /* kfd_process_evict_queues - Evict all user queues of a process
1540 * Eviction is reference-counted per process-device. This means multiple
1541 * evictions from different sources can be nested safely.
1543 int kfd_process_evict_queues(struct kfd_process *p)
1547 unsigned int n_evicted = 0;
1549 for (i = 0; i < p->n_pdds; i++) {
1550 struct kfd_process_device *pdd = p->pdds[i];
1552 r = pdd->dev->dqm->ops.evict_process_queues(pdd->dev->dqm,
1555 pr_err("Failed to evict process queues\n");
1564 /* To keep state consistent, roll back partial eviction by
1567 for (i = 0; i < p->n_pdds; i++) {
1568 struct kfd_process_device *pdd = p->pdds[i];
1572 if (pdd->dev->dqm->ops.restore_process_queues(pdd->dev->dqm,
1574 pr_err("Failed to restore queues\n");
1582 /* kfd_process_restore_queues - Restore all user queues of a process */
1583 int kfd_process_restore_queues(struct kfd_process *p)
1588 for (i = 0; i < p->n_pdds; i++) {
1589 struct kfd_process_device *pdd = p->pdds[i];
1591 r = pdd->dev->dqm->ops.restore_process_queues(pdd->dev->dqm,
1594 pr_err("Failed to restore process queues\n");
1603 static void evict_process_worker(struct work_struct *work)
1606 struct kfd_process *p;
1607 struct delayed_work *dwork;
1609 dwork = to_delayed_work(work);
1611 /* Process termination destroys this worker thread. So during the
1612 * lifetime of this thread, kfd_process p will be valid
1614 p = container_of(dwork, struct kfd_process, eviction_work);
1615 WARN_ONCE(p->last_eviction_seqno != p->ef->seqno,
1616 "Eviction fence mismatch\n");
1618 /* Narrow window of overlap between restore and evict work
1619 * item is possible. Once amdgpu_amdkfd_gpuvm_restore_process_bos
1620 * unreserves KFD BOs, it is possible to evicted again. But
1621 * restore has few more steps of finish. So lets wait for any
1622 * previous restore work to complete
1624 flush_delayed_work(&p->restore_work);
1626 pr_debug("Started evicting pasid 0x%x\n", p->pasid);
1627 ret = kfd_process_evict_queues(p);
1629 dma_fence_signal(p->ef);
1630 dma_fence_put(p->ef);
1632 queue_delayed_work(kfd_restore_wq, &p->restore_work,
1633 msecs_to_jiffies(PROCESS_RESTORE_TIME_MS));
1635 pr_debug("Finished evicting pasid 0x%x\n", p->pasid);
1637 pr_err("Failed to evict queues of pasid 0x%x\n", p->pasid);
1640 static void restore_process_worker(struct work_struct *work)
1642 struct delayed_work *dwork;
1643 struct kfd_process *p;
1646 dwork = to_delayed_work(work);
1648 /* Process termination destroys this worker thread. So during the
1649 * lifetime of this thread, kfd_process p will be valid
1651 p = container_of(dwork, struct kfd_process, restore_work);
1652 pr_debug("Started restoring pasid 0x%x\n", p->pasid);
1654 /* Setting last_restore_timestamp before successful restoration.
1655 * Otherwise this would have to be set by KGD (restore_process_bos)
1656 * before KFD BOs are unreserved. If not, the process can be evicted
1657 * again before the timestamp is set.
1658 * If restore fails, the timestamp will be set again in the next
1659 * attempt. This would mean that the minimum GPU quanta would be
1660 * PROCESS_ACTIVE_TIME_MS - (time to execute the following two
1664 p->last_restore_timestamp = get_jiffies_64();
1665 ret = amdgpu_amdkfd_gpuvm_restore_process_bos(p->kgd_process_info,
1668 pr_debug("Failed to restore BOs of pasid 0x%x, retry after %d ms\n",
1669 p->pasid, PROCESS_BACK_OFF_TIME_MS);
1670 ret = queue_delayed_work(kfd_restore_wq, &p->restore_work,
1671 msecs_to_jiffies(PROCESS_BACK_OFF_TIME_MS));
1672 WARN(!ret, "reschedule restore work failed\n");
1676 ret = kfd_process_restore_queues(p);
1678 pr_debug("Finished restoring pasid 0x%x\n", p->pasid);
1680 pr_err("Failed to restore queues of pasid 0x%x\n", p->pasid);
1683 void kfd_suspend_all_processes(void)
1685 struct kfd_process *p;
1687 int idx = srcu_read_lock(&kfd_processes_srcu);
1689 WARN(debug_evictions, "Evicting all processes");
1690 hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
1691 cancel_delayed_work_sync(&p->eviction_work);
1692 cancel_delayed_work_sync(&p->restore_work);
1694 if (kfd_process_evict_queues(p))
1695 pr_err("Failed to suspend process 0x%x\n", p->pasid);
1696 dma_fence_signal(p->ef);
1697 dma_fence_put(p->ef);
1700 srcu_read_unlock(&kfd_processes_srcu, idx);
1703 int kfd_resume_all_processes(void)
1705 struct kfd_process *p;
1707 int ret = 0, idx = srcu_read_lock(&kfd_processes_srcu);
1709 hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
1710 if (!queue_delayed_work(kfd_restore_wq, &p->restore_work, 0)) {
1711 pr_err("Restore process %d failed during resume\n",
1716 srcu_read_unlock(&kfd_processes_srcu, idx);
1720 int kfd_reserved_mem_mmap(struct kfd_dev *dev, struct kfd_process *process,
1721 struct vm_area_struct *vma)
1723 struct kfd_process_device *pdd;
1724 struct qcm_process_device *qpd;
1726 if ((vma->vm_end - vma->vm_start) != KFD_CWSR_TBA_TMA_SIZE) {
1727 pr_err("Incorrect CWSR mapping size.\n");
1731 pdd = kfd_get_process_device_data(dev, process);
1736 qpd->cwsr_kaddr = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
1737 get_order(KFD_CWSR_TBA_TMA_SIZE));
1738 if (!qpd->cwsr_kaddr) {
1739 pr_err("Error allocating per process CWSR buffer.\n");
1743 vma->vm_flags |= VM_IO | VM_DONTCOPY | VM_DONTEXPAND
1744 | VM_NORESERVE | VM_DONTDUMP | VM_PFNMAP;
1745 /* Mapping pages to user process */
1746 return remap_pfn_range(vma, vma->vm_start,
1747 PFN_DOWN(__pa(qpd->cwsr_kaddr)),
1748 KFD_CWSR_TBA_TMA_SIZE, vma->vm_page_prot);
1751 void kfd_flush_tlb(struct kfd_process_device *pdd)
1753 struct kfd_dev *dev = pdd->dev;
1755 if (dev->dqm->sched_policy == KFD_SCHED_POLICY_NO_HWS) {
1756 /* Nothing to flush until a VMID is assigned, which
1757 * only happens when the first queue is created.
1760 amdgpu_amdkfd_flush_gpu_tlb_vmid(dev->kgd,
1763 amdgpu_amdkfd_flush_gpu_tlb_pasid(dev->kgd,
1764 pdd->process->pasid);
1768 #if defined(CONFIG_DEBUG_FS)
1770 int kfd_debugfs_mqds_by_process(struct seq_file *m, void *data)
1772 struct kfd_process *p;
1776 int idx = srcu_read_lock(&kfd_processes_srcu);
1778 hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
1779 seq_printf(m, "Process %d PASID 0x%x:\n",
1780 p->lead_thread->tgid, p->pasid);
1782 mutex_lock(&p->mutex);
1783 r = pqm_debugfs_mqds(m, &p->pqm);
1784 mutex_unlock(&p->mutex);
1790 srcu_read_unlock(&kfd_processes_srcu, idx);