kfd_chardev.c 72.3 KB
Newer Older
O
Oded Gabbay 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * 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/device.h>
#include <linux/export.h>
#include <linux/err.h>
#include <linux/fs.h>
27
#include <linux/file.h>
O
Oded Gabbay 已提交
28 29 30 31 32 33 34
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/uaccess.h>
#include <linux/compat.h>
#include <uapi/linux/kfd_ioctl.h>
#include <linux/time.h>
#include <linux/mm.h>
35
#include <linux/mman.h>
36
#include <linux/ptrace.h>
37
#include <linux/dma-buf.h>
O
Oded Gabbay 已提交
38 39
#include <asm/processor.h>
#include "kfd_priv.h"
40
#include "kfd_device_queue_manager.h"
41
#include "kfd_dbgmgr.h"
P
Philip Yang 已提交
42
#include "kfd_svm.h"
A
Amber Lin 已提交
43
#include "amdgpu_amdkfd.h"
A
Amber Lin 已提交
44
#include "kfd_smi_events.h"
O
Oded Gabbay 已提交
45 46 47

static long kfd_ioctl(struct file *, unsigned int, unsigned long);
static int kfd_open(struct inode *, struct file *);
48
static int kfd_release(struct inode *, struct file *);
49
static int kfd_mmap(struct file *, struct vm_area_struct *);
O
Oded Gabbay 已提交
50 51 52 53 54 55

static const char kfd_dev_name[] = "kfd";

static const struct file_operations kfd_fops = {
	.owner = THIS_MODULE,
	.unlocked_ioctl = kfd_ioctl,
56
	.compat_ioctl = compat_ptr_ioctl,
O
Oded Gabbay 已提交
57
	.open = kfd_open,
58
	.release = kfd_release,
59
	.mmap = kfd_mmap,
O
Oded Gabbay 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
};

static int kfd_char_dev_major = -1;
static struct class *kfd_class;
struct device *kfd_device;

int kfd_chardev_init(void)
{
	int err = 0;

	kfd_char_dev_major = register_chrdev(0, kfd_dev_name, &kfd_fops);
	err = kfd_char_dev_major;
	if (err < 0)
		goto err_register_chrdev;

	kfd_class = class_create(THIS_MODULE, kfd_dev_name);
	err = PTR_ERR(kfd_class);
	if (IS_ERR(kfd_class))
		goto err_class_create;

	kfd_device = device_create(kfd_class, NULL,
					MKDEV(kfd_char_dev_major, 0),
					NULL, kfd_dev_name);
	err = PTR_ERR(kfd_device);
	if (IS_ERR(kfd_device))
		goto err_device_create;

	return 0;

err_device_create:
	class_destroy(kfd_class);
err_class_create:
	unregister_chrdev(kfd_char_dev_major, kfd_dev_name);
err_register_chrdev:
	return err;
}

void kfd_chardev_exit(void)
{
	device_destroy(kfd_class, MKDEV(kfd_char_dev_major, 0));
	class_destroy(kfd_class);
	unregister_chrdev(kfd_char_dev_major, kfd_dev_name);
102
	kfd_device = NULL;
O
Oded Gabbay 已提交
103 104 105 106 107 108 109 110 111 112
}

struct device *kfd_chardev(void)
{
	return kfd_device;
}


static int kfd_open(struct inode *inode, struct file *filep)
{
113
	struct kfd_process *process;
114
	bool is_32bit_user_mode;
115

O
Oded Gabbay 已提交
116 117 118
	if (iminor(inode) != 0)
		return -ENODEV;

119
	is_32bit_user_mode = in_compat_syscall();
120

121
	if (is_32bit_user_mode) {
122 123 124 125 126 127 128
		dev_warn(kfd_device,
			"Process %d (32-bit) failed to open /dev/kfd\n"
			"32-bit processes are not supported by amdkfd\n",
			current->pid);
		return -EPERM;
	}

F
Felix Kuehling 已提交
129
	process = kfd_create_process(filep);
130 131 132
	if (IS_ERR(process))
		return PTR_ERR(process);

133
	if (kfd_is_locked()) {
134 135
		dev_dbg(kfd_device, "kfd is locked!\n"
				"process %d unreferenced", process->pasid);
136
		kfd_unref_process(process);
137
		return -EAGAIN;
138 139 140 141
	}

	/* filep now owns the reference returned by kfd_create_process */
	filep->private_data = process;
142

143 144 145
	dev_dbg(kfd_device, "process %d opened, compat mode (32 bit) - %d\n",
		process->pasid, process->is_32bit_user_mode);

O
Oded Gabbay 已提交
146 147 148
	return 0;
}

149 150 151 152 153 154 155 156 157 158
static int kfd_release(struct inode *inode, struct file *filep)
{
	struct kfd_process *process = filep->private_data;

	if (process)
		kfd_unref_process(process);

	return 0;
}

159 160
static int kfd_ioctl_get_version(struct file *filep, struct kfd_process *p,
					void *data)
O
Oded Gabbay 已提交
161
{
162
	struct kfd_ioctl_get_version_args *args = data;
163

164 165
	args->major_version = KFD_IOCTL_MAJOR_VERSION;
	args->minor_version = KFD_IOCTL_MINOR_VERSION;
166

167
	return 0;
O
Oded Gabbay 已提交
168 169
}

170 171 172 173
static int set_queue_properties_from_user(struct queue_properties *q_properties,
				struct kfd_ioctl_create_queue_args *args)
{
	if (args->queue_percentage > KFD_MAX_QUEUE_PERCENTAGE) {
174
		pr_err("Queue percentage must be between 0 to KFD_MAX_QUEUE_PERCENTAGE\n");
175 176 177 178
		return -EINVAL;
	}

	if (args->queue_priority > KFD_MAX_QUEUE_PRIORITY) {
179
		pr_err("Queue priority must be between 0 to KFD_MAX_QUEUE_PRIORITY\n");
180 181 182 183
		return -EINVAL;
	}

	if ((args->ring_base_address) &&
184
		(!access_ok((const void __user *) args->ring_base_address,
185
			sizeof(uint64_t)))) {
186
		pr_err("Can't access ring base address\n");
187 188 189 190
		return -EFAULT;
	}

	if (!is_power_of_2(args->ring_size) && (args->ring_size != 0)) {
191
		pr_err("Ring size must be a power of 2 or 0\n");
192 193 194
		return -EINVAL;
	}

195
	if (!access_ok((const void __user *) args->read_pointer_address,
196
			sizeof(uint32_t))) {
197
		pr_err("Can't access read pointer\n");
198 199 200
		return -EFAULT;
	}

201
	if (!access_ok((const void __user *) args->write_pointer_address,
202
			sizeof(uint32_t))) {
203
		pr_err("Can't access write pointer\n");
204 205 206
		return -EFAULT;
	}

O
Oded Gabbay 已提交
207
	if (args->eop_buffer_address &&
208
		!access_ok((const void __user *) args->eop_buffer_address,
O
Oded Gabbay 已提交
209
			sizeof(uint32_t))) {
210
		pr_debug("Can't access eop buffer");
211 212 213
		return -EFAULT;
	}

O
Oded Gabbay 已提交
214
	if (args->ctx_save_restore_address &&
215
		!access_ok((const void __user *) args->ctx_save_restore_address,
O
Oded Gabbay 已提交
216
			sizeof(uint32_t))) {
217
		pr_debug("Can't access ctx save restore buffer");
218 219 220
		return -EFAULT;
	}

221
	q_properties->is_interop = false;
222
	q_properties->is_gws = false;
223 224 225 226 227 228
	q_properties->queue_percent = args->queue_percentage;
	q_properties->priority = args->queue_priority;
	q_properties->queue_address = args->ring_base_address;
	q_properties->queue_size = args->ring_size;
	q_properties->read_ptr = (uint32_t *) args->read_pointer_address;
	q_properties->write_ptr = (uint32_t *) args->write_pointer_address;
229 230 231 232 233
	q_properties->eop_ring_buffer_address = args->eop_buffer_address;
	q_properties->eop_ring_buffer_size = args->eop_buffer_size;
	q_properties->ctx_save_restore_area_address =
			args->ctx_save_restore_address;
	q_properties->ctx_save_restore_area_size = args->ctx_save_restore_size;
F
Felix Kuehling 已提交
234
	q_properties->ctl_stack_size = args->ctl_stack_size;
235 236 237
	if (args->queue_type == KFD_IOC_QUEUE_TYPE_COMPUTE ||
		args->queue_type == KFD_IOC_QUEUE_TYPE_COMPUTE_AQL)
		q_properties->type = KFD_QUEUE_TYPE_COMPUTE;
238 239
	else if (args->queue_type == KFD_IOC_QUEUE_TYPE_SDMA)
		q_properties->type = KFD_QUEUE_TYPE_SDMA;
240 241
	else if (args->queue_type == KFD_IOC_QUEUE_TYPE_SDMA_XGMI)
		q_properties->type = KFD_QUEUE_TYPE_SDMA_XGMI;
242 243 244 245 246 247 248 249
	else
		return -ENOTSUPP;

	if (args->queue_type == KFD_IOC_QUEUE_TYPE_COMPUTE_AQL)
		q_properties->format = KFD_QUEUE_FORMAT_AQL;
	else
		q_properties->format = KFD_QUEUE_FORMAT_PM4;

250
	pr_debug("Queue Percentage: %d, %d\n",
251 252
			q_properties->queue_percent, args->queue_percentage);

253
	pr_debug("Queue Priority: %d, %d\n",
254 255
			q_properties->priority, args->queue_priority);

256
	pr_debug("Queue Address: 0x%llX, 0x%llX\n",
257 258
			q_properties->queue_address, args->ring_base_address);

259
	pr_debug("Queue Size: 0x%llX, %u\n",
260 261
			q_properties->queue_size, args->ring_size);

262
	pr_debug("Queue r/w Pointers: %px, %px\n",
263 264
			q_properties->read_ptr,
			q_properties->write_ptr);
265

266
	pr_debug("Queue Format: %d\n", q_properties->format);
267

268
	pr_debug("Queue EOP: 0x%llX\n", q_properties->eop_ring_buffer_address);
269

270
	pr_debug("Queue CTX save area: 0x%llX\n",
271 272
			q_properties->ctx_save_restore_area_address);

273 274 275
	return 0;
}

276 277
static int kfd_ioctl_create_queue(struct file *filep, struct kfd_process *p,
					void *data)
O
Oded Gabbay 已提交
278
{
279
	struct kfd_ioctl_create_queue_args *args = data;
280 281 282 283 284
	struct kfd_dev *dev;
	int err = 0;
	unsigned int queue_id;
	struct kfd_process_device *pdd;
	struct queue_properties q_properties;
285
	uint32_t doorbell_offset_in_process = 0;
286 287 288

	memset(&q_properties, 0, sizeof(struct queue_properties));

289
	pr_debug("Creating queue ioctl\n");
290

291
	err = set_queue_properties_from_user(&q_properties, args);
292 293 294
	if (err)
		return err;

295
	pr_debug("Looking for gpu id 0x%x\n", args->gpu_id);
296
	dev = kfd_device_by_id(args->gpu_id);
297
	if (!dev) {
298
		pr_debug("Could not find gpu id 0x%x\n", args->gpu_id);
299
		return -EINVAL;
300
	}
301 302 303 304

	mutex_lock(&p->mutex);

	pdd = kfd_bind_process_to_device(dev, p);
305
	if (IS_ERR(pdd)) {
306
		err = -ESRCH;
307 308 309
		goto err_bind_process;
	}

310
	pr_debug("Creating queue for PASID 0x%x on gpu 0x%x\n",
311 312 313
			p->pasid,
			dev->id);

314
	err = pqm_create_queue(&p->pqm, dev, filep, &q_properties, &queue_id, NULL, NULL,
315
			&doorbell_offset_in_process);
316 317 318
	if (err != 0)
		goto err_create_queue;

319
	args->queue_id = queue_id;
320

321

322
	/* Return gpu_id as doorbell offset for mmap usage */
323 324
	args->doorbell_offset = KFD_MMAP_TYPE_DOORBELL;
	args->doorbell_offset |= KFD_MMAP_GPU_ID(args->gpu_id);
325
	if (KFD_IS_SOC15(dev))
326 327
		/* On SOC15 ASICs, include the doorbell offset within the
		 * process doorbell frame, which is 2 pages.
328
		 */
329
		args->doorbell_offset |= doorbell_offset_in_process;
330 331 332

	mutex_unlock(&p->mutex);

333
	pr_debug("Queue id %d was created successfully\n", args->queue_id);
334

335
	pr_debug("Ring buffer address == 0x%016llX\n",
336
			args->ring_base_address);
337

338
	pr_debug("Read ptr address    == 0x%016llX\n",
339
			args->read_pointer_address);
340

341
	pr_debug("Write ptr address   == 0x%016llX\n",
342
			args->write_pointer_address);
343 344 345 346 347 348 349

	return 0;

err_create_queue:
err_bind_process:
	mutex_unlock(&p->mutex);
	return err;
O
Oded Gabbay 已提交
350 351 352
}

static int kfd_ioctl_destroy_queue(struct file *filp, struct kfd_process *p,
353
					void *data)
