kfd_device.c 25.9 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/bsearch.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include "kfd_priv.h"
27
#include "kfd_device_queue_manager.h"
28
#include "kfd_pm4_headers_vi.h"
29
#include "cwsr_trap_handler.h"
30
#include "kfd_iommu.h"
O
Oded Gabbay 已提交
31

32
#define MQD_SIZE_ALIGNED 768
33 34 35 36 37 38 39

/*
 * kfd_locked is used to lock the kfd driver during suspend or reset
 * once locked, kfd driver will stop any further GPU execution.
 * create process (open) will return -EAGAIN.
 */
static atomic_t kfd_locked = ATOMIC_INIT(0);
40

41
#ifdef KFD_SUPPORT_IOMMU_V2
O
Oded Gabbay 已提交
42
static const struct kfd_device_info kaveri_device_info = {
43 44
	.asic_family = CHIP_KAVERI,
	.max_pasid_bits = 16,
45 46
	/* max num of queues for KV.TODO should be a dynamic value */
	.max_no_of_hqd	= 24,
47
	.doorbell_size  = 4,
48
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
49
	.event_interrupt_class = &event_interrupt_class_cik,
50
	.num_of_watch_points = 4,
F
Felix Kuehling 已提交
51 52
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = false,
53
	.needs_iommu_device = true,
54
	.needs_pci_atomics = false,
55
	.num_sdma_engines = 2,
56 57 58 59
};

static const struct kfd_device_info carrizo_device_info = {
	.asic_family = CHIP_CARRIZO,
O
Oded Gabbay 已提交
60
	.max_pasid_bits = 16,
61 62
	/* max num of queues for CZ.TODO should be a dynamic value */
	.max_no_of_hqd	= 24,
63
	.doorbell_size  = 4,
64
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
65
	.event_interrupt_class = &event_interrupt_class_cik,
66
	.num_of_watch_points = 4,
F
Felix Kuehling 已提交
67 68
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
69
	.needs_iommu_device = true,
70
	.needs_pci_atomics = false,
71
	.num_sdma_engines = 2,
O
Oded Gabbay 已提交
72
};
73
#endif
O
Oded Gabbay 已提交
74

75 76 77 78 79
static const struct kfd_device_info hawaii_device_info = {
	.asic_family = CHIP_HAWAII,
	.max_pasid_bits = 16,
	/* max num of queues for KV.TODO should be a dynamic value */
	.max_no_of_hqd	= 24,
80
	.doorbell_size  = 4,
81 82 83 84 85
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = false,
86
	.needs_iommu_device = false,
87
	.needs_pci_atomics = false,
88
	.num_sdma_engines = 2,
89 90 91 92 93 94
};

static const struct kfd_device_info tonga_device_info = {
	.asic_family = CHIP_TONGA,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
95
	.doorbell_size  = 4,
96 97 98 99 100
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = false,
101
	.needs_iommu_device = false,
102
	.needs_pci_atomics = true,
103
	.num_sdma_engines = 2,
104 105 106 107 108 109
};

static const struct kfd_device_info tonga_vf_device_info = {
	.asic_family = CHIP_TONGA,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
110
	.doorbell_size  = 4,
111 112 113 114 115
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = false,
116
	.needs_iommu_device = false,
117
	.needs_pci_atomics = false,
118
	.num_sdma_engines = 2,
119 120 121 122 123 124
};

static const struct kfd_device_info fiji_device_info = {
	.asic_family = CHIP_FIJI,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
125
	.doorbell_size  = 4,
126 127 128 129 130
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
131
	.needs_iommu_device = false,
132
	.needs_pci_atomics = true,
133
	.num_sdma_engines = 2,
134 135 136 137 138 139
};

static const struct kfd_device_info fiji_vf_device_info = {
	.asic_family = CHIP_FIJI,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
140
	.doorbell_size  = 4,
141 142 143 144 145
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
146
	.needs_iommu_device = false,
147
	.needs_pci_atomics = false,
148
	.num_sdma_engines = 2,
149 150 151 152 153 154 155
};


static const struct kfd_device_info polaris10_device_info = {
	.asic_family = CHIP_POLARIS10,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
156
	.doorbell_size  = 4,
157 158 159 160 161
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
162
	.needs_iommu_device = false,
163
	.needs_pci_atomics = true,
164
	.num_sdma_engines = 2,
165 166 167 168 169 170
};

