2014-07-16 20:25:31 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Advanced Micro Devices, Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/log2.h>
|
|
|
|
#include <linux/sched.h>
|
2017-02-08 17:51:29 +00:00
|
|
|
#include <linux/sched/mm.h>
|
2014-07-16 20:25:31 +00:00
|
|
|
#include <linux/slab.h>
|
2014-07-16 21:06:27 +00:00
|
|
|
#include <linux/amd-iommu.h>
|
2014-07-16 20:25:31 +00:00
|
|
|
#include <linux/notifier.h>
|
2014-11-18 11:56:23 +00:00
|
|
|
#include <linux/compat.h>
|
2017-11-14 21:41:19 +00:00
|
|
|
#include <linux/mman.h>
|
2014-11-18 11:56:23 +00:00
|
|
|
|
2014-07-16 20:25:31 +00:00
|
|
|
struct mm_struct;
|
|
|
|
|
|
|
|
#include "kfd_priv.h"
|
2015-05-20 15:05:44 +00:00
|
|
|
#include "kfd_dbgmgr.h"
|
2014-07-16 20:25:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* List of struct kfd_process (field kfd_process).
|
|
|
|
* Unique/indexed by mm_struct*
|
|
|
|
*/
|
|
|
|
#define KFD_PROCESS_TABLE_SIZE 5 /* bits: 32 entries */
|
|
|
|
static DEFINE_HASHTABLE(kfd_processes_table, KFD_PROCESS_TABLE_SIZE);
|
|
|
|
static DEFINE_MUTEX(kfd_processes_mutex);
|
|
|
|
|
|
|
|
DEFINE_STATIC_SRCU(kfd_processes_srcu);
|
|
|
|
|
|
|
|
static struct workqueue_struct *kfd_process_wq;
|
|
|
|
|
|
|
|
struct kfd_process_release_work {
|
|
|
|
struct work_struct kfd_work;
|
|
|
|
struct kfd_process *p;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct kfd_process *find_process(const struct task_struct *thread);
|
|
|
|
static struct kfd_process *create_process(const struct task_struct *thread);
|
2017-11-14 21:41:19 +00:00
|
|
|
static int kfd_process_init_cwsr(struct kfd_process *p, struct file *filep);
|
|
|
|
|
2014-07-16 20:25:31 +00:00
|
|
|
|
|
|
|
void kfd_process_create_wq(void)
|
|
|
|
{
|
|
|
|
if (!kfd_process_wq)
|
2016-05-29 15:44:11 +00:00
|
|
|
kfd_process_wq = alloc_workqueue("kfd_process_wq", 0, 0);
|
2014-07-16 20:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void kfd_process_destroy_wq(void)
|
|
|
|
{
|
|
|
|
if (kfd_process_wq) {
|
|
|
|
destroy_workqueue(kfd_process_wq);
|
|
|
|
kfd_process_wq = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-14 21:41:19 +00:00
|
|
|
struct kfd_process *kfd_create_process(struct file *filep)
|
2014-07-16 20:25:31 +00:00
|
|
|
{
|
|
|
|
struct kfd_process *process;
|
2017-11-14 21:41:19 +00:00
|
|
|
struct task_struct *thread = current;
|
2014-07-16 20:25:31 +00:00
|
|
|
|
2017-08-16 03:00:06 +00:00
|
|
|
if (!thread->mm)
|
2014-07-16 20:25:31 +00:00
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
|
|
|
|
/* Only the pthreads threading model is supported. */
|
|
|
|
if (thread->group_leader->mm != thread->mm)
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
|
|
|
|
/* Take mmap_sem because we call __mmu_notifier_register inside */
|
|
|
|
down_write(&thread->mm->mmap_sem);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* take kfd processes mutex before starting of process creation
|
|
|
|
* so there won't be a case where two threads of the same process
|
|
|
|
* create two kfd_process structures
|
|
|
|
*/
|
|
|
|
mutex_lock(&kfd_processes_mutex);
|
|
|
|
|
|
|
|
/* A prior open of /dev/kfd could have already created the process. */
|
|
|
|
process = find_process(thread);
|
|
|
|
if (process)
|
2017-08-16 03:00:05 +00:00
|
|
|
pr_debug("Process already found\n");
|
2014-07-16 20:25:31 +00:00
|
|
|
|
|
|
|
if (!process)
|
|
|
|
process = create_process(thread);
|
|
|
|
|
|
|
|
mutex_unlock(&kfd_processes_mutex);
|
|
|
|
|
|
|
|
up_write(&thread->mm->mmap_sem);
|
|
|
|
|
2017-11-14 21:41:19 +00:00
|
|
|
kfd_process_init_cwsr(process, filep);
|
|
|
|
|
2014-07-16 20:25:31 +00:00
|
|
|
return process;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct kfd_process *kfd_get_process(const struct task_struct *thread)
|
|
|
|
{
|
|
|
|
struct kfd_process *process;
|
|
|
|
|
2017-08-16 03:00:06 +00:00
|
|
|
if (!thread->mm)
|
2014-07-16 20:25:31 +00:00
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
|
|
|
|
/* Only the pthreads threading model is supported. */
|
|
|
|
if (thread->group_leader->mm != thread->mm)
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
|
|
|
|
process = find_process(thread);
|
|
|
|
|
|
|
|
return process;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct kfd_process *find_process_by_mm(const struct mm_struct *mm)
|
|
|
|
{
|
|
|
|
struct kfd_process *process;
|
|
|
|
|
|
|
|
hash_for_each_possible_rcu(kfd_processes_table, process,
|
|
|
|
kfd_processes, (uintptr_t)mm)
|
|
|
|
if (process->mm == mm)
|
|
|
|
return process;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct kfd_process *find_process(const struct task_struct *thread)
|
|
|
|
{
|
|
|
|
struct kfd_process *p;
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
idx = srcu_read_lock(&kfd_processes_srcu);
|
|
|
|
p = find_process_by_mm(thread->mm);
|
|
|
|
srcu_read_unlock(&kfd_processes_srcu, idx);
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void kfd_process_wq_release(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct kfd_process_release_work *my_work;
|
|
|
|
struct kfd_process_device *pdd, *temp;
|
|
|
|
struct kfd_process *p;
|
|
|
|
|
|
|
|
my_work = (struct kfd_process_release_work *) work;
|
|
|
|
|
|
|
|
p = my_work->p;
|
|
|
|
|
2015-02-24 08:51:59 +00:00
|
|
|
pr_debug("Releasing process (pasid %d) in workqueue\n",
|
|
|
|
p->pasid);
|
|
|
|
|
2014-07-16 20:25:31 +00:00
|
|
|
mutex_lock(&p->mutex);
|
|
|
|
|
|
|
|
list_for_each_entry_safe(pdd, temp, &p->per_device_data,
|
|
|
|
per_device_list) {
|
2015-02-24 08:51:59 +00:00
|
|
|
pr_debug("Releasing pdd (topology id %d) for process (pasid %d) in workqueue\n",
|
|
|
|
pdd->dev->id, p->pasid);
|
|
|
|
|
2017-09-20 22:10:14 +00:00
|
|
|
if (pdd->bound == PDD_BOUND)
|
|
|
|
amd_iommu_unbind_pasid(pdd->dev->pdev, p->pasid);
|
2014-07-16 20:25:31 +00:00
|
|
|
|
2017-09-20 22:10:14 +00:00
|
|
|
list_del(&pdd->per_device_list);
|
2017-11-14 21:41:19 +00:00
|
|
|
|
|
|
|
if (pdd->qpd.cwsr_kaddr)
|
|
|
|
free_pages((unsigned long)pdd->qpd.cwsr_kaddr,
|
|
|
|
get_order(KFD_CWSR_TBA_TMA_SIZE));
|
|
|
|
|
2014-07-16 20:25:31 +00:00
|
|
|
kfree(pdd);
|
|
|
|
}
|
|
|
|
|
2015-05-10 09:15:46 +00:00
|
|
|
kfd_event_free_process(p);
|
|
|
|
|
2014-07-16 20:25:31 +00:00
|
|
|
kfd_pasid_free(p->pasid);
|
2017-08-26 06:00:57 +00:00
|
|
|
kfd_free_process_doorbells(p);
|
2014-07-16 20:25:31 +00:00
|
|
|
|
|
|
|
mutex_unlock(&p->mutex);
|
|
|
|
|
|
|
|
mutex_destroy(&p->mutex);
|
|
|
|
|
|
|
|
kfree(p);
|
|
|
|
|
2016-01-25 17:33:57 +00:00
|
|
|
kfree(work);
|
2014-07-16 20:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void kfd_process_destroy_delayed(struct rcu_head *rcu)
|
|
|
|
{
|
|
|
|
struct kfd_process_release_work *work;
|
|
|
|
struct kfd_process *p;
|
|
|
|
|
|
|
|
p = container_of(rcu, struct kfd_process, rcu);
|
|
|
|
|
|
|
|
mmdrop(p->mm);
|
|
|
|
|
2015-04-23 09:58:05 +00:00
|
|
|
work = kmalloc(sizeof(struct kfd_process_release_work), GFP_ATOMIC);
|
2014-07-16 20:25:31 +00:00
|
|
|
|
|
|
|
if (work) {
|
|
|
|
INIT_WORK((struct work_struct *) work, kfd_process_wq_release);
|
|
|
|
work->p = p;
|
|
|
|
queue_work(kfd_process_wq, (struct work_struct *) work);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void kfd_process_notifier_release(struct mmu_notifier *mn,
|
|
|
|
struct mm_struct *mm)
|
|
|
|
{
|
|
|
|
struct kfd_process *p;
|
2015-03-25 11:12:20 +00:00
|
|
|
struct kfd_process_device *pdd = NULL;
|
2014-07-16 20:25:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The kfd_process structure can not be free because the
|
|
|
|
* mmu_notifier srcu is read locked
|
|
|
|
*/
|
|
|
|
p = container_of(mn, struct kfd_process, mmu_notifier);
|
2017-08-16 03:00:12 +00:00
|
|
|
if (WARN_ON(p->mm != mm))
|
|
|
|
return;
|
2014-07-16 20:25:31 +00:00
|
|
|
|
|
|
|
mutex_lock(&kfd_processes_mutex);
|
|
|
|
hash_del_rcu(&p->kfd_processes);
|
|
|
|
mutex_unlock(&kfd_processes_mutex);
|
|
|
|
synchronize_srcu(&kfd_processes_srcu);
|
|
|
|
|
2014-07-16 22:04:10 +00:00
|
|
|
mutex_lock(&p->mutex);
|
|
|
|
|
2017-11-01 23:21:29 +00:00
|
|
|
/* Iterate over all process device data structures and if the
|
|
|
|
* pdd is in debug mode, we should first force unregistration,
|
|
|
|
* then we will be able to destroy the queues
|
|
|
|
*/
|
|
|
|
list_for_each_entry(pdd, &p->per_device_data, per_device_list) {
|
|
|
|
struct kfd_dev *dev = pdd->dev;
|
|
|
|
|
|
|
|
mutex_lock(kfd_get_dbgmgr_mutex());
|
|
|
|
if (dev && dev->dbgmgr && dev->dbgmgr->pasid == p->pasid) {
|
|
|
|
if (!kfd_dbgmgr_unregister(dev->dbgmgr, p)) {
|
|
|
|
kfd_dbgmgr_destroy(dev->dbgmgr);
|
|
|
|
dev->dbgmgr = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mutex_unlock(kfd_get_dbgmgr_mutex());
|
|
|
|
}
|
|
|
|
|
2017-09-27 04:09:52 +00:00
|
|
|
kfd_process_dequeue_from_all_devices(p);
|
2014-07-16 22:04:10 +00:00
|
|
|
pqm_uninit(&p->pqm);
|
|
|
|
|
|
|
|
mutex_unlock(&p->mutex);
|
|
|
|
|
2014-07-16 20:25:31 +00:00
|
|
|
/*
|
|
|
|
* Because we drop mm_count inside kfd_process_destroy_delayed
|
|
|
|
* and because the mmu_notifier_unregister function also drop
|
|
|
|
* mm_count we need to take an extra count here.
|
|
|
|
*/
|
2017-02-27 22:30:07 +00:00
|
|
|
mmgrab(p->mm);
|
2014-07-16 20:25:31 +00:00
|
|
|
mmu_notifier_unregister_no_release(&p->mmu_notifier, p->mm);
|
|
|
|
mmu_notifier_call_srcu(&p->rcu, &kfd_process_destroy_delayed);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct mmu_notifier_ops kfd_process_mmu_notifier_ops = {
|
|
|
|
.release = kfd_process_notifier_release,
|
|
|
|
};
|
|
|
|
|
2017-11-14 21:41:19 +00:00
|
|
|
static int kfd_process_init_cwsr(struct kfd_process *p, struct file *filep)
|
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
unsigned long offset;
|
|
|
|
struct kfd_process_device *temp, *pdd = NULL;
|
|
|
|
struct kfd_dev *dev = NULL;
|
|
|
|
struct qcm_process_device *qpd = NULL;
|
|
|
|
|
|
|
|
mutex_lock(&p->mutex);
|
|
|
|
list_for_each_entry_safe(pdd, temp, &p->per_device_data,
|
|
|
|
per_device_list) {
|
|
|
|
dev = pdd->dev;
|
|
|
|
qpd = &pdd->qpd;
|
|
|
|
if (!dev->cwsr_enabled || qpd->cwsr_kaddr)
|
|
|
|
continue;
|
|
|
|
offset = (dev->id | KFD_MMAP_RESERVED_MEM_MASK) << PAGE_SHIFT;
|
|
|
|
qpd->tba_addr = (int64_t)vm_mmap(filep, 0,
|
|
|
|
KFD_CWSR_TBA_TMA_SIZE, PROT_READ | PROT_EXEC,
|
|
|
|
MAP_SHARED, offset);
|
|
|
|
|
|
|
|
if (IS_ERR_VALUE(qpd->tba_addr)) {
|
|
|
|
pr_err("Failure to set tba address. error -%d.\n",
|
|
|
|
(int)qpd->tba_addr);
|
|
|
|
err = qpd->tba_addr;
|
|
|
|
qpd->tba_addr = 0;
|
|
|
|
qpd->cwsr_kaddr = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(qpd->cwsr_kaddr, dev->cwsr_isa, dev->cwsr_isa_size);
|
|
|
|
|
|
|
|
qpd->tma_addr = qpd->tba_addr + KFD_CWSR_TMA_OFFSET;
|
|
|
|
pr_debug("set tba :0x%llx, tma:0x%llx, cwsr_kaddr:%p for pqm.\n",
|
|
|
|
qpd->tba_addr, qpd->tma_addr, qpd->cwsr_kaddr);
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
mutex_unlock(&p->mutex);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2014-07-16 20:25:31 +00:00
|
|
|
static struct kfd_process *create_process(const struct task_struct *thread)
|
|
|
|
{
|
|
|
|
struct kfd_process *process;
|
|
|
|
int err = -ENOMEM;
|
|
|
|
|
|
|
|
process = kzalloc(sizeof(*process), GFP_KERNEL);
|
|
|
|
|
|
|
|
if (!process)
|
|
|
|
goto err_alloc_process;
|
|
|
|
|
|
|
|
process->pasid = kfd_pasid_alloc();
|
|
|
|
if (process->pasid == 0)
|
|
|
|
goto err_alloc_pasid;
|
|
|
|
|
2017-08-26 06:00:57 +00:00
|
|
|
if (kfd_alloc_process_doorbells(process) < 0)
|
|
|
|
goto err_alloc_doorbells;
|
|
|
|
|
2014-07-16 20:25:31 +00:00
|
|
|
mutex_init(&process->mutex);
|
|
|
|
|
|
|
|
process->mm = thread->mm;
|
|
|
|
|
|
|
|
/* register notifier */
|
|
|
|
process->mmu_notifier.ops = &kfd_process_mmu_notifier_ops;
|
|
|
|
err = __mmu_notifier_register(&process->mmu_notifier, process->mm);
|
|
|
|
if (err)
|
|
|
|
goto err_mmu_notifier;
|
|
|
|
|
|
|
|
hash_add_rcu(kfd_processes_table, &process->kfd_processes,
|
|
|
|
(uintptr_t)process->mm);
|
|
|
|
|
|
|
|
process->lead_thread = thread->group_leader;
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&process->per_device_data);
|
|
|
|
|
2015-05-10 09:15:46 +00:00
|
|
|
kfd_event_init_process(process);
|
|
|
|
|
2014-07-16 22:04:10 +00:00
|
|
|
err = pqm_init(&process->pqm, process);
|
|
|
|
if (err != 0)
|
|
|
|
goto err_process_pqm_init;
|
|
|
|
|
2014-11-18 11:56:23 +00:00
|
|
|
/* init process apertures*/
|
2016-03-22 21:25:19 +00:00
|
|
|
process->is_32bit_user_mode = in_compat_syscall();
|
2017-06-14 10:58:53 +00:00
|
|
|
err = kfd_init_apertures(process);
|
|
|
|
if (err != 0)
|
2017-06-01 10:28:38 +00:00
|
|
|
goto err_init_apertures;
|
2014-11-18 11:56:23 +00:00
|
|
|
|
2014-07-16 20:25:31 +00:00
|
|
|
return process;
|
|
|
|
|
2017-06-01 10:28:38 +00:00
|
|
|
err_init_apertures:
|
2014-11-18 11:56:23 +00:00
|
|
|
pqm_uninit(&process->pqm);
|
2014-07-16 22:04:10 +00:00
|
|
|
err_process_pqm_init:
|
|
|
|
hash_del_rcu(&process->kfd_processes);
|
|
|
|
synchronize_rcu();
|
|
|
|
mmu_notifier_unregister_no_release(&process->mmu_notifier, process->mm);
|
2014-07-16 20:25:31 +00:00
|
|
|
err_mmu_notifier:
|
2016-06-23 14:54:29 +00:00
|
|
|
mutex_destroy(&process->mutex);
|
2017-08-26 06:00:57 +00:00
|
|
|
kfd_free_process_doorbells(process);
|
|
|
|
err_alloc_doorbells:
|
2014-07-16 20:25:31 +00:00
|
|
|
kfd_pasid_free(process->pasid);
|
|
|
|
err_alloc_pasid:
|
|
|
|
kfree(process);
|
|
|
|
err_alloc_process:
|
|
|
|
return ERR_PTR(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct kfd_process_device *kfd_get_process_device_data(struct kfd_dev *dev,
|
2014-11-18 12:00:04 +00:00
|
|
|
struct kfd_process *p)
|
2014-07-16 20:25:31 +00:00
|
|
|
{
|
|
|
|
struct kfd_process_device *pdd = NULL;
|
|
|
|
|
|
|
|
list_for_each_entry(pdd, &p->per_device_data, per_device_list)
|
|
|
|
if (pdd->dev == dev)
|
2017-09-20 22:10:14 +00:00
|
|
|
return pdd;
|
2014-11-18 12:00:04 +00:00
|
|
|
|
2017-09-20 22:10:14 +00:00
|
|
|
return NULL;
|
2014-11-18 12:00:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct kfd_process_device *kfd_create_process_device_data(struct kfd_dev *dev,
|
|
|
|
struct kfd_process *p)
|
|
|
|
{
|
|
|
|
struct kfd_process_device *pdd = NULL;
|
|
|
|
|
|
|
|
pdd = kzalloc(sizeof(*pdd), GFP_KERNEL);
|
|
|
|
if (pdd != NULL) {
|
|
|
|
pdd->dev = dev;
|
|
|
|
INIT_LIST_HEAD(&pdd->qpd.queues_list);
|
|
|
|
INIT_LIST_HEAD(&pdd->qpd.priv_queue_list);
|
|
|
|
pdd->qpd.dqm = dev->dqm;
|
2017-11-14 21:41:17 +00:00
|
|
|
pdd->qpd.pqm = &p->pqm;
|
2017-09-27 04:09:52 +00:00
|
|
|
pdd->process = p;
|
2017-09-20 22:10:14 +00:00
|
|
|
pdd->bound = PDD_UNBOUND;
|
2017-09-27 04:09:52 +00:00
|
|
|
pdd->already_dequeued = false;
|
2014-11-18 12:00:04 +00:00
|
|
|
list_add(&pdd->per_device_list, &p->per_device_data);
|
2014-07-16 20:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return pdd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Direct the IOMMU to bind the process (specifically the pasid->mm)
|
|
|
|
* to the device.
|
|
|
|
* Unbinding occurs when the process dies or the device is removed.
|
|
|
|
*
|
|
|
|
* Assumes that the process lock is held.
|
|
|
|
*/
|
|
|
|
struct kfd_process_device *kfd_bind_process_to_device(struct kfd_dev *dev,
|
|
|
|
struct kfd_process *p)
|
|
|
|
{
|
2014-11-18 12:00:04 +00:00
|
|
|
struct kfd_process_device *pdd;
|
2014-07-16 21:06:27 +00:00
|
|
|
int err;
|
2014-07-16 20:25:31 +00:00
|
|
|
|
2014-11-18 12:00:04 +00:00
|
|
|
pdd = kfd_get_process_device_data(dev, p);
|
|
|
|
if (!pdd) {
|
|
|
|
pr_err("Process device data doesn't exist\n");
|
2014-07-16 20:25:31 +00:00
|
|
|
return ERR_PTR(-ENOMEM);
|
2014-11-18 12:00:04 +00:00
|
|
|
}
|
2014-07-16 20:25:31 +00:00
|
|
|
|
2017-09-20 22:10:14 +00:00
|
|
|
if (pdd->bound == PDD_BOUND) {
|
2014-07-16 20:25:31 +00:00
|
|
|
return pdd;
|
2017-09-20 22:10:14 +00:00
|
|
|
} else if (unlikely(pdd->bound == PDD_BOUND_SUSPENDED)) {
|
|
|
|
pr_err("Binding PDD_BOUND_SUSPENDED pdd is unexpected!\n");
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
}
|
2014-07-16 20:25:31 +00:00
|
|
|
|
2014-07-16 21:06:27 +00:00
|
|
|
err = amd_iommu_bind_pasid(dev->pdev, p->pasid, p->lead_thread);
|
|
|
|
if (err < 0)
|
|
|
|
return ERR_PTR(err);
|
|
|
|
|
2017-09-20 22:10:14 +00:00
|
|
|
pdd->bound = PDD_BOUND;
|
2014-07-16 20:25:31 +00:00
|
|
|
|
|
|
|
return pdd;
|
|
|
|
}
|
|
|
|
|
2017-09-20 22:10:14 +00:00
|
|
|
/*
|
|
|
|
* Bind processes do the device that have been temporarily unbound
|
|
|
|
* (PDD_BOUND_SUSPENDED) in kfd_unbind_processes_from_device.
|
|
|
|
*/
|
|
|
|
int kfd_bind_processes_to_device(struct kfd_dev *dev)
|
|
|
|
{
|
|
|
|
struct kfd_process_device *pdd;
|
|
|
|
struct kfd_process *p;
|
|
|
|
unsigned int temp;
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
int idx = srcu_read_lock(&kfd_processes_srcu);
|
|
|
|
|
|
|
|
hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
|
|
|
|
mutex_lock(&p->mutex);
|
|
|
|
pdd = kfd_get_process_device_data(dev, p);
|
|
|
|
if (pdd->bound != PDD_BOUND_SUSPENDED) {
|
|
|
|
mutex_unlock(&p->mutex);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = amd_iommu_bind_pasid(dev->pdev, p->pasid,
|
|
|
|
p->lead_thread);
|
|
|
|
if (err < 0) {
|
2017-11-01 23:21:33 +00:00
|
|
|
pr_err("Unexpected pasid %d binding failure\n",
|
2017-09-20 22:10:14 +00:00
|
|
|
p->pasid);
|
|
|
|
mutex_unlock(&p->mutex);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
pdd->bound = PDD_BOUND;
|
|
|
|
mutex_unlock(&p->mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
srcu_read_unlock(&kfd_processes_srcu, idx);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-11-01 23:21:28 +00:00
|
|
|
* Mark currently bound processes as PDD_BOUND_SUSPENDED. These
|
|
|
|
* processes will be restored to PDD_BOUND state in
|
|
|
|
* kfd_bind_processes_to_device.
|
2017-09-20 22:10:14 +00:00
|
|
|
*/
|
|
|
|
void kfd_unbind_processes_from_device(struct kfd_dev *dev)
|
|
|
|
{
|
|
|
|
struct kfd_process_device *pdd;
|
|
|
|
struct kfd_process *p;
|
2017-11-01 23:21:28 +00:00
|
|
|
unsigned int temp;
|
2017-09-20 22:10:14 +00:00
|
|
|
|
|
|
|
int idx = srcu_read_lock(&kfd_processes_srcu);
|
|
|
|
|
|
|
|
hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
|
|
|
|
mutex_lock(&p->mutex);
|
|
|
|
pdd = kfd_get_process_device_data(dev, p);
|
2017-11-01 23:21:28 +00:00
|
|
|
|
2017-09-20 22:10:14 +00:00
|
|
|
if (pdd->bound == PDD_BOUND)
|
|
|
|
pdd->bound = PDD_BOUND_SUSPENDED;
|
|
|
|
mutex_unlock(&p->mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
srcu_read_unlock(&kfd_processes_srcu, idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void kfd_process_iommu_unbind_callback(struct kfd_dev *dev, unsigned int pasid)
|
2014-07-16 20:25:31 +00:00
|
|
|
{
|
|
|
|
struct kfd_process *p;
|
|
|
|
struct kfd_process_device *pdd;
|
|
|
|
|
2016-05-26 05:41:08 +00:00
|
|
|
/*
|
|
|
|
* Look for the process that matches the pasid. If there is no such
|
|
|
|
* process, we either released it in amdkfd's own notifier, or there
|
|
|
|
* is a bug. Unfortunately, there is no way to tell...
|
|
|
|
*/
|
2016-09-17 05:01:42 +00:00
|
|
|
p = kfd_lookup_process_by_pasid(pasid);
|
|
|
|
if (!p)
|
|
|
|
return;
|
2014-07-16 20:25:31 +00:00
|
|
|
|
2016-09-17 05:01:42 +00:00
|
|
|
pr_debug("Unbinding process %d from IOMMU\n", pasid);
|
2014-07-16 22:04:10 +00:00
|
|
|
|
2017-11-01 23:21:29 +00:00
|
|
|
mutex_lock(kfd_get_dbgmgr_mutex());
|
|
|
|
|
|
|
|
if (dev->dbgmgr && dev->dbgmgr->pasid == p->pasid) {
|
|
|
|
if (!kfd_dbgmgr_unregister(dev->dbgmgr, p)) {
|
|
|
|
kfd_dbgmgr_destroy(dev->dbgmgr);
|
|
|
|
dev->dbgmgr = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutex_unlock(kfd_get_dbgmgr_mutex());
|
2015-07-09 09:11:53 +00:00
|
|
|
|
2016-09-17 05:01:42 +00:00
|
|
|
pdd = kfd_get_process_device_data(dev, p);
|
2017-09-27 04:09:52 +00:00
|
|
|
if (pdd)
|
|
|
|
/* For GPU relying on IOMMU, we need to dequeue here
|
|
|
|
* when PASID is still bound.
|
|
|
|
*/
|
|
|
|
kfd_process_dequeue_from_device(pdd);
|
2016-05-26 05:41:08 +00:00
|
|
|
|
2016-09-17 05:01:42 +00:00
|
|
|
mutex_unlock(&p->mutex);
|
2014-07-16 20:25:31 +00:00
|
|
|
}
|
|
|
|
|
2017-08-16 03:00:04 +00:00
|
|
|
struct kfd_process_device *kfd_get_first_process_device_data(
|
|
|
|
struct kfd_process *p)
|
2014-07-16 20:25:31 +00:00
|
|
|
{
|
|
|
|
return list_first_entry(&p->per_device_data,
|
|
|
|
struct kfd_process_device,
|
|
|
|
per_device_list);
|
|
|
|
}
|
|
|
|
|
2017-08-16 03:00:04 +00:00
|
|
|
struct kfd_process_device *kfd_get_next_process_device_data(
|
|
|
|
struct kfd_process *p,
|
2014-07-16 20:25:31 +00:00
|
|
|
struct kfd_process_device *pdd)
|
|
|
|
{
|
|
|
|
if (list_is_last(&pdd->per_device_list, &p->per_device_data))
|
|
|
|
return NULL;
|
|
|
|
return list_next_entry(pdd, per_device_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool kfd_has_process_device_data(struct kfd_process *p)
|
|
|
|
{
|
|
|
|
return !(list_empty(&p->per_device_data));
|
|
|
|
}
|
2015-05-10 09:15:46 +00:00
|
|
|
|
|
|
|
/* This returns with process->mutex locked. */
|
|
|
|
struct kfd_process *kfd_lookup_process_by_pasid(unsigned int pasid)
|
|
|
|
{
|
|
|
|
struct kfd_process *p;
|
|
|
|
unsigned int temp;
|
|
|
|
|
|
|
|
int idx = srcu_read_lock(&kfd_processes_srcu);
|
|
|
|
|
|
|
|
hash_for_each_rcu(kfd_processes_table, temp, p, kfd_processes) {
|
|
|
|
if (p->pasid == pasid) {
|
|
|
|
mutex_lock(&p->mutex);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
srcu_read_unlock(&kfd_processes_srcu, idx);
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
2017-11-14 21:41:19 +00:00
|
|
|
|
|
|
|
int kfd_reserved_mem_mmap(struct kfd_process *process,
|
|
|
|
struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct kfd_dev *dev = kfd_device_by_id(vma->vm_pgoff);
|
|
|
|
struct kfd_process_device *pdd;
|
|
|
|
struct qcm_process_device *qpd;
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return -EINVAL;
|
|
|
|
if ((vma->vm_end - vma->vm_start) != KFD_CWSR_TBA_TMA_SIZE) {
|
|
|
|
pr_err("Incorrect CWSR mapping size.\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
pdd = kfd_get_process_device_data(dev, process);
|
|
|
|
if (!pdd)
|
|
|
|
return -EINVAL;
|
|
|
|
qpd = &pdd->qpd;
|
|
|
|
|
|
|
|
qpd->cwsr_kaddr = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
|
|
|
|
get_order(KFD_CWSR_TBA_TMA_SIZE));
|
|
|
|
if (!qpd->cwsr_kaddr) {
|
|
|
|
pr_err("Error allocating per process CWSR buffer.\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
vma->vm_flags |= VM_IO | VM_DONTCOPY | VM_DONTEXPAND
|
|
|
|
| VM_NORESERVE | VM_DONTDUMP | VM_PFNMAP;
|
|
|
|
/* Mapping pages to user process */
|
|
|
|
return remap_pfn_range(vma, vma->vm_start,
|
|
|
|
PFN_DOWN(__pa(qpd->cwsr_kaddr)),
|
|
|
|
KFD_CWSR_TBA_TMA_SIZE, vma->vm_page_prot);
|
|
|
|
}
|