O
Oded Gabbay 已提交
354
{
355
	int retval;
356
	struct kfd_ioctl_destroy_queue_args *args = data;
357

358
	pr_debug("Destroying queue id %d for pasid 0x%x\n",
359
				args->queue_id,
360 361 362 363
				p->pasid);

	mutex_lock(&p->mutex);

364
	retval = pqm_destroy_queue(&p->pqm, args->queue_id);
365 366 367

	mutex_unlock(&p->mutex);
	return retval;
O
Oded Gabbay 已提交
368 369 370
}

static int kfd_ioctl_update_queue(struct file *filp, struct kfd_process *p,
371
					void *data)
O
Oded Gabbay 已提交
372
{
373
	int retval;
374
	struct kfd_ioctl_update_queue_args *args = data;
375 376
	struct queue_properties properties;

377
	if (args->queue_percentage > KFD_MAX_QUEUE_PERCENTAGE) {
378
		pr_err("Queue percentage must be between 0 to KFD_MAX_QUEUE_PERCENTAGE\n");
379 380 381
		return -EINVAL;
	}

382
	if (args->queue_priority > KFD_MAX_QUEUE_PRIORITY) {
383
		pr_err("Queue priority must be between 0 to KFD_MAX_QUEUE_PRIORITY\n");
384 385 386
		return -EINVAL;
	}

387
	if ((args->ring_base_address) &&
388
		(!access_ok((const void __user *) args->ring_base_address,
389
			sizeof(uint64_t)))) {
390
		pr_err("Can't access ring base address\n");
391 392 393
		return -EFAULT;
	}

394
	if (!is_power_of_2(args->ring_size) && (args->ring_size != 0)) {
395
		pr_err("Ring size must be a power of 2 or 0\n");
396 397 398
		return -EINVAL;
	}

399 400 401 402
	properties.queue_address = args->ring_base_address;
	properties.queue_size = args->ring_size;
	properties.queue_percent = args->queue_percentage;
	properties.priority = args->queue_priority;
403

404
	pr_debug("Updating queue id %d for pasid 0x%x\n",
405
			args->queue_id, p->pasid);
406 407 408

	mutex_lock(&p->mutex);

409
	retval = pqm_update_queue_properties(&p->pqm, args->queue_id, &properties);
410 411 412 413

	mutex_unlock(&p->mutex);

	return retval;
O
Oded Gabbay 已提交
414 415
}

416 417 418 419 420 421
static int kfd_ioctl_set_cu_mask(struct file *filp, struct kfd_process *p,
					void *data)
{
	int retval;
	const int max_num_cus = 1024;
	struct kfd_ioctl_set_cu_mask_args *args = data;
422
	struct mqd_update_info minfo = {0};
423 424 425 426 427 428 429 430 431
	uint32_t __user *cu_mask_ptr = (uint32_t __user *)args->cu_mask_ptr;
	size_t cu_mask_size = sizeof(uint32_t) * (args->num_cu_mask / 32);

	if ((args->num_cu_mask % 32) != 0) {
		pr_debug("num_cu_mask 0x%x must be a multiple of 32",
				args->num_cu_mask);
		return -EINVAL;
	}

432 433
	minfo.cu_mask.count = args->num_cu_mask;
	if (minfo.cu_mask.count == 0) {
434 435 436 437 438 439 440 441
		pr_debug("CU mask cannot be 0");
		return -EINVAL;
	}

	/* To prevent an unreasonably large CU mask size, set an arbitrary
	 * limit of max_num_cus bits.  We can then just drop any CU mask bits
	 * past max_num_cus bits and just use the first max_num_cus bits.
	 */
442
	if (minfo.cu_mask.count > max_num_cus) {
443
		pr_debug("CU mask cannot be greater than 1024 bits");
444
		minfo.cu_mask.count = max_num_cus;
445 446 447
		cu_mask_size = sizeof(uint32_t) * (max_num_cus/32);
	}

448 449
	minfo.cu_mask.ptr = kzalloc(cu_mask_size, GFP_KERNEL);
	if (!minfo.cu_mask.ptr)
450 451
		return -ENOMEM;

452
	retval = copy_from_user(minfo.cu_mask.ptr, cu_mask_ptr, cu_mask_size);
453 454
	if (retval) {
		pr_debug("Could not copy CU mask from userspace");
455 456
		retval = -EFAULT;
		goto out;
457 458
	}

459 460
	minfo.update_flag = UPDATE_FLAG_CU_MASK;

461 462
	mutex_lock(&p->mutex);

463
	retval = pqm_update_mqd(&p->pqm, args->queue_id, &minfo);
464 465 466

	mutex_unlock(&p->mutex);

467 468
out:
	kfree(minfo.cu_mask.ptr);
469 470 471
	return retval;
}

472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
static int kfd_ioctl_get_queue_wave_state(struct file *filep,
					  struct kfd_process *p, void *data)
{
	struct kfd_ioctl_get_queue_wave_state_args *args = data;
	int r;

	mutex_lock(&p->mutex);

	r = pqm_get_wave_state(&p->pqm, args->queue_id,
			       (void __user *)args->ctl_stack_address,
			       &args->ctl_stack_used_size,
			       &args->save_area_used_size);

	mutex_unlock(&p->mutex);

	return r;
}

490 491
static int kfd_ioctl_set_memory_policy(struct file *filep,
					struct kfd_process *p, void *data)
O
Oded Gabbay 已提交
492
{
493
	struct kfd_ioctl_set_memory_policy_args *args = data;
494 495 496 497 498
	struct kfd_dev *dev;
	int err = 0;
	struct kfd_process_device *pdd;
	enum cache_policy default_policy, alternate_policy;

499 500
	if (args->default_policy != KFD_IOC_CACHE_POLICY_COHERENT
	    && args->default_policy != KFD_IOC_CACHE_POLICY_NONCOHERENT) {
501 502 503
		return -EINVAL;
	}

504 505
	if (args->alternate_policy != KFD_IOC_CACHE_POLICY_COHERENT
	    && args->alternate_policy != KFD_IOC_CACHE_POLICY_NONCOHERENT) {
506 507 508
		return -EINVAL;
	}

509
	dev = kfd_device_by_id(args->gpu_id);
510
	if (!dev)
511 512 513 514 515
		return -EINVAL;

	mutex_lock(&p->mutex);

	pdd = kfd_bind_process_to_device(dev, p);
516
	if (IS_ERR(pdd)) {
517
		err = -ESRCH;
518 519 520
		goto out;
	}

521
	default_policy = (args->default_policy == KFD_IOC_CACHE_POLICY_COHERENT)
522 523 524
			 ? cache_policy_coherent : cache_policy_noncoherent;

	alternate_policy =
525
		(args->alternate_policy == KFD_IOC_CACHE_POLICY_COHERENT)
526 527
		   ? cache_policy_coherent : cache_policy_noncoherent;

528
	if (!dev->dqm->ops.set_cache_memory_policy(dev->dqm,
529 530 531
				&pdd->qpd,
				default_policy,
				alternate_policy,
532 533
				(void __user *)args->alternate_aperture_base,
				args->alternate_aperture_size))
534 535 536 537 538 539
		err = -EINVAL;

out:
	mutex_unlock(&p->mutex);

	return err;
O
Oded Gabbay 已提交
540 541
}

542 543 544 545 546 547 548 549 550
static int kfd_ioctl_set_trap_handler(struct file *filep,
					struct kfd_process *p, void *data)
{
	struct kfd_ioctl_set_trap_handler_args *args = data;
	struct kfd_dev *dev;
	int err = 0;
	struct kfd_process_device *pdd;

	dev = kfd_device_by_id(args->gpu_id);
K
Kent Russell 已提交
551
	if (!dev)
552 553 554 555 556 557 558 559 560 561
		return -EINVAL;

	mutex_lock(&p->mutex);

	pdd = kfd_bind_process_to_device(dev, p);
	if (IS_ERR(pdd)) {
		err = -ESRCH;
		goto out;
	}

562
	kfd_process_set_trap_handler(&pdd->qpd, args->tba_addr, args->tma_addr);
563 564 565 566 567 568 569

out:
	mutex_unlock(&p->mutex);

	return err;
}

570 571 572
static int kfd_ioctl_dbg_register(struct file *filep,
				struct kfd_process *p, void *data)
{
573 574 575 576 577 578 579 580
	struct kfd_ioctl_dbg_register_args *args = data;
	struct kfd_dev *dev;
	struct kfd_dbgmgr *dbgmgr_ptr;
	struct kfd_process_device *pdd;
	bool create_ok;
	long status = 0;

	dev = kfd_device_by_id(args->gpu_id);
581
	if (!dev)
582 583
		return -EINVAL;

584
	if (dev->adev->asic_type == CHIP_CARRIZO) {
585 586 587 588 589
		pr_debug("kfd_ioctl_dbg_register not supported on CZ\n");
		return -EINVAL;
	}

	mutex_lock(&p->mutex);
590
	mutex_lock(kfd_get_dbgmgr_mutex());
591 592 593 594 595 596 597

	/*
	 * make sure that we have pdd, if this the first queue created for
	 * this process
	 */
	pdd = kfd_bind_process_to_device(dev, p);
	if (IS_ERR(pdd)) {
K
Kent Russell 已提交
598 599
		status = PTR_ERR(pdd);
		goto out;
600 601
	}

602
	if (!dev->dbgmgr) {
603 604 605 606 607 608 609 610 611 612 613 614 615 616
		/* In case of a legal call, we have no dbgmgr yet */
		create_ok = kfd_dbgmgr_create(&dbgmgr_ptr, dev);
		if (create_ok) {
			status = kfd_dbgmgr_register(dbgmgr_ptr, p);
			if (status != 0)
				kfd_dbgmgr_destroy(dbgmgr_ptr);
			else
				dev->dbgmgr = dbgmgr_ptr;
		}
	} else {
		pr_debug("debugger already registered\n");
		status = -EINVAL;
	}

K
Kent Russell 已提交
617
out:
618
	mutex_unlock(kfd_get_dbgmgr_mutex());
619
	mutex_unlock(&p->mutex);
620 621 622 623

	return status;
}

624
static int kfd_ioctl_dbg_unregister(struct file *filep,
625 626
				struct kfd_process *p, void *data)
{
627 628 629 630 631
	struct kfd_ioctl_dbg_unregister_args *args = data;
	struct kfd_dev *dev;
	long status;

	dev = kfd_device_by_id(args->gpu_id);
632
	if (!dev || !dev->dbgmgr)
633 634
		return -EINVAL;

635
	if (dev->adev->asic_type == CHIP_CARRIZO) {
636
		pr_debug("kfd_ioctl_dbg_unregister not supported on CZ\n");
637 638 639 640 641 642
		return -EINVAL;
	}

	mutex_lock(kfd_get_dbgmgr_mutex());

	status = kfd_dbgmgr_unregister(dev->dbgmgr, p);
643
	if (!status) {
644 645 646 647 648
		kfd_dbgmgr_destroy(dev->dbgmgr);
		dev->dbgmgr = NULL;
	}

	mutex_unlock(kfd_get_dbgmgr_mutex());
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664

	return status;
}

/*
 * Parse and generate variable size data structure for address watch.
 * Total size of the buffer and # watch points is limited in order
 * to prevent kernel abuse. (no bearing to the much smaller HW limitation
 * which is enforced by dbgdev module)
 * please also note that the watch address itself are not "copied from user",
 * since it be set into the HW in user mode values.
 *
 */
static int kfd_ioctl_dbg_address_watch(struct file *filep,
					struct kfd_process *p, void *data)
{
665 666 667 668 669 670 671 672 673 674 675 676
	struct kfd_ioctl_dbg_address_watch_args *args = data;
	struct kfd_dev *dev;
	struct dbg_address_watch_info aw_info;
	unsigned char *args_buff;
	long status;
	void __user *cmd_from_user;
	uint64_t watch_mask_value = 0;
	unsigned int args_idx = 0;

	memset((void *) &aw_info, 0, sizeof(struct dbg_address_watch_info));

	dev = kfd_device_by_id(args->gpu_id);
677
	if (!dev)
678 679
		return -EINVAL;

680
	if (dev->adev->asic_type == CHIP_CARRIZO) {
681 682 683 684 685 686 687 688 689
		pr_debug("kfd_ioctl_dbg_wave_control not supported on CZ\n");
		return -EINVAL;
	}

	cmd_from_user = (void __user *) args->content_ptr;

	/* Validate arguments */

	if ((args->buf_size_in_bytes > MAX_ALLOWED_AW_BUFF_SIZE) ||
690
		(args->buf_size_in_bytes <= sizeof(*args) + sizeof(int) * 2) ||
691 692 693 694
		(cmd_from_user == NULL))
		return -EINVAL;

	/* this is the actual buffer to work with */
695
	args_buff = memdup_user(cmd_from_user,
696
				args->buf_size_in_bytes - sizeof(*args));
A
Al Viro 已提交
697 698
	if (IS_ERR(args_buff))
		return PTR_ERR(args_buff);
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716

	aw_info.process = p;

	aw_info.num_watch_points = *((uint32_t *)(&args_buff[args_idx]));
	args_idx += sizeof(aw_info.num_watch_points);

	aw_info.watch_mode = (enum HSA_DBG_WATCH_MODE *) &args_buff[args_idx];
	args_idx += sizeof(enum HSA_DBG_WATCH_MODE) * aw_info.num_watch_points;

	/*
	 * set watch address base pointer to point on the array base
	 * within args_buff
	 */
	aw_info.watch_address = (uint64_t *) &args_buff[args_idx];