static const struct kfd_device_info polaris10_vf_device_info = {
	.asic_family = CHIP_POLARIS10,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
171
	.doorbell_size  = 4,
172 173 174 175 176
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
177
	.needs_iommu_device = false,
178
	.needs_pci_atomics = false,
179
	.num_sdma_engines = 2,
180 181 182 183 184 185
};

static const struct kfd_device_info polaris11_device_info = {
	.asic_family = CHIP_POLARIS11,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
186
	.doorbell_size  = 4,
187 188 189 190 191
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
192
	.needs_iommu_device = false,
193
	.needs_pci_atomics = true,
194
	.num_sdma_engines = 2,
195 196
};

197 198 199 200 201 202 203 204 205 206 207 208
static const struct kfd_device_info vega10_device_info = {
	.asic_family = CHIP_VEGA10,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
	.doorbell_size  = 8,
	.ih_ring_entry_size = 8 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_v9,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
	.needs_iommu_device = false,
	.needs_pci_atomics = false,
209
	.num_sdma_engines = 2,
210 211 212 213 214 215 216 217 218 219 220 221 222 223
};

static const struct kfd_device_info vega10_vf_device_info = {
	.asic_family = CHIP_VEGA10,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
	.doorbell_size  = 8,
	.ih_ring_entry_size = 8 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_v9,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
	.needs_iommu_device = false,
	.needs_pci_atomics = false,
224
	.num_sdma_engines = 2,
225 226
};

227

O
Oded Gabbay 已提交
228 229 230 231 232 233
struct kfd_deviceid {
	unsigned short did;
	const struct kfd_device_info *device_info;
};

static const struct kfd_deviceid supported_devices[] = {
234
#ifdef KFD_SUPPORT_IOMMU_V2
O
Oded Gabbay 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
	{ 0x1304, &kaveri_device_info },	/* Kaveri */
	{ 0x1305, &kaveri_device_info },	/* Kaveri */
	{ 0x1306, &kaveri_device_info },	/* Kaveri */
	{ 0x1307, &kaveri_device_info },	/* Kaveri */
	{ 0x1309, &kaveri_device_info },	/* Kaveri */
	{ 0x130A, &kaveri_device_info },	/* Kaveri */
	{ 0x130B, &kaveri_device_info },	/* Kaveri */
	{ 0x130C, &kaveri_device_info },	/* Kaveri */
	{ 0x130D, &kaveri_device_info },	/* Kaveri */
	{ 0x130E, &kaveri_device_info },	/* Kaveri */
	{ 0x130F, &kaveri_device_info },	/* Kaveri */
	{ 0x1310, &kaveri_device_info },	/* Kaveri */
	{ 0x1311, &kaveri_device_info },	/* Kaveri */
	{ 0x1312, &kaveri_device_info },	/* Kaveri */
	{ 0x1313, &kaveri_device_info },	/* Kaveri */
	{ 0x1315, &kaveri_device_info },	/* Kaveri */
	{ 0x1316, &kaveri_device_info },	/* Kaveri */
	{ 0x1317, &kaveri_device_info },	/* Kaveri */
	{ 0x1318, &kaveri_device_info },	/* Kaveri */
	{ 0x131B, &kaveri_device_info },	/* Kaveri */
	{ 0x131C, &kaveri_device_info },	/* Kaveri */
256 257 258 259 260
	{ 0x131D, &kaveri_device_info },	/* Kaveri */
	{ 0x9870, &carrizo_device_info },	/* Carrizo */
	{ 0x9874, &carrizo_device_info },	/* Carrizo */
	{ 0x9875, &carrizo_device_info },	/* Carrizo */
	{ 0x9876, &carrizo_device_info },	/* Carrizo */
261
	{ 0x9877, &carrizo_device_info },	/* Carrizo */
262
#endif
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
	{ 0x67A0, &hawaii_device_info },	/* Hawaii */
	{ 0x67A1, &hawaii_device_info },	/* Hawaii */
	{ 0x67A2, &hawaii_device_info },	/* Hawaii */
	{ 0x67A8, &hawaii_device_info },	/* Hawaii */
	{ 0x67A9, &hawaii_device_info },	/* Hawaii */
	{ 0x67AA, &hawaii_device_info },	/* Hawaii */
	{ 0x67B0, &hawaii_device_info },	/* Hawaii */
	{ 0x67B1, &hawaii_device_info },	/* Hawaii */
	{ 0x67B8, &hawaii_device_info },	/* Hawaii */
	{ 0x67B9, &hawaii_device_info },	/* Hawaii */
	{ 0x67BA, &hawaii_device_info },	/* Hawaii */
	{ 0x67BE, &hawaii_device_info },	/* Hawaii */
	{ 0x6920, &tonga_device_info },		/* Tonga */
	{ 0x6921, &tonga_device_info },		/* Tonga */
	{ 0x6928, &tonga_device_info },		/* Tonga */
	{ 0x6929, &tonga_device_info },		/* Tonga */
	{ 0x692B, &tonga_device_info },		/* Tonga */
	{ 0x692F, &tonga_vf_device_info },	/* Tonga vf */
	{ 0x6938, &tonga_device_info },		/* Tonga */
	{ 0x6939, &tonga_device_info },		/* Tonga */
	{ 0x7300, &fiji_device_info },		/* Fiji */
	{ 0x730F, &fiji_vf_device_info },	/* Fiji vf*/
	{ 0x67C0, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C1, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C2, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C4, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C7, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C8, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C9, &polaris10_device_info },	/* Polaris10 */
	{ 0x67CA, &polaris10_device_info },	/* Polaris10 */
	{ 0x67CC, &polaris10_device_info },	/* Polaris10 */
	{ 0x67CF, &polaris10_device_info },	/* Polaris10 */
	{ 0x67D0, &polaris10_vf_device_info },	/* Polaris10 vf*/
	{ 0x67DF, &polaris10_device_info },	/* Polaris10 */
	{ 0x67E0, &polaris11_device_info },	/* Polaris11 */
	{ 0x67E1, &polaris11_device_info },	/* Polaris11 */
	{ 0x67E3, &polaris11_device_info },	/* Polaris11 */
	{ 0x67E7, &polaris11_device_info },	/* Polaris11 */
	{ 0x67E8, &polaris11_device_info },	/* Polaris11 */
	{ 0x67E9, &polaris11_device_info },	/* Polaris11 */
	{ 0x67EB, &polaris11_device_info },	/* Polaris11 */
	{ 0x67EF, &polaris11_device_info },	/* Polaris11 */
	{ 0x67FF, &polaris11_device_info },	/* Polaris11 */
306 307 308 309 310 311 312 313 314
	{ 0x6860, &vega10_device_info },	/* Vega10 */
	{ 0x6861, &vega10_device_info },	/* Vega10 */
	{ 0x6862, &vega10_device_info },	/* Vega10 */
	{ 0x6863, &vega10_device_info },	/* Vega10 */
	{ 0x6864, &vega10_device_info },	/* Vega10 */
	{ 0x6867, &vega10_device_info },	/* Vega10 */
	{ 0x6868, &vega10_device_info },	/* Vega10 */
	{ 0x686C, &vega10_vf_device_info },	/* Vega10  vf*/
	{ 0x687F, &vega10_device_info },	/* Vega10 */
O
Oded Gabbay 已提交
315 316
};