	/* skip over the addresses buffer */
	args_idx += sizeof(aw_info.watch_address) * aw_info.num_watch_points;

717
	if (args_idx >= args->buf_size_in_bytes - sizeof(*args)) {
K
Kent Russell 已提交
718 719
		status = -EINVAL;
		goto out;
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
	}

	watch_mask_value = (uint64_t) args_buff[args_idx];

	if (watch_mask_value > 0) {
		/*
		 * There is an array of masks.
		 * set watch mask base pointer to point on the array base
		 * within args_buff
		 */
		aw_info.watch_mask = (uint64_t *) &args_buff[args_idx];

		/* skip over the masks buffer */
		args_idx += sizeof(aw_info.watch_mask) *
				aw_info.num_watch_points;
	} else {
		/* just the NULL mask, set to NULL and skip over it */
		aw_info.watch_mask = NULL;
		args_idx += sizeof(aw_info.watch_mask);
	}

741
	if (args_idx >= args->buf_size_in_bytes - sizeof(args)) {
K
Kent Russell 已提交
742 743
		status = -EINVAL;
		goto out;
744 745 746 747 748 749 750 751 752 753 754
	}

	/* Currently HSA Event is not supported for DBG */
	aw_info.watch_event = NULL;

	mutex_lock(kfd_get_dbgmgr_mutex());

	status = kfd_dbgmgr_address_watch(dev->dbgmgr, &aw_info);

	mutex_unlock(kfd_get_dbgmgr_mutex());

K
Kent Russell 已提交
755
out:
756
	kfree(args_buff);
757 758 759 760 761 762 763 764

	return status;
}

/* Parse and generate fixed size data structure for wave control */
static int kfd_ioctl_dbg_wave_control(struct file *filep,
					struct kfd_process *p, void *data)
{
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784
	struct kfd_ioctl_dbg_wave_control_args *args = data;
	struct kfd_dev *dev;
	struct dbg_wave_control_info wac_info;
	unsigned char *args_buff;
	uint32_t computed_buff_size;
	long status;
	void __user *cmd_from_user;
	unsigned int args_idx = 0;

	memset((void *) &wac_info, 0, sizeof(struct dbg_wave_control_info));

	/* we use compact form, independent of the packing attribute value */
	computed_buff_size = sizeof(*args) +
				sizeof(wac_info.mode) +
				sizeof(wac_info.operand) +
				sizeof(wac_info.dbgWave_msg.DbgWaveMsg) +
				sizeof(wac_info.dbgWave_msg.MemoryVA) +
				sizeof(wac_info.trapId);

	dev = kfd_device_by_id(args->gpu_id);
785
	if (!dev)
786 787
		return -EINVAL;

788
	if (dev->adev->asic_type == CHIP_CARRIZO) {
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
		pr_debug("kfd_ioctl_dbg_wave_control not supported on CZ\n");
		return -EINVAL;
	}

	/* input size must match the computed "compact" size */
	if (args->buf_size_in_bytes != computed_buff_size) {
		pr_debug("size mismatch, computed : actual %u : %u\n",
				args->buf_size_in_bytes, computed_buff_size);
		return -EINVAL;
	}

	cmd_from_user = (void __user *) args->content_ptr;

	if (cmd_from_user == NULL)
		return -EINVAL;

A
Al Viro 已提交
805
	/* copy the entire buffer from user */
806

A
Al Viro 已提交
807
	args_buff = memdup_user(cmd_from_user,
808
				args->buf_size_in_bytes - sizeof(*args));
A
Al Viro 已提交
809 810
	if (IS_ERR(args_buff))
		return PTR_ERR(args_buff);
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841

	/* move ptr to the start of the "pay-load" area */
	wac_info.process = p;

	wac_info.operand = *((enum HSA_DBG_WAVEOP *)(&args_buff[args_idx]));
	args_idx += sizeof(wac_info.operand);

	wac_info.mode = *((enum HSA_DBG_WAVEMODE *)(&args_buff[args_idx]));
	args_idx += sizeof(wac_info.mode);

	wac_info.trapId = *((uint32_t *)(&args_buff[args_idx]));
	args_idx += sizeof(wac_info.trapId);

	wac_info.dbgWave_msg.DbgWaveMsg.WaveMsgInfoGen2.Value =
					*((uint32_t *)(&args_buff[args_idx]));
	wac_info.dbgWave_msg.MemoryVA = NULL;

	mutex_lock(kfd_get_dbgmgr_mutex());

	pr_debug("Calling dbg manager process %p, operand %u, mode %u, trapId %u, message %u\n",
			wac_info.process, wac_info.operand,
			wac_info.mode, wac_info.trapId,
			wac_info.dbgWave_msg.DbgWaveMsg.WaveMsgInfoGen2.Value);

	status = kfd_dbgmgr_wave_control(dev->dbgmgr, &wac_info);

	pr_debug("Returned status of dbg manager is %ld\n", status);

	mutex_unlock(kfd_get_dbgmgr_mutex());

	kfree(args_buff);
842 843 844 845

	return status;
}

846 847
static int kfd_ioctl_get_clock_counters(struct file *filep,
				struct kfd_process *p, void *data)
O
Oded Gabbay 已提交
848
{
849
	struct kfd_ioctl_get_clock_counters_args *args = data;
850 851
	struct kfd_dev *dev;

852
	dev = kfd_device_by_id(args->gpu_id);
853 854
	if (dev)
		/* Reading GPU clock counter from KGD */
855
		args->gpu_clock_counter = amdgpu_amdkfd_get_gpu_clock_counter(dev->adev);
856 857 858
	else
		/* Node without GPU resource */
		args->gpu_clock_counter = 0;
859 860

	/* No access to rdtsc. Using raw monotonic time */
861
	args->cpu_clock_counter = ktime_get_raw_ns();
862
	args->system_clock_counter = ktime_get_boottime_ns();
863 864

	/* Since the counter is in nano-seconds we use 1GHz frequency */
865
	args->system_clock_freq = 1000000000;
866 867

	return 0;
O
Oded Gabbay 已提交
868 869 870 871
}


static int kfd_ioctl_get_process_apertures(struct file *filp,
872
				struct kfd_process *p, void *data)
O
Oded Gabbay 已提交
873
{
874
	struct kfd_ioctl_get_process_apertures_args *args = data;
875
	struct kfd_process_device_apertures *pAperture;
876
	int i;
877

878
	dev_dbg(kfd_device, "get apertures for PASID 0x%x", p->pasid);
879

880
	args->num_of_nodes = 0;
881 882

	mutex_lock(&p->mutex);
883 884 885 886 887 888 889 890 891 892 893 894 895
	/* Run over all pdd of the process */
	for (i = 0; i < p->n_pdds; i++) {
		struct kfd_process_device *pdd = p->pdds[i];

		pAperture =
			&args->process_apertures[args->num_of_nodes];
		pAperture->gpu_id = pdd->dev->id;
		pAperture->lds_base = pdd->lds_base;
		pAperture->lds_limit = pdd->lds_limit;
		pAperture->gpuvm_base = pdd->gpuvm_base;
		pAperture->gpuvm_limit = pdd->gpuvm_limit;
		pAperture->scratch_base = pdd->scratch_base;
		pAperture->scratch_limit = pdd->scratch_limit;
896

897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
		dev_dbg(kfd_device,
			"node id %u\n", args->num_of_nodes);
		dev_dbg(kfd_device,
			"gpu id %u\n", pdd->dev->id);
		dev_dbg(kfd_device,
			"lds_base %llX\n", pdd->lds_base);
		dev_dbg(kfd_device,
			"lds_limit %llX\n", pdd->lds_limit);
		dev_dbg(kfd_device,
			"gpuvm_base %llX\n", pdd->gpuvm_base);
		dev_dbg(kfd_device,
			"gpuvm_limit %llX\n", pdd->gpuvm_limit);
		dev_dbg(kfd_device,
			"scratch_base %llX\n", pdd->scratch_base);
		dev_dbg(kfd_device,
			"scratch_limit %llX\n", pdd->scratch_limit);
913

914 915 916
		if (++args->num_of_nodes >= NUM_OF_SUPPORTED_GPUS)
			break;
	}
917 918 919
	mutex_unlock(&p->mutex);

	return 0;
O
Oded Gabbay 已提交
920 921
}

922 923 924 925 926 927
static int kfd_ioctl_get_process_apertures_new(struct file *filp,
				struct kfd_process *p, void *data)
{
	struct kfd_ioctl_get_process_apertures_new_args *args = data;
	struct kfd_process_device_apertures *pa;
	int ret;
928
	int i;
929

930
	dev_dbg(kfd_device, "get apertures for PASID 0x%x", p->pasid);
931 932 933 934 935 936

	if (args->num_of_nodes == 0) {
		/* Return number of nodes, so that user space can alloacate
		 * sufficient memory
		 */
		mutex_lock(&p->mutex);
937
		args->num_of_nodes = p->n_pdds;
938 939 940 941 942 943 944 945 946 947 948 949 950 951
		goto out_unlock;
	}

	/* Fill in process-aperture information for all available
	 * nodes, but not more than args->num_of_nodes as that is
	 * the amount of memory allocated by user
	 */
	pa = kzalloc((sizeof(struct kfd_process_device_apertures) *
				args->num_of_nodes), GFP_KERNEL);
	if (!pa)
		return -ENOMEM;

	mutex_lock(&p->mutex);

952
	if (!p->n_pdds) {
953 954 955 956 957 958
		args->num_of_nodes = 0;
		kfree(pa);
		goto out_unlock;
	}

	/* Run over all pdd of the process */
959 960 961 962 963 964 965 966 967 968
	for (i = 0; i < min(p->n_pdds, args->num_of_nodes); i++) {
		struct kfd_process_device *pdd = p->pdds[i];

		pa[i].gpu_id = pdd->dev->id;
		pa[i].lds_base = pdd->lds_base;
		pa[i].lds_limit = pdd->lds_limit;
		pa[i].gpuvm_base = pdd->gpuvm_base;
		pa[i].gpuvm_limit = pdd->gpuvm_limit;
		pa[i].scratch_base = pdd->scratch_base;
		pa[i].scratch_limit = pdd->scratch_limit;
969 970 971 972 973 974 975 976 977 978 979 980 981 982 983

		dev_dbg(kfd_device,
			"gpu id %u\n", pdd->dev->id);
		dev_dbg(kfd_device,
			"lds_base %llX\n", pdd->lds_base);
		dev_dbg(kfd_device,
			"lds_limit %llX\n", pdd->lds_limit);
		dev_dbg(kfd_device,
			"gpuvm_base %llX\n", pdd->gpuvm_base);
		dev_dbg(kfd_device,
			"gpuvm_limit %llX\n", pdd->gpuvm_limit);
		dev_dbg(kfd_device,
			"scratch_base %llX\n", pdd->scratch_base);
		dev_dbg(kfd_device,
			"scratch_limit %llX\n", pdd->scratch_limit);
984
	}
985 986
	mutex_unlock(&p->mutex);

987
	args->num_of_nodes = i;
988 989 990
	ret = copy_to_user(
			(void __user *)args->kfd_process_device_apertures_ptr,
			pa,
991
			(i * sizeof(struct kfd_process_device_apertures)));
992 993 994 995 996 997 998 999
	kfree(pa);
	return ret ? -EFAULT : 0;

out_unlock:
	mutex_unlock(&p->mutex);
	return 0;
}

1000 1001 1002
static int kfd_ioctl_create_event(struct file *filp, struct kfd_process *p,
					void *data)
{
1003 1004 1005
	struct kfd_ioctl_create_event_args *args = data;
	int err;

1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
	/* For dGPUs the event page is allocated in user mode. The
	 * handle is passed to KFD with the first call to this IOCTL
	 * through the event_page_offset field.
	 */
	if (args->event_page_offset) {
		struct kfd_dev *kfd;
		struct kfd_process_device *pdd;
		void *mem, *kern_addr;
		uint64_t size;

		kfd = kfd_device_by_id(GET_GPU_ID(args->event_page_offset));
		if (!kfd) {
			pr_err("Getting device by id failed in %s\n", __func__);
			return -EINVAL;
		}

		mutex_lock(&p->mutex);
1023 1024 1025 1026 1027 1028 1029

		if (p->signal_page) {
			pr_err("Event page is already set\n");
			err = -EINVAL;
			goto out_unlock;
		}

1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
		pdd = kfd_bind_process_to_device(kfd, p);
		if (IS_ERR(pdd)) {
			err = PTR_ERR(pdd);
			goto out_unlock;
		}

		mem = kfd_process_device_translate_handle(pdd,
				GET_IDR_HANDLE(args->event_page_offset));
		if (!mem) {
			pr_err("Can't find BO, offset is 0x%llx\n",
			       args->event_page_offset);
			err = -EINVAL;
			goto out_unlock;
		}

1045
		err = amdgpu_amdkfd_gpuvm_map_gtt_bo_to_kernel(kfd->adev,
1046 1047 1048
						mem, &kern_addr, &size);
		if (err) {
			pr_err("Failed to map event page to kernel\n");
1049
			goto out_unlock;
1050 1051 1052 1053 1054
		}

		err = kfd_event_page_set(p, kern_addr, size);
		if (err) {
			pr_err("Failed to set event page\n");
1055
			amdgpu_amdkfd_gpuvm_unmap_gtt_bo_from_kernel(kfd->adev, mem);
1056
			goto out_unlock;
1057
		}
1058 1059 1060 1061

		p->signal_handle = args->event_page_offset;

		mutex_unlock(&p->mutex);
1062 1063
	}

1064 1065 1066 1067 1068 1069 1070
	err = kfd_event_create(filp, p, args->event_type,
				args->auto_reset != 0, args->node_id,
				&args->event_id, &args->event_trigger_data,
				&args->event_page_offset,
				&args->event_slot_index);

	return err;
1071 1072 1073 1074

out_unlock:
	mutex_unlock(&p->mutex);
	return err;
1075 1076 1077 1078 1079
}