317 318 319 320
static int kfd_gtt_sa_init(struct kfd_dev *kfd, unsigned int buf_size,
				unsigned int chunk_size);
static void kfd_gtt_sa_fini(struct kfd_dev *kfd);

321 322
static int kfd_resume(struct kfd_dev *kfd);

O
Oded Gabbay 已提交
323 324 325 326 327 328
static const struct kfd_device_info *lookup_device_info(unsigned short did)
{
	size_t i;

	for (i = 0; i < ARRAY_SIZE(supported_devices); i++) {
		if (supported_devices[i].did == did) {
329
			WARN_ON(!supported_devices[i].device_info);
O
Oded Gabbay 已提交
330 331 332 333
			return supported_devices[i].device_info;
		}
	}

334 335 336
	dev_warn(kfd_device, "DID %04x is missing in supported_devices\n",
		 did);

O
Oded Gabbay 已提交
337 338 339
	return NULL;
}

340 341
struct kfd_dev *kgd2kfd_probe(struct kgd_dev *kgd,
	struct pci_dev *pdev, const struct kfd2kgd_calls *f2g)
O
Oded Gabbay 已提交
342 343
{
	struct kfd_dev *kfd;
344
	int ret;
O
Oded Gabbay 已提交
345 346 347
	const struct kfd_device_info *device_info =
					lookup_device_info(pdev->device);

348 349
	if (!device_info) {
		dev_err(kfd_device, "kgd2kfd_probe failed\n");
O
Oded Gabbay 已提交
350
		return NULL;
351
	}
O
Oded Gabbay 已提交
352

353 354 355 356 357 358 359 360 361 362 363 364
	/* Allow BIF to recode atomics to PCIe 3.0 AtomicOps.
	 * 32 and 64-bit requests are possible and must be
	 * supported.
	 */
	ret = pci_enable_atomic_ops_to_root(pdev,
			PCI_EXP_DEVCAP2_ATOMIC_COMP32 |
			PCI_EXP_DEVCAP2_ATOMIC_COMP64);
	if (device_info->needs_pci_atomics && ret < 0) {
		dev_info(kfd_device,
			 "skipped device %x:%x, PCI rejects atomics\n",
			 pdev->vendor, pdev->device);
		return NULL;
365 366
	}

O
Oded Gabbay 已提交
367 368 369 370 371 372 373
	kfd = kzalloc(sizeof(*kfd), GFP_KERNEL);
	if (!kfd)
		return NULL;

	kfd->kgd = kgd;
	kfd->device_info = device_info;
	kfd->pdev = pdev;
374
	kfd->init_complete = false;
375 376 377 378 379
	kfd->kfd2kgd = f2g;

	mutex_init(&kfd->doorbell_mutex);
	memset(&kfd->doorbell_available_index, 0,
		sizeof(kfd->doorbell_available_index));
O
Oded Gabbay 已提交
380 381 382 383

	return kfd;
}