static int kfd_ioctl_destroy_event(struct file *filp, struct kfd_process *p,
					void *data)
{
1080 1081 1082
	struct kfd_ioctl_destroy_event_args *args = data;

	return kfd_event_destroy(p, args->event_id);
1083 1084 1085 1086 1087
}

static int kfd_ioctl_set_event(struct file *filp, struct kfd_process *p,
				void *data)
{
1088 1089 1090
	struct kfd_ioctl_set_event_args *args = data;

	return kfd_set_event(p, args->event_id);
1091 1092 1093 1094 1095
}

static int kfd_ioctl_reset_event(struct file *filp, struct kfd_process *p,
				void *data)
{
1096 1097 1098
	struct kfd_ioctl_reset_event_args *args = data;

	return kfd_reset_event(p, args->event_id);
1099 1100 1101 1102 1103
}

static int kfd_ioctl_wait_events(struct file *filp, struct kfd_process *p,
				void *data)
{
1104 1105 1106 1107 1108 1109
	struct kfd_ioctl_wait_events_args *args = data;
	int err;

	err = kfd_wait_on_events(p, args->num_events,
			(void __user *)args->events_ptr,
			(args->wait_for_all != 0),
1110
			args->timeout, &args->wait_result);
1111 1112

	return err;
1113
}
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
static int kfd_ioctl_set_scratch_backing_va(struct file *filep,
					struct kfd_process *p, void *data)
{
	struct kfd_ioctl_set_scratch_backing_va_args *args = data;
	struct kfd_process_device *pdd;
	struct kfd_dev *dev;
	long err;

	dev = kfd_device_by_id(args->gpu_id);
	if (!dev)
		return -EINVAL;

	mutex_lock(&p->mutex);

	pdd = kfd_bind_process_to_device(dev, p);
	if (IS_ERR(pdd)) {
		err = PTR_ERR(pdd);
		goto bind_process_to_device_fail;
	}

	pdd->qpd.sh_hidden_private_base = args->va_addr;

	mutex_unlock(&p->mutex);

1138
	if (dev->dqm->sched_policy == KFD_SCHED_POLICY_NO_HWS &&
1139
	    pdd->qpd.vmid != 0 && dev->kfd2kgd->set_scratch_backing_va)
1140
		dev->kfd2kgd->set_scratch_backing_va(
1141
			dev->adev, args->va_addr, pdd->qpd.vmid);
1142 1143 1144 1145 1146 1147 1148

	return 0;

bind_process_to_device_fail:
	mutex_unlock(&p->mutex);
	return err;
}
1149

1150 1151 1152 1153 1154 1155 1156 1157 1158
static int kfd_ioctl_get_tile_config(struct file *filep,
		struct kfd_process *p, void *data)
{
	struct kfd_ioctl_get_tile_config_args *args = data;
	struct kfd_dev *dev;
	struct tile_config config;
	int err = 0;

	dev = kfd_device_by_id(args->gpu_id);
1159 1160
	if (!dev)
		return -EINVAL;
1161

1162
	amdgpu_amdkfd_get_tile_config(dev->adev, &config);
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191

	args->gb_addr_config = config.gb_addr_config;
	args->num_banks = config.num_banks;
	args->num_ranks = config.num_ranks;

	if (args->num_tile_configs > config.num_tile_configs)
		args->num_tile_configs = config.num_tile_configs;
	err = copy_to_user((void __user *)args->tile_config_ptr,
			config.tile_config_ptr,
			args->num_tile_configs * sizeof(uint32_t));
	if (err) {
		args->num_tile_configs = 0;
		return -EFAULT;
	}

	if (args->num_macro_tile_configs > config.num_macro_tile_configs)
		args->num_macro_tile_configs =
				config.num_macro_tile_configs;
	err = copy_to_user((void __user *)args->macro_tile_config_ptr,
			config.macro_tile_config_ptr,
			args->num_macro_tile_configs * sizeof(uint32_t));
	if (err) {
		args->num_macro_tile_configs = 0;
		return -EFAULT;
	}

	return 0;
}

1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
static int kfd_ioctl_acquire_vm(struct file *filep, struct kfd_process *p,
				void *data)
{
	struct kfd_ioctl_acquire_vm_args *args = data;
	struct kfd_process_device *pdd;
	struct kfd_dev *dev;
	struct file *drm_file;
	int ret;

	dev = kfd_device_by_id(args->gpu_id);
	if (!dev)
		return -EINVAL;

	drm_file = fget(args->drm_fd);
	if (!drm_file)
		return -EINVAL;

	mutex_lock(&p->mutex);

	pdd = kfd_get_process_device_data(dev, p);
	if (!pdd) {
		ret = -EINVAL;
		goto err_unlock;
	}

	if (pdd->drm_file) {
		ret = pdd->drm_file == drm_file ? 0 : -EBUSY;
		goto err_unlock;
	}

	ret = kfd_process_device_init_vm(pdd, drm_file);
	if (ret)
		goto err_unlock;
	/* On success, the PDD keeps the drm_file reference */
	mutex_unlock(&p->mutex);

	return 0;

err_unlock:
	mutex_unlock(&p->mutex);
	fput(drm_file);
	return ret;
}

1236
bool kfd_dev_is_large_bar(struct kfd_dev *dev)
1237 1238 1239
{
	struct kfd_local_mem_info mem_info;

1240 1241 1242 1243 1244
	if (debug_largebar) {
		pr_debug("Simulate large-bar allocation on non large-bar machine\n");
		return true;
	}

1245
	if (dev->use_iommu_v2)
1246 1247
		return false;

1248
	amdgpu_amdkfd_get_local_mem_info(dev->adev, &mem_info);
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
	if (mem_info.local_mem_size_private == 0 &&
			mem_info.local_mem_size_public > 0)
		return true;
	return false;
}

static int kfd_ioctl_alloc_memory_of_gpu(struct file *filep,
					struct kfd_process *p, void *data)
{
	struct kfd_ioctl_alloc_memory_of_gpu_args *args = data;
	struct kfd_process_device *pdd;
	void *mem;
	struct kfd_dev *dev;
	int idr_handle;
	long err;
	uint64_t offset = args->mmap_offset;
	uint32_t flags = args->flags;

	if (args->size == 0)
		return -EINVAL;

1270
#if IS_ENABLED(CONFIG_HSA_AMD_SVM)
1271 1272 1273
	/* Flush pending deferred work to avoid racing with deferred actions
	 * from previous memory map changes (e.g. munmap).
	 */
1274 1275
	svm_range_list_lock_and_flush_work(&p->svms, current->mm);
	mutex_lock(&p->svms.lock);
1276
	mmap_write_unlock(current->mm);
1277
	if (interval_tree_iter_first(&p->svms.objects,
1278 1279 1280 1281
				     args->va_addr >> PAGE_SHIFT,
				     (args->va_addr + args->size - 1) >> PAGE_SHIFT)) {
		pr_err("Address: 0x%llx already allocated by SVM\n",
			args->va_addr);
1282
		mutex_unlock(&p->svms.lock);
1283 1284
		return -EADDRINUSE;
	}
1285
	mutex_unlock(&p->svms.lock);
1286
#endif
1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305
	dev = kfd_device_by_id(args->gpu_id);
	if (!dev)
		return -EINVAL;

	if ((flags & KFD_IOC_ALLOC_MEM_FLAGS_PUBLIC) &&
		(flags & KFD_IOC_ALLOC_MEM_FLAGS_VRAM) &&
		!kfd_dev_is_large_bar(dev)) {
		pr_err("Alloc host visible vram on small bar is not allowed\n");
		return -EINVAL;
	}

	mutex_lock(&p->mutex);

	pdd = kfd_bind_process_to_device(dev, p);
	if (IS_ERR(pdd)) {
		err = PTR_ERR(pdd);
		goto err_unlock;
	}

1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316
	if (flags & KFD_IOC_ALLOC_MEM_FLAGS_DOORBELL) {
		if (args->size != kfd_doorbell_process_slice(dev)) {
			err = -EINVAL;
			goto err_unlock;
		}
		offset = kfd_get_process_doorbells(pdd);
	} else if (flags & KFD_IOC_ALLOC_MEM_FLAGS_MMIO_REMAP) {
		if (args->size != PAGE_SIZE) {
			err = -EINVAL;
			goto err_unlock;
		}
1317
		offset = dev->adev->rmmio_remap.bus_addr;
1318 1319 1320 1321 1322 1323
		if (!offset) {
			err = -ENOMEM;
			goto err_unlock;
		}
	}

A
Amber Lin 已提交
1324
	err = amdgpu_amdkfd_gpuvm_alloc_memory_of_gpu(
1325
		dev->adev, args->va_addr, args->size,
1326
		pdd->drm_priv, (struct kgd_mem **) &mem, &offset,
1327
		flags, false);
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337

	if (err)
		goto err_unlock;

	idr_handle = kfd_process_device_create_obj_handle(pdd, mem);
	if (idr_handle < 0) {
		err = -EFAULT;
		goto err_free;
	}

1338 1339 1340 1341
	/* Update the VRAM usage count */
	if (flags & KFD_IOC_ALLOC_MEM_FLAGS_VRAM)
		WRITE_ONCE(pdd->vram_usage, pdd->vram_usage + args->size);

1342 1343 1344 1345 1346
	mutex_unlock(&p->mutex);

	args->handle = MAKE_HANDLE(args->gpu_id, idr_handle);
	args->mmap_offset = offset;

O
Oak Zeng 已提交
1347 1348 1349
	/* MMIO is mapped through kfd device
	 * Generate a kfd mmap offset
	 */
1350 1351 1352
	if (flags & KFD_IOC_ALLOC_MEM_FLAGS_MMIO_REMAP)
		args->mmap_offset = KFD_MMAP_TYPE_MMIO
					| KFD_MMAP_GPU_ID(args->gpu_id);
O
Oak Zeng 已提交
1353

1354 1355 1356
	return 0;

err_free:
1357
	amdgpu_amdkfd_gpuvm_free_memory_of_gpu(dev->adev, (struct kgd_mem *)mem,
1358
					       pdd->drm_priv, NULL);
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
err_unlock:
	mutex_unlock(&p->mutex);
	return err;
}

static int kfd_ioctl_free_memory_of_gpu(struct file *filep,
					struct kfd_process *p, void *data)
{
	struct kfd_ioctl_free_memory_of_gpu_args *args = data;
	struct kfd_process_device *pdd;
	void *mem;
	struct kfd_dev *dev;
	int ret;
1372
	uint64_t size = 0;
1373 1374 1375 1376 1377 1378

	dev = kfd_device_by_id(GET_GPU_ID(args->handle));
	if (!dev)
		return -EINVAL;

	mutex_lock(&p->mutex);
1379 1380 1381 1382 1383 1384 1385 1386 1387
	/*
	 * Safeguard to prevent user space from freeing signal BO.
	 * It will be freed at process termination.
	 */
	if (p->signal_handle && (p->signal_handle == args->handle)) {
		pr_err("Free signal BO is not allowed\n");
		ret = -EPERM;
		goto err_unlock;
	}
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402

	pdd = kfd_get_process_device_data(dev, p);
	if (!pdd) {
		pr_err("Process device data doesn't exist\n");
		ret = -EINVAL;
		goto err_unlock;
	}

	mem = kfd_process_device_translate_handle(
		pdd, GET_IDR_HANDLE(args->handle));
	if (!mem) {
		ret = -EINVAL;
		goto err_unlock;
	}

1403
	ret = amdgpu_amdkfd_gpuvm_free_memory_of_gpu(dev->adev,
1404
				(struct kgd_mem *)mem, pdd->drm_priv, &size);
1405 1406 1407 1408 1409 1410 1411 1412

	/* If freeing the buffer failed, leave the handle in place for
	 * clean-up during process tear-down.
	 */
	if (!ret)
		kfd_process_device_remove_obj_handle(
			pdd, GET_IDR_HANDLE(args->handle));

1413 1414
	WRITE_ONCE(pdd->vram_usage, pdd->vram_usage - size);

1415 1416 1417 1418 1419
err_unlock:
	mutex_unlock(&p->mutex);
	return ret;
}

1420 1421 1422
static bool kfd_flush_tlb_after_unmap(struct kfd_dev *dev) {
	return KFD_GC_VERSION(dev) == IP_VERSION(9, 4, 2) ||
	       (KFD_GC_VERSION(dev) == IP_VERSION(9, 4, 1) &&
1423 1424
	        dev->adev->sdma.instance[0].fw_version >= 18) ||
	       KFD_GC_VERSION(dev) == IP_VERSION(9, 4, 0);
1425 1426
}

1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
static int kfd_ioctl_map_memory_to_gpu(struct file *filep,
					struct kfd_process *p, void *data)
{
	struct kfd_ioctl_map_memory_to_gpu_args *args = data;
	struct kfd_process_device *pdd, *peer_pdd;
	void *mem;
	struct kfd_dev *dev, *peer;
	long err = 0;
	int i;
	uint32_t *devices_arr = NULL;
1437
	bool table_freed = false;
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451

	dev = kfd_device_by_id(GET_GPU_ID(args->handle));
	if (!dev)
		return -EINVAL;

	if (!args->n_devices) {
		pr_debug("Device IDs array empty\n");
		return -EINVAL;
	}
	if (args->n_success > args->n_devices) {
		pr_debug("n_success exceeds n_devices\n");
		return -EINVAL;
	}

1452 1453
	devices_arr = kmalloc_array(args->n_devices, sizeof(*devices_arr),
				    GFP_KERNEL);
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493
	if (!devices_arr)
		return -ENOMEM;

	err = copy_from_user(devices_arr,
			     (void __user *)args->device_ids_array_ptr,
			     args->n_devices * sizeof(*devices_arr));
	if (err != 0) {
		err = -EFAULT;
		goto copy_from_user_failed;
	}

	mutex_lock(&p->mutex);

	pdd = kfd_bind_process_to_device(dev, p);
	if (IS_ERR(pdd)) {
		err = PTR_ERR(pdd);
		goto bind_process_to_device_failed;
	}

	mem = kfd_process_device_translate_handle(pdd,
						GET_IDR_HANDLE(args->handle));
	if (!mem) {
		err = -ENOMEM;
		goto get_mem_obj_from_handle_failed;
	}

	for (i = args->n_success; i < args->n_devices; i++) {
		peer = kfd_device_by_id(devices_arr[i]);
		if (!peer) {
			pr_debug("Getting device by id failed for 0x%x\n",
				 devices_arr[i]);
			err = -EINVAL;
			goto get_mem_obj_from_handle_failed;
		}

		peer_pdd = kfd_bind_process_to_device(peer, p);
		if (IS_ERR(peer_pdd)) {
			err = PTR_ERR(peer_pdd);
			goto get_mem_obj_from_handle_failed;
		}
A
Amber Lin 已提交
1494
		err = amdgpu_amdkfd_gpuvm_map_memory_to_gpu(
1495
			peer->adev, (struct kgd_mem *)mem,
1496
			peer_pdd->drm_priv, &table_freed);
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506
		if (err) {
			pr_err("Failed to map to gpu %d/%d\n",
			       i, args->n_devices);
			goto map_memory_to_gpu_failed;
		}
		args->n_success = i+1;
	}

	mutex_unlock(&p->mutex);

1507
	err = amdgpu_amdkfd_gpuvm_sync_memory(dev->adev, (struct kgd_mem *) mem, true);
1508 1509 1510 1511 1512 1513
	if (err) {
		pr_debug("Sync memory failed, wait interrupted by user signal\n");
		goto sync_memory_failed;
	}

	/* Flush TLBs after waiting for the page table updates to complete */
1514
	if (table_freed || !kfd_flush_tlb_after_unmap(dev)) {
1515 1516 1517 1518 1519 1520 1521 1522 1523
		for (i = 0; i < args->n_devices; i++) {
			peer = kfd_device_by_id(devices_arr[i]);
			if (WARN_ON_ONCE(!peer))
				continue;
			peer_pdd = kfd_get_process_device_data(peer, p);
			if (WARN_ON_ONCE(!peer_pdd))
				continue;
			kfd_flush_tlb(peer_pdd, TLB_FLUSH_LEGACY);
		}
1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562
	}
	kfree(devices_arr);

	return err;

bind_process_to_device_failed:
get_mem_obj_from_handle_failed:
map_memory_to_gpu_failed:
	mutex_unlock(&p->mutex);
copy_from_user_failed:
sync_memory_failed:
	kfree(devices_arr);

	return err;
}

static int kfd_ioctl_unmap_memory_from_gpu(struct file *filep,
					struct kfd_process *p, void *data)
{
	struct kfd_ioctl_unmap_memory_from_gpu_args *args = data;
	struct kfd_process_device *pdd, *peer_pdd;
	void *mem;
	struct kfd_dev *dev, *peer;
	long err = 0;
	uint32_t *devices_arr = NULL, i;

	dev = kfd_device_by_id(GET_GPU_ID(args->handle));
	if (!dev)
		return -EINVAL;

	if (!args->n_devices) {
		pr_debug("Device IDs array empty\n");
		return -EINVAL;
	}
	if (args->n_success > args->n_devices) {
		pr_debug("n_success exceeds n_devices\n");
		return -EINVAL;
	}

1563 1564
	devices_arr = kmalloc_array(args->n_devices, sizeof(*devices_arr),
				    GFP_KERNEL);
1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
	if (!devices_arr)
		return -ENOMEM;

	err = copy_from_user(devices_arr,
			     (void __user *)args->device_ids_array_ptr,
			     args->n_devices * sizeof(*devices_arr));
	if (err != 0) {
		err = -EFAULT;
		goto copy_from_user_failed;
	}

	mutex_lock(&p->mutex);

	pdd = kfd_get_process_device_data(dev, p);
	if (!pdd) {
1580
		err = -EINVAL;
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
		goto bind_process_to_device_failed;
	}

	mem = kfd_process_device_translate_handle(pdd,
						GET_IDR_HANDLE(args->handle));
	if (!mem) {
		err = -ENOMEM;
		goto get_mem_obj_from_handle_failed;
	}

	for (i = args->n_success; i < args->n_devices; i++) {
		peer = kfd_device_by_id(devices_arr[i]);
		if (!peer) {
			err = -EINVAL;
			goto get_mem_obj_from_handle_failed;
		}

		peer_pdd = kfd_get_process_device_data(peer, p);
		if (!peer_pdd) {
			err = -ENODEV;
			goto get_mem_obj_from_handle_failed;
		}
A
Amber Lin 已提交
1603
		err = amdgpu_amdkfd_gpuvm_unmap_memory_from_gpu(
1604
			peer->adev, (struct kgd_mem *)mem, peer_pdd->drm_priv);
1605 1606 1607 1608 1609
		if (err) {
			pr_err("Failed to unmap from gpu %d/%d\n",
			       i, args->n_devices);
			goto unmap_memory_from_gpu_failed;
		}
1610
		args->n_success = i+1;
1611
	}
1612 1613
	mutex_unlock(&p->mutex);

1614
	if (kfd_flush_tlb_after_unmap(dev)) {
1615
		err = amdgpu_amdkfd_gpuvm_sync_memory(dev->adev,
1616 1617 1618 1619 1620
				(struct kgd_mem *) mem, true);
		if (err) {
			pr_debug("Sync memory failed, wait interrupted by user signal\n");
			goto sync_memory_failed;
		}
1621

1622 1623 1624 1625 1626 1627 1628 1629 1630 1631
		/* Flush TLBs after waiting for the page table updates to complete */
		for (i = 0; i < args->n_devices; i++) {
			peer = kfd_device_by_id(devices_arr[i]);
			if (WARN_ON_ONCE(!peer))
				continue;
			peer_pdd = kfd_get_process_device_data(peer, p);
			if (WARN_ON_ONCE(!peer_pdd))
				continue;
			kfd_flush_tlb(peer_pdd, TLB_FLUSH_HEAVYWEIGHT);
		}
1632 1633 1634
	}
	kfree(devices_arr);

1635 1636 1637 1638 1639 1640 1641
	return 0;

bind_process_to_device_failed:
get_mem_obj_from_handle_failed:
unmap_memory_from_gpu_failed:
	mutex_unlock(&p->mutex);
copy_from_user_failed:
1642
sync_memory_failed:
1643 1644 1645 1646
	kfree(devices_arr);
	return err;
}

1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664
static int kfd_ioctl_alloc_queue_gws(struct file *filep,
		struct kfd_process *p, void *data)
{
	int retval;
	struct kfd_ioctl_alloc_queue_gws_args *args = data;
	struct queue *q;
	struct kfd_dev *dev;

	mutex_lock(&p->mutex);
	q = pqm_get_user_queue(&p->pqm, args->queue_id);

	if (q) {
		dev = q->device;
	} else {
		retval = -EINVAL;
		goto out_unlock;
	}

1665 1666 1667 1668 1669
	if (!dev->gws) {
		retval = -ENODEV;
		goto out_unlock;
	}

1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
	if (dev->dqm->sched_policy == KFD_SCHED_POLICY_NO_HWS) {
		retval = -ENODEV;
		goto out_unlock;
	}

	retval = pqm_set_gws(&p->pqm, args->queue_id, args->num_gws ? dev->gws : NULL);
	mutex_unlock(&p->mutex);

	args->first_gws = 0;
	return retval;

out_unlock:
	mutex_unlock(&p->mutex);
	return retval;
}

1686 1687 1688 1689 1690
static int kfd_ioctl_get_dmabuf_info(struct file *filep,
		struct kfd_process *p, void *data)
{
	struct kfd_ioctl_get_dmabuf_info_args *args = data;
	struct kfd_dev *dev = NULL;
1691
	struct amdgpu_device *dmabuf_adev;
1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710
	void *metadata_buffer = NULL;
	uint32_t flags;
	unsigned int i;
	int r;

	/* Find a KFD GPU device that supports the get_dmabuf_info query */
	for (i = 0; kfd_topology_enum_kfd_devices(i, &dev) == 0; i++)
		if (dev)
			break;
	if (!dev)
		return -EINVAL;

	if (args->metadata_ptr) {
		metadata_buffer = kzalloc(args->metadata_size, GFP_KERNEL);
		if (!metadata_buffer)
			return -ENOMEM;
	}

	/* Get dmabuf info from KGD */
1711 1712
	r = amdgpu_amdkfd_get_dmabuf_info(dev->adev, args->dmabuf_fd,
					  &dmabuf_adev, &args->size,
1713 1714 1715 1716 1717 1718
					  metadata_buffer, args->metadata_size,
					  &args->metadata_size, &flags);
	if (r)
		goto exit;

	/* Reverse-lookup gpu_id from kgd pointer */
1719
	dev = kfd_device_by_adev(dmabuf_adev);
1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757
	if (!dev) {
		r = -EINVAL;
		goto exit;
	}
	args->gpu_id = dev->id;
	args->flags = flags;

	/* Copy metadata buffer to user mode */
	if (metadata_buffer) {
		r = copy_to_user((void __user *)args->metadata_ptr,
				 metadata_buffer, args->metadata_size);
		if (r != 0)
			r = -EFAULT;
	}

exit:
	kfree(metadata_buffer);

	return r;
}

static int kfd_ioctl_import_dmabuf(struct file *filep,
				   struct kfd_process *p, void *data)
{
	struct kfd_ioctl_import_dmabuf_args *args = data;
	struct kfd_process_device *pdd;
	struct dma_buf *dmabuf;
	struct kfd_dev *dev;
	int idr_handle;
	uint64_t size;
	void *mem;
	int r;

	dev = kfd_device_by_id(args->gpu_id);
	if (!dev)
		return -EINVAL;

	dmabuf = dma_buf_get(args->dmabuf_fd);
1758 1759
	if (IS_ERR(dmabuf))
		return PTR_ERR(dmabuf);
1760 1761 1762 1763 1764 1765 1766 1767 1768

	mutex_lock(&p->mutex);

	pdd = kfd_bind_process_to_device(dev, p);
	if (IS_ERR(pdd)) {
		r = PTR_ERR(pdd);
		goto err_unlock;
	}

1769
	r = amdgpu_amdkfd_gpuvm_import_dmabuf(dev->adev, dmabuf,
1770
					      args->va_addr, pdd->drm_priv,
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
					      (struct kgd_mem **)&mem, &size,
					      NULL);
	if (r)
		goto err_unlock;

	idr_handle = kfd_process_device_create_obj_handle(pdd, mem);
	if (idr_handle < 0) {
		r = -EFAULT;
		goto err_free;
	}

	mutex_unlock(&p->mutex);
1783
	dma_buf_put(dmabuf);
1784 1785 1786 1787 1788 1789

	args->handle = MAKE_HANDLE(args->gpu_id, idr_handle);

	return 0;

err_free:
1790
	amdgpu_amdkfd_gpuvm_free_memory_of_gpu(dev->adev, (struct kgd_mem *)mem,
1791
					       pdd->drm_priv, NULL);
1792 1793
err_unlock:
	mutex_unlock(&p->mutex);
1794
	dma_buf_put(dmabuf);
1795 1796 1797
	return r;
}

A
Amber Lin 已提交
1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811
/* Handle requests for watching SMI events */
static int kfd_ioctl_smi_events(struct file *filep,
				struct kfd_process *p, void *data)
{
	struct kfd_ioctl_smi_events_args *args = data;
	struct kfd_dev *dev;

	dev = kfd_device_by_id(args->gpuid);
	if (!dev)
		return -EINVAL;

	return kfd_smi_event_open(dev, &args->anon_fd);
}

1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836
static int kfd_ioctl_set_xnack_mode(struct file *filep,
				    struct kfd_process *p, void *data)
{
	struct kfd_ioctl_set_xnack_mode_args *args = data;
	int r = 0;