F
Felix Kuehling 已提交
384 385 386
static void kfd_cwsr_init(struct kfd_dev *kfd)
{
	if (cwsr_enable && kfd->device_info->supports_cwsr) {
387 388 389 390 391 392 393 394 395
		if (kfd->device_info->asic_family < CHIP_VEGA10) {
			BUILD_BUG_ON(sizeof(cwsr_trap_gfx8_hex) > PAGE_SIZE);
			kfd->cwsr_isa = cwsr_trap_gfx8_hex;
			kfd->cwsr_isa_size = sizeof(cwsr_trap_gfx8_hex);
		} else {
			BUILD_BUG_ON(sizeof(cwsr_trap_gfx9_hex) > PAGE_SIZE);
			kfd->cwsr_isa = cwsr_trap_gfx9_hex;
			kfd->cwsr_isa_size = sizeof(cwsr_trap_gfx9_hex);
		}
F
Felix Kuehling 已提交
396 397 398 399 400

		kfd->cwsr_enabled = true;
	}
}

O
Oded Gabbay 已提交
401 402 403
bool kgd2kfd_device_init(struct kfd_dev *kfd,
			 const struct kgd2kfd_shared_resources *gpu_resources)
{
404 405
	unsigned int size;

O
Oded Gabbay 已提交
406 407
	kfd->shared_resources = *gpu_resources;

408 409 410 411 412
	kfd->vm_info.first_vmid_kfd = ffs(gpu_resources->compute_vmid_bitmap)-1;
	kfd->vm_info.last_vmid_kfd = fls(gpu_resources->compute_vmid_bitmap)-1;
	kfd->vm_info.vmid_num_kfd = kfd->vm_info.last_vmid_kfd
			- kfd->vm_info.first_vmid_kfd + 1;

413 414 415 416 417 418 419 420 421 422 423
	/* Verify module parameters regarding mapped process number*/
	if ((hws_max_conc_proc < 0)
			|| (hws_max_conc_proc > kfd->vm_info.vmid_num_kfd)) {
		dev_err(kfd_device,
			"hws_max_conc_proc %d must be between 0 and %d, use %d instead\n",
			hws_max_conc_proc, kfd->vm_info.vmid_num_kfd,
			kfd->vm_info.vmid_num_kfd);
		kfd->max_proc_per_quantum = kfd->vm_info.vmid_num_kfd;
	} else
		kfd->max_proc_per_quantum = hws_max_conc_proc;

424
	/* calculate max size of mqds needed for queues */
425 426
	size = max_num_of_queues_per_device *
			kfd->device_info->mqd_size_aligned;
427

428 429 430 431
	/*
	 * calculate max size of runlist packet.
	 * There can be only 2 packets at once
	 */
432 433 434
	size += (KFD_MAX_NUM_OF_PROCESSES * sizeof(struct pm4_mes_map_process) +
		max_num_of_queues_per_device * sizeof(struct pm4_mes_map_queues)
		+ sizeof(struct pm4_mes_runlist)) * 2;
435 436 437 438 439

	/* Add size of HIQ & DIQ */
	size += KFD_KERNEL_QUEUE_SIZE * 2;

	/* add another 512KB for all other allocations on gart (HPD, fences) */
440 441
	size += 512 * 1024;

442 443 444
	if (kfd->kfd2kgd->init_gtt_mem_allocation(
			kfd->kgd, size, &kfd->gtt_mem,
			&kfd->gtt_start_gpu_addr, &kfd->gtt_start_cpu_ptr)){
445
		dev_err(kfd_device, "Could not allocate %d bytes\n", size);
446 447 448
		goto out;
	}

449
	dev_info(kfd_device, "Allocated %d bytes on gart\n", size);
450

451 452
	/* Initialize GTT sa with 512 byte chunk size */
	if (kfd_gtt_sa_init(kfd, size, 512) != 0) {
453
		dev_err(kfd_device, "Error initializing gtt sub-allocator\n");
454 455 456
		goto kfd_gtt_sa_init_error;
	}

457 458 459 460 461
	if (kfd_doorbell_init(kfd)) {
		dev_err(kfd_device,
			"Error initializing doorbell aperture\n");
		goto kfd_doorbell_error;
	}
462

463
	if (kfd_topology_add_device(kfd)) {
464
		dev_err(kfd_device, "Error adding device to topology\n");
465 466 467
		goto kfd_topology_add_device_error;
	}

468
	if (kfd_interrupt_init(kfd)) {
469
		dev_err(kfd_device, "Error initializing interrupts\n");
470 471 472
		goto kfd_interrupt_error;
	}

473 474
	kfd->dqm = device_queue_manager_init(kfd);
	if (!kfd->dqm) {
475
		dev_err(kfd_device, "Error initializing queue manager\n");
476 477 478
		goto device_queue_manager_error;
	}

479 480 481
	if (kfd_iommu_device_init(kfd)) {
		dev_err(kfd_device, "Error initializing iommuv2\n");
		goto device_iommu_error;
482 483
	}

F
Felix Kuehling 已提交
484 485
	kfd_cwsr_init(kfd);

486 487 488
	if (kfd_resume(kfd))
		goto kfd_resume_error;

489 490
	kfd->dbgmgr = NULL;

O
Oded Gabbay 已提交
491
	kfd->init_complete = true;
492
	dev_info(kfd_device, "added device %x:%x\n", kfd->pdev->vendor,
O
Oded Gabbay 已提交
493 494
		 kfd->pdev->device);

495
	pr_debug("Starting kfd with the following scheduling policy %d\n",
496
		kfd->dqm->sched_policy);
497

498 499
	goto out;

500
kfd_resume_error:
501
device_iommu_error:
502 503
	device_queue_manager_uninit(kfd->dqm);
device_queue_manager_error:
504 505
	kfd_interrupt_exit(kfd);
kfd_interrupt_error:
506
	kfd_topology_remove_device(kfd);
507
kfd_topology_add_device_error:
508 509
	kfd_doorbell_fini(kfd);
kfd_doorbell_error:
510 511
	kfd_gtt_sa_fini(kfd);
kfd_gtt_sa_init_error:
512
	kfd->kfd2kgd->free_gtt_mem(kfd->kgd, kfd->gtt_mem);
513
	dev_err(kfd_device,
514
		"device %x:%x NOT added due to errors\n",
515 516 517
		kfd->pdev->vendor, kfd->pdev->device);
out:
	return kfd->init_complete;
O
Oded Gabbay 已提交
518 519 520 521
}