	mutex_lock(&p->mutex);
	if (args->xnack_enabled >= 0) {
		if (!list_empty(&p->pqm.queues)) {
			pr_debug("Process has user queues running\n");
			mutex_unlock(&p->mutex);
			return -EBUSY;
		}
		if (args->xnack_enabled && !kfd_process_xnack_mode(p, true))
			r = -EPERM;
		else
			p->xnack_enabled = args->xnack_enabled;
	} else {
		args->xnack_enabled = p->xnack_enabled;
	}
	mutex_unlock(&p->mutex);

	return r;
}

1837
#if IS_ENABLED(CONFIG_HSA_AMD_SVM)
P
Philip Yang 已提交
1838 1839
static int kfd_ioctl_svm(struct file *filep, struct kfd_process *p, void *data)
{
P
Philip Yang 已提交
1840
	struct kfd_ioctl_svm_args *args = data;
P
Philip Yang 已提交
1841 1842
	int r = 0;

P
Philip Yang 已提交
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
	pr_debug("start 0x%llx size 0x%llx op 0x%x nattr 0x%x\n",
		 args->start_addr, args->size, args->op, args->nattr);

	if ((args->start_addr & ~PAGE_MASK) || (args->size & ~PAGE_MASK))
		return -EINVAL;
	if (!args->start_addr || !args->size)
		return -EINVAL;

	r = svm_ioctl(p, args->op, args->start_addr, args->size, args->nattr,
		      args->attrs);

P
Philip Yang 已提交
1854 1855
	return r;
}
1856 1857 1858 1859 1860 1861
#else
static int kfd_ioctl_svm(struct file *filep, struct kfd_process *p, void *data)
{
	return -EPERM;
}
#endif
P
Philip Yang 已提交
1862

1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885
static int criu_checkpoint_process(struct kfd_process *p,
			     uint8_t __user *user_priv_data,
			     uint64_t *priv_offset)
{
	struct kfd_criu_process_priv_data process_priv;
	int ret;

	memset(&process_priv, 0, sizeof(process_priv));

	process_priv.version = KFD_CRIU_PRIV_VERSION;

	ret = copy_to_user(user_priv_data + *priv_offset,
				&process_priv, sizeof(process_priv));

	if (ret) {
		pr_err("Failed to copy process information to user\n");
		ret = -EFAULT;
	}

	*priv_offset += sizeof(process_priv);
	return ret;
}

1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906
uint32_t get_process_num_bos(struct kfd_process *p)
{
	uint32_t num_of_bos = 0;
	int i;

	/* Run over all PDDs of the process */
	for (i = 0; i < p->n_pdds; i++) {
		struct kfd_process_device *pdd = p->pdds[i];
		void *mem;
		int id;

		idr_for_each_entry(&pdd->alloc_idr, mem, id) {
			struct kgd_mem *kgd_mem = (struct kgd_mem *)mem;

			if ((uint64_t)kgd_mem->va > pdd->gpuvm_base)
				num_of_bos++;
		}
	}
	return num_of_bos;
}

1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
static int criu_checkpoint_bos(struct kfd_process *p,
			       uint32_t num_bos,
			       uint8_t __user *user_bos,
			       uint8_t __user *user_priv_data,
			       uint64_t *priv_offset)
{
	struct kfd_criu_bo_bucket *bo_buckets;
	struct kfd_criu_bo_priv_data *bo_privs;
	int ret = 0, pdd_index, bo_index = 0, id;
	void *mem;

	bo_buckets = kvzalloc(num_bos * sizeof(*bo_buckets), GFP_KERNEL);
	if (!bo_buckets) {
		ret = -ENOMEM;
		goto exit;
	}

	bo_privs = kvzalloc(num_bos * sizeof(*bo_privs), GFP_KERNEL);
	if (!bo_privs) {
		ret = -ENOMEM;
		goto exit;
	}

	for (pdd_index = 0; pdd_index < p->n_pdds; pdd_index++) {
		struct kfd_process_device *pdd = p->pdds[pdd_index];
		struct amdgpu_bo *dumper_bo;
		struct kgd_mem *kgd_mem;

		idr_for_each_entry(&pdd->alloc_idr, mem, id) {
			struct kfd_criu_bo_bucket *bo_bucket;
			struct kfd_criu_bo_priv_data *bo_priv;
			int i, dev_idx = 0;

			if (!mem) {
				ret = -ENOMEM;
				goto exit;
			}

			kgd_mem = (struct kgd_mem *)mem;
			dumper_bo = kgd_mem->bo;

			if ((uint64_t)kgd_mem->va <= pdd->gpuvm_base)
				continue;

			bo_bucket = &bo_buckets[bo_index];
			bo_priv = &bo_privs[bo_index];

			bo_bucket->addr = (uint64_t)kgd_mem->va;
			bo_bucket->size = amdgpu_bo_size(dumper_bo);
			bo_bucket->gpu_id = pdd->dev->id;
			bo_bucket->alloc_flags = (uint32_t)kgd_mem->alloc_flags;
			bo_priv->idr_handle = id;

			if (bo_bucket->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_USERPTR) {
				ret = amdgpu_ttm_tt_get_userptr(&dumper_bo->tbo,
								&bo_priv->user_addr);
				if (ret) {
					pr_err("Failed to obtain user address for user-pointer bo\n");
					goto exit;
				}
			}
			if (bo_bucket->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_DOORBELL)
				bo_bucket->offset = KFD_MMAP_TYPE_DOORBELL |
					KFD_MMAP_GPU_ID(pdd->dev->id);
			else if (bo_bucket->alloc_flags &
				KFD_IOC_ALLOC_MEM_FLAGS_MMIO_REMAP)
				bo_bucket->offset = KFD_MMAP_TYPE_MMIO |
					KFD_MMAP_GPU_ID(pdd->dev->id);
			else
				bo_bucket->offset = amdgpu_bo_mmap_offset(dumper_bo);

			for (i = 0; i < p->n_pdds; i++) {
				if (amdgpu_amdkfd_bo_mapped_to_dev(p->pdds[i]->dev->adev, kgd_mem))
					bo_priv->mapped_gpuids[dev_idx++] = p->pdds[i]->dev->id;
			}

			pr_debug("bo_size = 0x%llx, bo_addr = 0x%llx bo_offset = 0x%llx\n"
					"gpu_id = 0x%x alloc_flags = 0x%x idr_handle = 0x%x",
					bo_bucket->size,
					bo_bucket->addr,
					bo_bucket->offset,
					bo_bucket->gpu_id,
					bo_bucket->alloc_flags,
					bo_priv->idr_handle);
			bo_index++;
		}
	}

	ret = copy_to_user(user_bos, bo_buckets, num_bos * sizeof(*bo_buckets));
	if (ret) {
		pr_err("Failed to copy BO information to user\n");
		ret = -EFAULT;
		goto exit;
	}

	ret = copy_to_user(user_priv_data + *priv_offset, bo_privs, num_bos * sizeof(*bo_privs));
	if (ret) {
		pr_err("Failed to copy BO priv information to user\n");
		ret = -EFAULT;
		goto exit;
	}

	*priv_offset += num_bos * sizeof(*bo_privs);

exit:

	kvfree(bo_buckets);
	kvfree(bo_privs);
	return ret;
}

2018 2019 2020 2021
static int criu_get_process_object_info(struct kfd_process *p,
					uint32_t *num_bos,
					uint32_t *num_objects,
					uint64_t *objs_priv_size)
2022
{
2023
	int ret;
2024
	uint64_t priv_size;
2025 2026
	uint32_t num_queues, num_events, num_svm_ranges;
	uint64_t queues_priv_data_size;
2027 2028 2029

	*num_bos = get_process_num_bos(p);

2030 2031 2032 2033 2034 2035 2036 2037 2038
	ret = kfd_process_get_queue_info(p, &num_queues, &queues_priv_data_size);
	if (ret)
		return ret;

	num_events = 0;     /* TODO: Implement Events */
	num_svm_ranges = 0; /* TODO: Implement SVM-Ranges */

	*num_objects = num_queues + num_events + num_svm_ranges;

2039 2040 2041
	if (objs_priv_size) {
		priv_size = sizeof(struct kfd_criu_process_priv_data);
		priv_size += *num_bos * sizeof(struct kfd_criu_bo_priv_data);
2042 2043 2044
		priv_size += queues_priv_data_size;
		/* TODO: Add Events priv size */
		/* TODO: Add SVM ranges priv size */
2045 2046
		*objs_priv_size = priv_size;
	}
2047
	return 0;
2048 2049
}

2050 2051 2052 2053
static int criu_checkpoint(struct file *filep,
			   struct kfd_process *p,
			   struct kfd_ioctl_criu_args *args)
{
2054
	int ret;
2055
	uint32_t num_bos, num_objects;
2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068
	uint64_t priv_size, priv_offset = 0;

	if (!args->bos || !args->priv_data)
		return -EINVAL;

	mutex_lock(&p->mutex);

	if (!p->n_pdds) {
		pr_err("No pdd for given process\n");
		ret = -ENODEV;
		goto exit_unlock;
	}

2069 2070 2071 2072 2073 2074 2075 2076
	/* Confirm all process queues are evicted */
	if (!p->queues_paused) {
		pr_err("Cannot dump process when queues are not in evicted state\n");
		/* CRIU plugin did not call op PROCESS_INFO before checkpointing */
		ret = -EINVAL;
		goto exit_unlock;
	}

2077 2078 2079
	ret = criu_get_process_object_info(p, &num_bos, &num_objects, &priv_size);
	if (ret)
		goto exit_unlock;
2080 2081

	if (num_bos != args->num_bos ||
2082
	    num_objects != args->num_objects ||
2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098
	    priv_size != args->priv_data_size) {

		ret = -EINVAL;
		goto exit_unlock;
	}

	/* each function will store private data inside priv_data and adjust priv_offset */
	ret = criu_checkpoint_process(p, (uint8_t __user *)args->priv_data, &priv_offset);
	if (ret)
		goto exit_unlock;

	ret = criu_checkpoint_bos(p, num_bos, (uint8_t __user *)args->bos,
			    (uint8_t __user *)args->priv_data, &priv_offset);
	if (ret)
		goto exit_unlock;

2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
	if (num_objects) {
		ret = kfd_criu_checkpoint_queues(p, (uint8_t __user *)args->priv_data,
						 &priv_offset);
		if (ret)
			goto exit_unlock;

		/* TODO: Dump Events */

		/* TODO: Dump SVM-Ranges */
	}

2110 2111 2112 2113 2114 2115 2116 2117
exit_unlock:
	mutex_unlock(&p->mutex);
	if (ret)
		pr_err("Failed to dump CRIU ret:%d\n", ret);
	else
		pr_debug("CRIU dump ret:%d\n", ret);

	return ret;
2118 2119
}

2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157
static int criu_restore_process(struct kfd_process *p,
				struct kfd_ioctl_criu_args *args,
				uint64_t *priv_offset,
				uint64_t max_priv_data_size)
{
	int ret = 0;
	struct kfd_criu_process_priv_data process_priv;

	if (*priv_offset + sizeof(process_priv) > max_priv_data_size)
		return -EINVAL;

	ret = copy_from_user(&process_priv,
				(void __user *)(args->priv_data + *priv_offset),
				sizeof(process_priv));
	if (ret) {
		pr_err("Failed to copy process private information from user\n");
		ret = -EFAULT;
		goto exit;
	}
	*priv_offset += sizeof(process_priv);

	if (process_priv.version != KFD_CRIU_PRIV_VERSION) {
		pr_err("Invalid CRIU API version (checkpointed:%d current:%d)\n",
			process_priv.version, KFD_CRIU_PRIV_VERSION);
		return -EINVAL;
	}

exit:
	return ret;
}