void kgd2kfd_device_exit(struct kfd_dev *kfd)
{
522
	if (kfd->init_complete) {
523
		kgd2kfd_suspend(kfd);
524
		device_queue_manager_uninit(kfd->dqm);
525
		kfd_interrupt_exit(kfd);
526
		kfd_topology_remove_device(kfd);
527
		kfd_doorbell_fini(kfd);
528
		kfd_gtt_sa_fini(kfd);
529
		kfd->kfd2kgd->free_gtt_mem(kfd->kgd, kfd->gtt_mem);
530
	}
531

O
Oded Gabbay 已提交
532 533 534
	kfree(kfd);
}

535 536
int kgd2kfd_pre_reset(struct kfd_dev *kfd)
{
537 538 539 540 541 542 543 544
	if (!kfd->init_complete)
		return 0;
	kgd2kfd_suspend(kfd);

	/* hold dqm->lock to prevent further execution*/
	dqm_lock(kfd->dqm);

	kfd_signal_reset_event(kfd);
545 546 547
	return 0;
}

548 549 550 551 552 553
/*
 * Fix me. KFD won't be able to resume existing process for now.
 * We will keep all existing process in a evicted state and
 * wait the process to be terminated.
 */

554 555
int kgd2kfd_post_reset(struct kfd_dev *kfd)
{
556 557 558 559 560 561 562 563 564 565 566 567
	int ret, count;

	if (!kfd->init_complete)
		return 0;

	dqm_unlock(kfd->dqm);

	ret = kfd_resume(kfd);
	if (ret)
		return ret;
	count = atomic_dec_return(&kfd_locked);
	WARN_ONCE(count != 0, "KFD reset ref. error");
568 569 570
	return 0;
}