static int criu_restore_bos(struct kfd_process *p,
			    struct kfd_ioctl_criu_args *args,
			    uint64_t *priv_offset,
			    uint64_t max_priv_data_size)
{
	struct kfd_criu_bo_bucket *bo_buckets;
	struct kfd_criu_bo_priv_data *bo_privs;
2158
	const bool criu_resume = true;
2159 2160 2161 2162 2163 2164 2165
	bool flush_tlbs = false;
	int ret = 0, j = 0;
	uint32_t i;

	if (*priv_offset + (args->num_bos * sizeof(*bo_privs)) > max_priv_data_size)
		return -EINVAL;

2166 2167 2168
	/* Prevent MMU notifications until stage-4 IOCTL (CRIU_RESUME) is received */
	amdgpu_amdkfd_block_mmu_notifications(p->kgd_process_info);

2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
	bo_buckets = kvmalloc_array(args->num_bos, sizeof(*bo_buckets), GFP_KERNEL);
	if (!bo_buckets)
		return -ENOMEM;

	ret = copy_from_user(bo_buckets, (void __user *)args->bos,
			     args->num_bos * sizeof(*bo_buckets));
	if (ret) {
		pr_err("Failed to copy BOs information from user\n");
		ret = -EFAULT;
		goto exit;
	}

	bo_privs = kvmalloc_array(args->num_bos, sizeof(*bo_privs), GFP_KERNEL);
	if (!bo_privs) {
		ret = -ENOMEM;
		goto exit;
	}

	ret = copy_from_user(bo_privs, (void __user *)args->priv_data + *priv_offset,
			     args->num_bos * sizeof(*bo_privs));
	if (ret) {
		pr_err("Failed to copy BOs information from user\n");
		ret = -EFAULT;
		goto exit;
	}
	*priv_offset += args->num_bos * sizeof(*bo_privs);

	/* Create and map new BOs */
	for (i = 0; i < args->num_bos; i++) {
		struct kfd_criu_bo_bucket *bo_bucket;
		struct kfd_criu_bo_priv_data *bo_priv;
		struct kfd_dev *dev;
		struct kfd_process_device *pdd;
		void *mem;
		u64 offset;
		int idr_handle;

		bo_bucket = &bo_buckets[i];
		bo_priv = &bo_privs[i];

		dev = kfd_device_by_id(bo_bucket->gpu_id);
		if (!dev) {
			ret = -EINVAL;
			pr_err("Failed to get pdd\n");
			goto exit;
		}
		pdd = kfd_get_process_device_data(dev, p);
		if (!pdd) {
			ret = -EINVAL;
			pr_err("Failed to get pdd\n");
			goto exit;
		}

		pr_debug("kfd restore ioctl - bo_bucket[%d]:\n", i);
		pr_debug("size = 0x%llx, bo_addr = 0x%llx bo_offset = 0x%llx\n"
			"gpu_id = 0x%x alloc_flags = 0x%x\n"
			"idr_handle = 0x%x\n",
			bo_bucket->size,
			bo_bucket->addr,
			bo_bucket->offset,
			bo_bucket->gpu_id,
			bo_bucket->alloc_flags,
			bo_priv->idr_handle);

		if (bo_bucket->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_DOORBELL) {
			pr_debug("restore ioctl: KFD_IOC_ALLOC_MEM_FLAGS_DOORBELL\n");
			if (bo_bucket->size != kfd_doorbell_process_slice(dev)) {
				ret = -EINVAL;
				goto exit;
			}
			offset = kfd_get_process_doorbells(pdd);
		} else if (bo_bucket->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_MMIO_REMAP) {
			/* MMIO BOs need remapped bus address */
			pr_debug("restore ioctl :KFD_IOC_ALLOC_MEM_FLAGS_MMIO_REMAP\n");
			if (bo_bucket->size != PAGE_SIZE) {
				pr_err("Invalid page size\n");
				ret = -EINVAL;
				goto exit;
			}
			offset = dev->adev->rmmio_remap.bus_addr;
			if (!offset) {
				pr_err("amdgpu_amdkfd_get_mmio_remap_phys_addr failed\n");
				ret = -ENOMEM;
				goto exit;
			}
		} else if (bo_bucket->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_USERPTR) {
			offset = bo_priv->user_addr;
		}
		/* Create the BO */
		ret = amdgpu_amdkfd_gpuvm_alloc_memory_of_gpu(dev->adev,
						bo_bucket->addr,
						bo_bucket->size,
						pdd->drm_priv,
						(struct kgd_mem **) &mem,
						&offset,
2264 2265
						bo_bucket->alloc_flags,
						criu_resume);
2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377
		if (ret) {
			pr_err("Could not create the BO\n");
			ret = -ENOMEM;
			goto exit;
		}
		pr_debug("New BO created: size = 0x%llx, bo_addr = 0x%llx bo_offset = 0x%llx\n",
			bo_bucket->size, bo_bucket->addr, offset);

		/* Restore previuos IDR handle */
		pr_debug("Restoring old IDR handle for the BO");
		idr_handle = idr_alloc(&pdd->alloc_idr, mem,
				       bo_priv->idr_handle,
				       bo_priv->idr_handle + 1, GFP_KERNEL);

		if (idr_handle < 0) {
			pr_err("Could not allocate idr\n");
			amdgpu_amdkfd_gpuvm_free_memory_of_gpu(dev->adev,
						(struct kgd_mem *)mem,
						pdd->drm_priv, NULL);
			ret = -ENOMEM;
			goto exit;
		}

		if (bo_bucket->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_DOORBELL)
			bo_bucket->restored_offset = KFD_MMAP_TYPE_DOORBELL |
				KFD_MMAP_GPU_ID(pdd->dev->id);
		if (bo_bucket->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_MMIO_REMAP) {
			bo_bucket->restored_offset = KFD_MMAP_TYPE_MMIO |
				KFD_MMAP_GPU_ID(pdd->dev->id);
		} else if (bo_bucket->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_GTT) {
			bo_bucket->restored_offset = offset;
			pr_debug("updating offset for GTT\n");
		} else if (bo_bucket->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_VRAM) {
			bo_bucket->restored_offset = offset;
			/* Update the VRAM usage count */
			WRITE_ONCE(pdd->vram_usage, pdd->vram_usage + bo_bucket->size);
			pr_debug("updating offset for VRAM\n");
		}

		/* now map these BOs to GPU/s */
		for (j = 0; j < p->n_pdds; j++) {
			struct kfd_dev *peer;
			struct kfd_process_device *peer_pdd;
			bool table_freed = false;

			if (!bo_priv->mapped_gpuids[j])
				break;

			peer = kfd_device_by_id(bo_priv->mapped_gpuids[j]);
			if (!peer) {
				pr_debug("Getting device by id failed for 0x%x\n", pdd->dev->id);
				ret = -EINVAL;
				goto exit;
			}

			peer_pdd = kfd_bind_process_to_device(peer, p);
			if (IS_ERR(peer_pdd)) {
				ret = PTR_ERR(peer_pdd);
				goto exit;
			}
			pr_debug("map mem in restore ioctl -> 0x%llx\n",
				 ((struct kgd_mem *)mem)->va);
			ret = amdgpu_amdkfd_gpuvm_map_memory_to_gpu(peer->adev,
				(struct kgd_mem *)mem, peer_pdd->drm_priv, &table_freed);
			if (ret) {
				pr_err("Failed to map to gpu %d/%d\n", j, p->n_pdds);
				goto exit;
			}
			if (table_freed)
				flush_tlbs = true;
		}

		ret = amdgpu_amdkfd_gpuvm_sync_memory(dev->adev,
						      (struct kgd_mem *) mem, true);
		if (ret) {
			pr_debug("Sync memory failed, wait interrupted by user signal\n");
			goto exit;
		}

		pr_debug("map memory was successful for the BO\n");
	} /* done */

	if (flush_tlbs) {
		/* Flush TLBs after waiting for the page table updates to complete */
		for (j = 0; j < p->n_pdds; j++) {
			struct kfd_dev *peer;
			struct kfd_process_device *pdd = p->pdds[j];
			struct kfd_process_device *peer_pdd;

			peer = kfd_device_by_id(pdd->dev->id);
			if (WARN_ON_ONCE(!peer))
				continue;
			peer_pdd = kfd_get_process_device_data(peer, p);
			if (WARN_ON_ONCE(!peer_pdd))
				continue;
			kfd_flush_tlb(peer_pdd, TLB_FLUSH_LEGACY);
		}
	}

	/* Copy only the buckets back so user can read bo_buckets[N].restored_offset */
	ret = copy_to_user((void __user *)args->bos,
				bo_buckets,
				(args->num_bos * sizeof(*bo_buckets)));
	if (ret)
		ret = -EFAULT;

exit:
	kvfree(bo_buckets);
	kvfree(bo_privs);
	return ret;
}

2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433
static int criu_restore_objects(struct file *filep,
				struct kfd_process *p,
				struct kfd_ioctl_criu_args *args,
				uint64_t *priv_offset,
				uint64_t max_priv_data_size)
{
	int ret = 0;
	uint32_t i;

	BUILD_BUG_ON(offsetof(struct kfd_criu_queue_priv_data, object_type));
	BUILD_BUG_ON(offsetof(struct kfd_criu_event_priv_data, object_type));
	BUILD_BUG_ON(offsetof(struct kfd_criu_svm_range_priv_data, object_type));

	for (i = 0; i < args->num_objects; i++) {
		uint32_t object_type;

		if (*priv_offset + sizeof(object_type) > max_priv_data_size) {
			pr_err("Invalid private data size\n");
			return -EINVAL;
		}

		ret = get_user(object_type, (uint32_t __user *)(args->priv_data + *priv_offset));
		if (ret) {
			pr_err("Failed to copy private information from user\n");
			goto exit;
		}

		switch (object_type) {
		case KFD_CRIU_OBJECT_TYPE_QUEUE:
			ret = kfd_criu_restore_queue(p, (uint8_t __user *)args->priv_data,
						     priv_offset, max_priv_data_size);
			if (ret)
				goto exit;
			break;
		case KFD_CRIU_OBJECT_TYPE_EVENT:
			/* TODO: Implement Events */
			*priv_offset += sizeof(struct kfd_criu_event_priv_data);
			if (ret)
				goto exit;
			break;
		case KFD_CRIU_OBJECT_TYPE_SVM_RANGE:
			/* TODO: Implement SVM range */
			*priv_offset += sizeof(struct kfd_criu_svm_range_priv_data);
			if (ret)
				goto exit;
			break;
		default:
			pr_err("Invalid object type:%u at index:%d\n", object_type, i);
			ret = -EINVAL;
			goto exit;
		}
	}
exit:
	return ret;
}

2434 2435 2436 2437
static int criu_restore(struct file *filep,
			struct kfd_process *p,
			struct kfd_ioctl_criu_args *args)
{
2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466
	uint64_t priv_offset = 0;
	int ret = 0;

	pr_debug("CRIU restore (num_devices:%u num_bos:%u num_objects:%u priv_data_size:%llu)\n",
		 args->num_devices, args->num_bos, args->num_objects, args->priv_data_size);

	if (!args->bos || !args->devices || !args->priv_data || !args->priv_data_size ||
	    !args->num_devices || !args->num_bos)
		return -EINVAL;

	mutex_lock(&p->mutex);

	/*
	 * Set the process to evicted state to avoid running any new queues before all the memory
	 * mappings are ready.
	 */
	ret = kfd_process_evict_queues(p);
	if (ret)
		goto exit_unlock;

	/* Each function will adjust priv_offset based on how many bytes they consumed */
	ret = criu_restore_process(p, args, &priv_offset, args->priv_data_size);
	if (ret)
		goto exit_unlock;

	ret = criu_restore_bos(p, args, &priv_offset, args->priv_data_size);
	if (ret)
		goto exit_unlock;

2467 2468 2469 2470
	ret = criu_restore_objects(filep, p, args, &priv_offset, args->priv_data_size);
	if (ret)
		goto exit_unlock;

2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483
	if (priv_offset != args->priv_data_size) {
		pr_err("Invalid private data size\n");
		ret = -EINVAL;
	}

exit_unlock:
	mutex_unlock(&p->mutex);
	if (ret)
		pr_err("Failed to restore CRIU ret:%d\n", ret);
	else
		pr_debug("CRIU restore successful\n");

	return ret;
2484 2485 2486 2487 2488 2489
}

static int criu_unpause(struct file *filep,
			struct kfd_process *p,
			struct kfd_ioctl_criu_args *args)
{
2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507
	int ret;

	mutex_lock(&p->mutex);

	if (!p->queues_paused) {
		mutex_unlock(&p->mutex);
		return -EINVAL;
	}

	ret = kfd_process_restore_queues(p);
	if (ret)
		pr_err("Failed to unpause queues ret:%d\n", ret);
	else
		p->queues_paused = false;

	mutex_unlock(&p->mutex);

	return ret;
2508 2509 2510 2511 2512 2513
}

static int criu_resume(struct file *filep,
			struct kfd_process *p,
			struct kfd_ioctl_criu_args *args)
{
2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542
	struct kfd_process *target = NULL;
	struct pid *pid = NULL;
	int ret = 0;

	pr_debug("Inside %s, target pid for criu restore: %d\n", __func__,
		 args->pid);

	pid = find_get_pid(args->pid);
	if (!pid) {
		pr_err("Cannot find pid info for %i\n", args->pid);
		return -ESRCH;
	}

	pr_debug("calling kfd_lookup_process_by_pid\n");
	target = kfd_lookup_process_by_pid(pid);

	put_pid(pid);

	if (!target) {
		pr_debug("Cannot find process info for %i\n", args->pid);
		return -ESRCH;
	}

	mutex_lock(&target->mutex);
	ret =  amdgpu_amdkfd_criu_resume(target->kgd_process_info);
	mutex_unlock(&target->mutex);

	kfd_unref_process(target);
	return ret;
2543 2544 2545 2546 2547 2548
}

static int criu_process_info(struct file *filep,
				struct kfd_process *p,
				struct kfd_ioctl_criu_args *args)
{
2549 2550 2551 2552 2553 2554 2555 2556 2557 2558
	int ret = 0;

	mutex_lock(&p->mutex);

	if (!p->n_pdds) {
		pr_err("No pdd for given process\n");
		ret = -ENODEV;
		goto err_unlock;
	}

2559 2560 2561 2562 2563 2564
	ret = kfd_process_evict_queues(p);
	if (ret)
		goto err_unlock;

	p->queues_paused = true;

2565 2566 2567
	args->pid = task_pid_nr_ns(p->lead_thread,
					task_active_pid_ns(p->lead_thread));

2568 2569 2570 2571 2572 2573 2574
	ret = criu_get_process_object_info(p, &args->num_bos, &args->num_objects,
					   &args->priv_data_size);
	if (ret)
		goto err_unlock;

	dev_dbg(kfd_device, "Num of bos:%u objects:%u priv_data_size:%lld\n",
				args->num_bos, args->num_objects, args->priv_data_size);
2575 2576

err_unlock:
2577 2578 2579 2580
	if (ret) {
		kfd_process_restore_queues(p);
		p->queues_paused = false;
	}
2581 2582
	mutex_unlock(&p->mutex);
	return ret;
2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618
}