571 572 573 574 575
bool kfd_is_locked(void)
{
	return  (atomic_read(&kfd_locked) > 0);
}

O
Oded Gabbay 已提交
576 577
void kgd2kfd_suspend(struct kfd_dev *kfd)
{
578 579 580
	if (!kfd->init_complete)
		return;

581
	/* For first KFD device suspend all the KFD processes */
582
	if (atomic_inc_return(&kfd_locked) == 1)
583 584
		kfd_suspend_all_processes();

585 586
	kfd->dqm->ops.stop(kfd->dqm);

587
	kfd_iommu_suspend(kfd);
O
Oded Gabbay 已提交
588 589 590 591
}

int kgd2kfd_resume(struct kfd_dev *kfd)
{
592 593
	int ret, count;

594 595
	if (!kfd->init_complete)
		return 0;
596

597 598 599 600
	ret = kfd_resume(kfd);
	if (ret)
		return ret;

601
	count = atomic_dec_return(&kfd_locked);
602 603 604
	WARN_ONCE(count < 0, "KFD suspend / resume ref. error");
	if (count == 0)
		ret = kfd_resume_all_processes();
605

606
	return ret;
607 608 609 610 611 612
}

static int kfd_resume(struct kfd_dev *kfd)
{
	int err = 0;

613 614 615 616 617 618 619
	err = kfd_iommu_resume(kfd);
	if (err) {
		dev_err(kfd_device,
			"Failed to resume IOMMU for device %x:%x\n",
			kfd->pdev->vendor, kfd->pdev->device);
		return err;
	}
620

621 622 623 624 625 626
	err = kfd->dqm->ops.start(kfd->dqm);
	if (err) {
		dev_err(kfd_device,
			"Error starting queue manager for device %x:%x\n",
			kfd->pdev->vendor, kfd->pdev->device);
		goto dqm_start_error;
627 628
	}

629 630 631
	return err;

dqm_start_error:
632
	kfd_iommu_suspend(kfd);
633
	return err;
O
Oded Gabbay 已提交
634 635
}

636 637
/* This is called directly from KGD at ISR. */
void kgd2kfd_interrupt(struct kfd_dev *kfd, const void *ih_ring_entry)
O
Oded Gabbay 已提交
638
{
639 640 641
	uint32_t patched_ihre[KFD_MAX_RING_ENTRY_SIZE];
	bool is_patched = false;

642 643 644
	if (!kfd->init_complete)
		return;

645 646 647 648 649
	if (kfd->device_info->ih_ring_entry_size > sizeof(patched_ihre)) {
		dev_err_once(kfd_device, "Ring entry too small\n");
		return;
	}

650 651 652
	spin_lock(&kfd->interrupt_lock);

	if (kfd->interrupts_active
653 654 655 656
	    && interrupt_is_wanted(kfd, ih_ring_entry,
				   patched_ihre, &is_patched)
	    && enqueue_ih_ring_entry(kfd,
				     is_patched ? patched_ihre : ih_ring_entry))
657
		queue_work(kfd->ih_wq, &kfd->interrupt_work);
658 659

	spin_unlock(&kfd->interrupt_lock);
O
Oded Gabbay 已提交
660
}
661

662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699
int kgd2kfd_quiesce_mm(struct mm_struct *mm)
{
	struct kfd_process *p;
	int r;

	/* Because we are called from arbitrary context (workqueue) as opposed
	 * to process context, kfd_process could attempt to exit while we are
	 * running so the lookup function increments the process ref count.
	 */
	p = kfd_lookup_process_by_mm(mm);
	if (!p)
		return -ESRCH;

	r = kfd_process_evict_queues(p);

	kfd_unref_process(p);
	return r;
}

int kgd2kfd_resume_mm(struct mm_struct *mm)
{
	struct kfd_process *p;
	int r;

	/* Because we are called from arbitrary context (workqueue) as opposed
	 * to process context, kfd_process could attempt to exit while we are
	 * running so the lookup function increments the process ref count.
	 */
	p = kfd_lookup_process_by_mm(mm);
	if (!p)
		return -ESRCH;

	r = kfd_process_restore_queues(p);

	kfd_unref_process(p);
	return r;
}

700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
/** kgd2kfd_schedule_evict_and_restore_process - Schedules work queue that will
 *   prepare for safe eviction of KFD BOs that belong to the specified
 *   process.
 *
 * @mm: mm_struct that identifies the specified KFD process
 * @fence: eviction fence attached to KFD process BOs
 *
 */
int kgd2kfd_schedule_evict_and_restore_process(struct mm_struct *mm,
					       struct dma_fence *fence)
{
	struct kfd_process *p;
	unsigned long active_time;
	unsigned long delay_jiffies = msecs_to_jiffies(PROCESS_ACTIVE_TIME_MS);

	if (!fence)
		return -EINVAL;

	if (dma_fence_is_signaled(fence))
		return 0;

	p = kfd_lookup_process_by_mm(mm);
	if (!p)
		return -ENODEV;

	if (fence->seqno == p->last_eviction_seqno)
		goto out;

	p->last_eviction_seqno = fence->seqno;

	/* Avoid KFD process starvation. Wait for at least
	 * PROCESS_ACTIVE_TIME_MS before evicting the process again
	 */
	active_time = get_jiffies_64() - p->last_restore_timestamp;
	if (delay_jiffies > active_time)
		delay_jiffies -= active_time;
	else
		delay_jiffies = 0;

	/* During process initialization eviction_work.dwork is initialized
	 * to kfd_evict_bo_worker
	 */
	schedule_delayed_work(&p->eviction_work, delay_jiffies);
out:
	kfd_unref_process(p);
	return 0;
}

748 749 750
static int kfd_gtt_sa_init(struct kfd_dev *kfd, unsigned int buf_size,
				unsigned int chunk_size)
{
751
	unsigned int num_of_longs;
752

753 754 755 756 757 758
	if (WARN_ON(buf_size < chunk_size))
		return -EINVAL;
	if (WARN_ON(buf_size == 0))
		return -EINVAL;
	if (WARN_ON(chunk_size == 0))
		return -EINVAL;
759 760 761 762

	kfd->gtt_sa_chunk_size = chunk_size;
	kfd->gtt_sa_num_of_chunks = buf_size / chunk_size;

763 764
	num_of_longs = (kfd->gtt_sa_num_of_chunks + BITS_PER_LONG - 1) /
		BITS_PER_LONG;
765

766
	kfd->gtt_sa_bitmap = kcalloc(num_of_longs, sizeof(long), GFP_KERNEL);
767 768 769 770

	if (!kfd->gtt_sa_bitmap)
		return -ENOMEM;

771
	pr_debug("gtt_sa_num_of_chunks = %d, gtt_sa_bitmap = %p\n",
772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
			kfd->gtt_sa_num_of_chunks, kfd->gtt_sa_bitmap);

	mutex_init(&kfd->gtt_sa_lock);

	return 0;

}

static void kfd_gtt_sa_fini(struct kfd_dev *kfd)
{
	mutex_destroy(&kfd->gtt_sa_lock);
	kfree(kfd->gtt_sa_bitmap);
}

static inline uint64_t kfd_gtt_sa_calc_gpu_addr(uint64_t start_addr,
						unsigned int bit_num,
						unsigned int chunk_size)
{
	return start_addr + bit_num * chunk_size;
}

static inline uint32_t *kfd_gtt_sa_calc_cpu_addr(void *start_addr,
						unsigned int bit_num,
						unsigned int chunk_size)
{
	return (uint32_t *) ((uint64_t) start_addr + bit_num * chunk_size);
}

int kfd_gtt_sa_allocate(struct kfd_dev *kfd, unsigned int size,
			struct kfd_mem_obj **mem_obj)
{
	unsigned int found, start_search, cur_size;

	if (size == 0)
		return -EINVAL;

	if (size > kfd->gtt_sa_num_of_chunks * kfd->gtt_sa_chunk_size)
		return -ENOMEM;

811 812
	*mem_obj = kzalloc(sizeof(struct kfd_mem_obj), GFP_KERNEL);
	if (!(*mem_obj))
813 814
		return -ENOMEM;

815
	pr_debug("Allocated mem_obj = %p for size = %d\n", *mem_obj, size);
816 817 818 819 820 821 822 823 824 825 826

	start_search = 0;

	mutex_lock(&kfd->gtt_sa_lock);

kfd_gtt_restart_search:
	/* Find the first chunk that is free */
	found = find_next_zero_bit(kfd->gtt_sa_bitmap,
					kfd->gtt_sa_num_of_chunks,
					start_search);

827
	pr_debug("Found = %d\n", found);
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844