static int kfd_ioctl_criu(struct file *filep, struct kfd_process *p, void *data)
{
	struct kfd_ioctl_criu_args *args = data;
	int ret;

	dev_dbg(kfd_device, "CRIU operation: %d\n", args->op);
	switch (args->op) {
	case KFD_CRIU_OP_PROCESS_INFO:
		ret = criu_process_info(filep, p, args);
		break;
	case KFD_CRIU_OP_CHECKPOINT:
		ret = criu_checkpoint(filep, p, args);
		break;
	case KFD_CRIU_OP_UNPAUSE:
		ret = criu_unpause(filep, p, args);
		break;
	case KFD_CRIU_OP_RESTORE:
		ret = criu_restore(filep, p, args);
		break;
	case KFD_CRIU_OP_RESUME:
		ret = criu_resume(filep, p, args);
		break;
	default:
		dev_dbg(kfd_device, "Unsupported CRIU operation:%d\n", args->op);
		ret = -EINVAL;
		break;
	}

	if (ret)
		dev_dbg(kfd_device, "CRIU operation:%d err:%d\n", args->op, ret);

	return ret;
}

2619
#define AMDKFD_IOCTL_DEF(ioctl, _func, _flags) \
2620 2621
	[_IOC_NR(ioctl)] = {.cmd = ioctl, .func = _func, .flags = _flags, \
			    .cmd_drv = 0, .name = #ioctl}
2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644

/** Ioctl table */
static const struct amdkfd_ioctl_desc amdkfd_ioctls[] = {
	AMDKFD_IOCTL_DEF(AMDKFD_IOC_GET_VERSION,
			kfd_ioctl_get_version, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_CREATE_QUEUE,
			kfd_ioctl_create_queue, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_DESTROY_QUEUE,
			kfd_ioctl_destroy_queue, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_SET_MEMORY_POLICY,
			kfd_ioctl_set_memory_policy, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_GET_CLOCK_COUNTERS,
			kfd_ioctl_get_clock_counters, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_GET_PROCESS_APERTURES,
			kfd_ioctl_get_process_apertures, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_UPDATE_QUEUE,
			kfd_ioctl_update_queue, 0),
2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_CREATE_EVENT,
			kfd_ioctl_create_event, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_DESTROY_EVENT,
			kfd_ioctl_destroy_event, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_SET_EVENT,
			kfd_ioctl_set_event, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_RESET_EVENT,
			kfd_ioctl_reset_event, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_WAIT_EVENTS,
			kfd_ioctl_wait_events, 0),
2660 2661 2662 2663 2664

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_DBG_REGISTER,
			kfd_ioctl_dbg_register, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_DBG_UNREGISTER,
2665
			kfd_ioctl_dbg_unregister, 0),
2666 2667 2668 2669 2670 2671

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_DBG_ADDRESS_WATCH,
			kfd_ioctl_dbg_address_watch, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_DBG_WAVE_CONTROL,
			kfd_ioctl_dbg_wave_control, 0),
2672 2673 2674

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_SET_SCRATCH_BACKING_VA,
			kfd_ioctl_set_scratch_backing_va, 0),
2675 2676

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_GET_TILE_CONFIG,
2677 2678 2679 2680
			kfd_ioctl_get_tile_config, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_SET_TRAP_HANDLER,
			kfd_ioctl_set_trap_handler, 0),
2681 2682 2683

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_GET_PROCESS_APERTURES_NEW,
			kfd_ioctl_get_process_apertures_new, 0),
2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_ACQUIRE_VM,
			kfd_ioctl_acquire_vm, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_ALLOC_MEMORY_OF_GPU,
			kfd_ioctl_alloc_memory_of_gpu, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_FREE_MEMORY_OF_GPU,
			kfd_ioctl_free_memory_of_gpu, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_MAP_MEMORY_TO_GPU,
			kfd_ioctl_map_memory_to_gpu, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_UNMAP_MEMORY_FROM_GPU,
			kfd_ioctl_unmap_memory_from_gpu, 0),

2700 2701 2702
	AMDKFD_IOCTL_DEF(AMDKFD_IOC_SET_CU_MASK,
			kfd_ioctl_set_cu_mask, 0),

2703
	AMDKFD_IOCTL_DEF(AMDKFD_IOC_GET_QUEUE_WAVE_STATE,
2704 2705 2706 2707 2708 2709 2710
			kfd_ioctl_get_queue_wave_state, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_GET_DMABUF_INFO,
				kfd_ioctl_get_dmabuf_info, 0),

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_IMPORT_DMABUF,
				kfd_ioctl_import_dmabuf, 0),
2711

2712 2713
	AMDKFD_IOCTL_DEF(AMDKFD_IOC_ALLOC_QUEUE_GWS,
			kfd_ioctl_alloc_queue_gws, 0),
A
Amber Lin 已提交
2714 2715 2716

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_SMI_EVENTS,
			kfd_ioctl_smi_events, 0),
P
Philip Yang 已提交
2717 2718

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_SVM, kfd_ioctl_svm, 0),
2719 2720 2721

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_SET_XNACK_MODE,
			kfd_ioctl_set_xnack_mode, 0),
2722 2723 2724 2725

	AMDKFD_IOCTL_DEF(AMDKFD_IOC_CRIU_OP,
			kfd_ioctl_criu, KFD_IOC_FLAG_CHECKPOINT_RESTORE),

2726 2727 2728 2729
};

#define AMDKFD_CORE_IOCTL_COUNT	ARRAY_SIZE(amdkfd_ioctls)

O
Oded Gabbay 已提交
2730 2731 2732
static long kfd_ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
{
	struct kfd_process *process;
2733 2734 2735
	amdkfd_ioctl_t *func;
	const struct amdkfd_ioctl_desc *ioctl = NULL;
	unsigned int nr = _IOC_NR(cmd);
2736 2737 2738 2739
	char stack_kdata[128];
	char *kdata = NULL;
	unsigned int usize, asize;
	int retcode = -EINVAL;
2740
	bool ptrace_attached = false;
O
Oded Gabbay 已提交
2741

2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758
	if (nr >= AMDKFD_CORE_IOCTL_COUNT)
		goto err_i1;

	if ((nr >= AMDKFD_COMMAND_START) && (nr < AMDKFD_COMMAND_END)) {
		u32 amdkfd_size;

		ioctl = &amdkfd_ioctls[nr];

		amdkfd_size = _IOC_SIZE(ioctl->cmd);
		usize = asize = _IOC_SIZE(cmd);
		if (amdkfd_size > asize)
			asize = amdkfd_size;

		cmd = ioctl->cmd;
	} else
		goto err_i1;

Y
Yong Zhao 已提交
2759
	dev_dbg(kfd_device, "ioctl cmd 0x%x (#0x%x), arg 0x%lx\n", cmd, nr, arg);
O
Oded Gabbay 已提交
2760

2761 2762 2763 2764 2765
	/* Get the process struct from the filep. Only the process
	 * that opened /dev/kfd can use the file descriptor. Child
	 * processes need to create their own KFD device context.
	 */
	process = filep->private_data;
2766 2767 2768 2769 2770 2771 2772 2773 2774

	rcu_read_lock();
	if ((ioctl->flags & KFD_IOC_FLAG_CHECKPOINT_RESTORE) &&
	    ptrace_parent(process->lead_thread) == current)
		ptrace_attached = true;
	rcu_read_unlock();

	if (process->lead_thread != current->group_leader
	    && !ptrace_attached) {
2775 2776
		dev_dbg(kfd_device, "Using KFD FD in wrong process\n");
		retcode = -EBADF;
2777 2778
		goto err_i1;
	}
O
Oded Gabbay 已提交
2779

2780 2781 2782 2783 2784 2785 2786
	/* Do not trust userspace, use our own definition */
	func = ioctl->func;

	if (unlikely(!func)) {
		dev_dbg(kfd_device, "no function\n");
		retcode = -EINVAL;
		goto err_i1;
O
Oded Gabbay 已提交
2787 2788
	}

2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801
	/*
	 * Versions of docker shipped in Ubuntu 18.xx and 20.xx do not support
	 * CAP_CHECKPOINT_RESTORE, so we also allow access if CAP_SYS_ADMIN as CAP_SYS_ADMIN is a
	 * more priviledged access.
	 */
	if (unlikely(ioctl->flags & KFD_IOC_FLAG_CHECKPOINT_RESTORE)) {
		if (!capable(CAP_CHECKPOINT_RESTORE) &&
						!capable(CAP_SYS_ADMIN)) {
			retcode = -EACCES;
			goto err_i1;
		}
	}

2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814
	if (cmd & (IOC_IN | IOC_OUT)) {
		if (asize <= sizeof(stack_kdata)) {
			kdata = stack_kdata;
		} else {
			kdata = kmalloc(asize, GFP_KERNEL);
			if (!kdata) {
				retcode = -ENOMEM;
				goto err_i1;
			}
		}
		if (asize > usize)
			memset(kdata + usize, 0, asize - usize);
	}
O
Oded Gabbay 已提交
2815

2816 2817 2818 2819 2820 2821 2822 2823 2824
	if (cmd & IOC_IN) {
		if (copy_from_user(kdata, (void __user *)arg, usize) != 0) {
			retcode = -EFAULT;
			goto err_i1;
		}
	} else if (cmd & IOC_OUT) {
		memset(kdata, 0, usize);
	}

2825
	retcode = func(filep, process, kdata);
O
Oded Gabbay 已提交
2826

2827 2828 2829
	if (cmd & IOC_OUT)
		if (copy_to_user((void __user *)arg, kdata, usize) != 0)
			retcode = -EFAULT;
O
Oded Gabbay 已提交
2830

2831
err_i1:
2832 2833 2834 2835
	if (!ioctl)
		dev_dbg(kfd_device, "invalid ioctl: pid=%d, cmd=0x%02x, nr=0x%02x\n",
			  task_pid_nr(current), cmd, nr);

2836 2837 2838 2839
	if (kdata != stack_kdata)
		kfree(kdata);

	if (retcode)
Y
Yong Zhao 已提交
2840 2841
		dev_dbg(kfd_device, "ioctl cmd (#0x%x), arg 0x%lx, ret = %d\n",
				nr, arg, retcode);
2842 2843

	return retcode;
O
Oded Gabbay 已提交
2844
}
2845

O
Oak Zeng 已提交
2846 2847 2848 2849 2850 2851 2852 2853 2854
static int kfd_mmio_mmap(struct kfd_dev *dev, struct kfd_process *process,
		      struct vm_area_struct *vma)
{
	phys_addr_t address;
	int ret;

	if (vma->vm_end - vma->vm_start != PAGE_SIZE)
		return -EINVAL;

2855
	address = dev->adev->rmmio_remap.bus_addr;
O
Oak Zeng 已提交
2856 2857 2858 2859 2860 2861

	vma->vm_flags |= VM_IO | VM_DONTCOPY | VM_DONTEXPAND | VM_NORESERVE |
				VM_DONTDUMP | VM_PFNMAP;

	vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);

2862
	pr_debug("pasid 0x%x mapping mmio page\n"
O
Oak Zeng 已提交
2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878
		 "     target user address == 0x%08llX\n"
		 "     physical address    == 0x%08llX\n"
		 "     vm_flags            == 0x%04lX\n"
		 "     size                == 0x%04lX\n",
		 process->pasid, (unsigned long long) vma->vm_start,
		 address, vma->vm_flags, PAGE_SIZE);

	ret = io_remap_pfn_range(vma,
				vma->vm_start,
				address >> PAGE_SHIFT,
				PAGE_SIZE,
				vma->vm_page_prot);
	return ret;
}


2879 2880 2881
static int kfd_mmap(struct file *filp, struct vm_area_struct *vma)
{
	struct kfd_process *process;
2882
	struct kfd_dev *dev = NULL;
2883
	unsigned long mmap_offset;
2884
	unsigned int gpu_id;
2885 2886 2887 2888 2889

	process = kfd_get_process(current);
	if (IS_ERR(process))
		return PTR_ERR(process);

2890 2891
	mmap_offset = vma->vm_pgoff << PAGE_SHIFT;
	gpu_id = KFD_MMAP_GET_GPU_ID(mmap_offset);
2892 2893 2894
	if (gpu_id)
		dev = kfd_device_by_id(gpu_id);

2895
	switch (mmap_offset & KFD_MMAP_TYPE_MASK) {
2896 2897 2898 2899 2900 2901
	case KFD_MMAP_TYPE_DOORBELL:
		if (!dev)
			return -ENODEV;
		return kfd_doorbell_mmap(dev, process, vma);

	case KFD_MMAP_TYPE_EVENTS:
2902
		return kfd_event_mmap(process, vma);
2903 2904 2905 2906 2907

	case KFD_MMAP_TYPE_RESERVED_MEM:
		if (!dev)
			return -ENODEV;
		return kfd_reserved_mem_mmap(dev, process, vma);
O
Oak Zeng 已提交
2908 2909 2910 2911
	case KFD_MMAP_TYPE_MMIO:
		if (!dev)
			return -ENODEV;
		return kfd_mmio_mmap(dev, process, vma);
2912 2913 2914
	}

	return -EFAULT;
2915
}