	/* If there wasn't any free chunk, bail out */
	if (found == kfd->gtt_sa_num_of_chunks)
		goto kfd_gtt_no_free_chunk;

	/* Update fields of mem_obj */
	(*mem_obj)->range_start = found;
	(*mem_obj)->range_end = found;
	(*mem_obj)->gpu_addr = kfd_gtt_sa_calc_gpu_addr(
					kfd->gtt_start_gpu_addr,
					found,
					kfd->gtt_sa_chunk_size);
	(*mem_obj)->cpu_ptr = kfd_gtt_sa_calc_cpu_addr(
					kfd->gtt_start_cpu_ptr,
					found,
					kfd->gtt_sa_chunk_size);

845
	pr_debug("gpu_addr = %p, cpu_addr = %p\n",
846 847 848 849
			(uint64_t *) (*mem_obj)->gpu_addr, (*mem_obj)->cpu_ptr);

	/* If we need only one chunk, mark it as allocated and get out */
	if (size <= kfd->gtt_sa_chunk_size) {
850
		pr_debug("Single bit\n");
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
		set_bit(found, kfd->gtt_sa_bitmap);
		goto kfd_gtt_out;
	}

	/* Otherwise, try to see if we have enough contiguous chunks */
	cur_size = size - kfd->gtt_sa_chunk_size;
	do {
		(*mem_obj)->range_end =
			find_next_zero_bit(kfd->gtt_sa_bitmap,
					kfd->gtt_sa_num_of_chunks, ++found);
		/*
		 * If next free chunk is not contiguous than we need to
		 * restart our search from the last free chunk we found (which
		 * wasn't contiguous to the previous ones
		 */
		if ((*mem_obj)->range_end != found) {
			start_search = found;
			goto kfd_gtt_restart_search;
		}

		/*
		 * If we reached end of buffer, bail out with error
		 */
		if (found == kfd->gtt_sa_num_of_chunks)
			goto kfd_gtt_no_free_chunk;

		/* Check if we don't need another chunk */
		if (cur_size <= kfd->gtt_sa_chunk_size)
			cur_size = 0;
		else
			cur_size -= kfd->gtt_sa_chunk_size;

	} while (cur_size > 0);

885
	pr_debug("range_start = %d, range_end = %d\n",
886 887 888 889 890 891 892 893 894 895 896 897 898
		(*mem_obj)->range_start, (*mem_obj)->range_end);

	/* Mark the chunks as allocated */
	for (found = (*mem_obj)->range_start;
		found <= (*mem_obj)->range_end;
		found++)
		set_bit(found, kfd->gtt_sa_bitmap);

kfd_gtt_out:
	mutex_unlock(&kfd->gtt_sa_lock);
	return 0;

kfd_gtt_no_free_chunk:
899
	pr_debug("Allocation failed with mem_obj = %p\n", mem_obj);
900 901 902 903 904 905 906 907 908
	mutex_unlock(&kfd->gtt_sa_lock);
	kfree(mem_obj);
	return -ENOMEM;
}

int kfd_gtt_sa_free(struct kfd_dev *kfd, struct kfd_mem_obj *mem_obj)
{
	unsigned int bit;

909 910 911
	/* Act like kfree when trying to free a NULL object */
	if (!mem_obj)
		return 0;
912

913
	pr_debug("Free mem_obj = %p, range_start = %d, range_end = %d\n",
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
			mem_obj, mem_obj->range_start, mem_obj->range_end);

	mutex_lock(&kfd->gtt_sa_lock);

	/* Mark the chunks as free */
	for (bit = mem_obj->range_start;
		bit <= mem_obj->range_end;
		bit++)
		clear_bit(bit, kfd->gtt_sa_bitmap);

	mutex_unlock(&kfd->gtt_sa_lock);

	kfree(mem_obj);
	return 0;
}
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951

#if defined(CONFIG_DEBUG_FS)

/* This function will send a package to HIQ to hang the HWS
 * which will trigger a GPU reset and bring the HWS back to normal state
 */
int kfd_debugfs_hang_hws(struct kfd_dev *dev)
{
	int r = 0;

	if (dev->dqm->sched_policy != KFD_SCHED_POLICY_HWS) {
		pr_err("HWS is not enabled");
		return -EINVAL;
	}

	r = pm_debugfs_hang_hws(&dev->dqm->packets);
	if (!r)
		r = dqm_debugfs_execute_queues(dev->dqm);

	return r;
}

#endif