1 /*
2  * Copyright 2017 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  */
23 #include "amdgpu_ids.h"
24 
25 #include <linux/idr.h>
26 #include <linux/dma-fence-array.h>
27 
28 
29 #include "amdgpu.h"
30 #include "amdgpu_trace.h"
31 
32 /*
33  * PASID manager
34  *
35  * PASIDs are global address space identifiers that can be shared
36  * between the GPU, an IOMMU and the driver. VMs on different devices
37  * may use the same PASID if they share the same address
38  * space. Therefore PASIDs are allocated using a global IDA. VMs are
39  * looked up from the PASID per amdgpu_device.
40  */
41 static DEFINE_IDA(amdgpu_pasid_ida);
42 
43 /* Helper to free pasid from a fence callback */
44 struct amdgpu_pasid_cb {
45 	struct dma_fence_cb cb;
46 	u32 pasid;
47 };
48 
49 /**
50  * amdgpu_pasid_alloc - Allocate a PASID
51  * @bits: Maximum width of the PASID in bits, must be at least 1
52  *
53  * Allocates a PASID of the given width while keeping smaller PASIDs
54  * available if possible.
55  *
56  * Returns a positive integer on success. Returns %-EINVAL if bits==0.
57  * Returns %-ENOSPC if no PASID was available. Returns %-ENOMEM on
58  * memory allocation failure.
59  */
60 int amdgpu_pasid_alloc(unsigned int bits)
61 {
62 	int pasid = -EINVAL;
63 
64 	for (bits = min(bits, 31U); bits > 0; bits--) {
65 		pasid = ida_simple_get(&amdgpu_pasid_ida,
66 				       1U << (bits - 1), 1U << bits,
67 				       GFP_KERNEL);
68 		if (pasid != -ENOSPC)
69 			break;
70 	}
71 
72 	if (pasid >= 0)
73 		trace_amdgpu_pasid_allocated(pasid);
74 
75 	return pasid;
76 }
77 
78 /**
79  * amdgpu_pasid_free - Free a PASID
80  * @pasid: PASID to free
81  */
82 void amdgpu_pasid_free(u32 pasid)
83 {
84 	trace_amdgpu_pasid_freed(pasid);
85 	ida_simple_remove(&amdgpu_pasid_ida, pasid);
86 }
87 
88 static void amdgpu_pasid_free_cb(struct dma_fence *fence,
89 				 struct dma_fence_cb *_cb)
90 {
91 	struct amdgpu_pasid_cb *cb =
92 		container_of(_cb, struct amdgpu_pasid_cb, cb);
93 
94 	amdgpu_pasid_free(cb->pasid);
95 	dma_fence_put(fence);
96 	kfree(cb);
97 }
98 
99 /**
100  * amdgpu_pasid_free_delayed - free pasid when fences signal
101  *
102  * @resv: reservation object with the fences to wait for
103  * @pasid: pasid to free
104  *
105  * Free the pasid only after all the fences in resv are signaled.
106  */
107 void amdgpu_pasid_free_delayed(struct dma_resv *resv,
108 			       u32 pasid)
109 {
110 	struct amdgpu_pasid_cb *cb;
111 	struct dma_fence *fence;
112 	int r;
113 
114 	r = dma_resv_get_singleton(resv, DMA_RESV_USAGE_BOOKKEEP, &fence);
115 	if (r)
116 		goto fallback;
117 
118 	if (!fence) {
119 		amdgpu_pasid_free(pasid);
120 		return;
121 	}
122 
123 	cb = kmalloc(sizeof(*cb), GFP_KERNEL);
124 	if (!cb) {
125 		/* Last resort when we are OOM */
126 		dma_fence_wait(fence, false);
127 		dma_fence_put(fence);
128 		amdgpu_pasid_free(pasid);
129 	} else {
130 		cb->pasid = pasid;
131 		if (dma_fence_add_callback(fence, &cb->cb,
132 					   amdgpu_pasid_free_cb))
133 			amdgpu_pasid_free_cb(fence, &cb->cb);
134 	}
135 
136 	return;
137 
138 fallback:
139 	/* Not enough memory for the delayed delete, as last resort
140 	 * block for all the fences to complete.
141 	 */
142 	dma_resv_wait_timeout(resv, DMA_RESV_USAGE_BOOKKEEP,
143 			      false, MAX_SCHEDULE_TIMEOUT);
144 	amdgpu_pasid_free(pasid);
145 }
146 
147 /*
148  * VMID manager
149  *
150  * VMIDs are a per VMHUB identifier for page tables handling.
151  */
152 
153 /**
154  * amdgpu_vmid_had_gpu_reset - check if reset occured since last use
155  *
156  * @adev: amdgpu_device pointer
157  * @id: VMID structure
158  *
159  * Check if GPU reset occured since last use of the VMID.
160  */
161 bool amdgpu_vmid_had_gpu_reset(struct amdgpu_device *adev,
162 			       struct amdgpu_vmid *id)
163 {
164 	return id->current_gpu_reset_count !=
165 		atomic_read(&adev->gpu_reset_counter);
166 }
167 
168 /* Check if we need to switch to another set of resources */
169 static bool amdgpu_vmid_gds_switch_needed(struct amdgpu_vmid *id,
170 					  struct amdgpu_job *job)
171 {
172 	return id->gds_base != job->gds_base ||
173 		id->gds_size != job->gds_size ||
174 		id->gws_base != job->gws_base ||
175 		id->gws_size != job->gws_size ||
176 		id->oa_base != job->oa_base ||
177 		id->oa_size != job->oa_size;
178 }
179 
180 /* Check if the id is compatible with the job */
181 static bool amdgpu_vmid_compatible(struct amdgpu_vmid *id,
182 				   struct amdgpu_job *job)
183 {
184 	return  id->pd_gpu_addr == job->vm_pd_addr &&
185 		!amdgpu_vmid_gds_switch_needed(id, job);
186 }
187 
188 /**
189  * amdgpu_vmid_grab_idle - grab idle VMID
190  *
191  * @vm: vm to allocate id for
192  * @ring: ring we want to submit job to
193  * @idle: resulting idle VMID
194  * @fence: fence to wait for if no id could be grabbed
195  *
196  * Try to find an idle VMID, if none is idle add a fence to wait to the sync
197  * object. Returns -ENOMEM when we are out of memory.
198  */
199 static int amdgpu_vmid_grab_idle(struct amdgpu_vm *vm,
200 				 struct amdgpu_ring *ring,
201 				 struct amdgpu_vmid **idle,
202 				 struct dma_fence **fence)
203 {
204 	struct amdgpu_device *adev = ring->adev;
205 	unsigned vmhub = ring->funcs->vmhub;
206 	struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
207 	struct dma_fence **fences;
208 	unsigned i;
209 
210 	if (!dma_fence_is_signaled(ring->vmid_wait)) {
211 		*fence = dma_fence_get(ring->vmid_wait);
212 		return 0;
213 	}
214 
215 	fences = kmalloc_array(id_mgr->num_ids, sizeof(void *), GFP_KERNEL);
216 	if (!fences)
217 		return -ENOMEM;
218 
219 	/* Check if we have an idle VMID */
220 	i = 0;
221 	list_for_each_entry((*idle), &id_mgr->ids_lru, list) {
222 		/* Don't use per engine and per process VMID at the same time */
223 		struct amdgpu_ring *r = adev->vm_manager.concurrent_flush ?
224 			NULL : ring;
225 
226 		fences[i] = amdgpu_sync_peek_fence(&(*idle)->active, r);
227 		if (!fences[i])
228 			break;
229 		++i;
230 	}
231 
232 	/* If we can't find a idle VMID to use, wait till one becomes available */
233 	if (&(*idle)->list == &id_mgr->ids_lru) {
234 		u64 fence_context = adev->vm_manager.fence_context + ring->idx;
235 		unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
236 		struct dma_fence_array *array;
237 		unsigned j;
238 
239 		*idle = NULL;
240 		for (j = 0; j < i; ++j)
241 			dma_fence_get(fences[j]);
242 
243 		array = dma_fence_array_create(i, fences, fence_context,
244 					       seqno, true);
245 		if (!array) {
246 			for (j = 0; j < i; ++j)
247 				dma_fence_put(fences[j]);
248 			kfree(fences);
249 			return -ENOMEM;
250 		}
251 
252 		*fence = dma_fence_get(&array->base);
253 		dma_fence_put(ring->vmid_wait);
254 		ring->vmid_wait = &array->base;
255 		return 0;
256 	}
257 	kfree(fences);
258 
259 	return 0;
260 }
261 
262 /**
263  * amdgpu_vmid_grab_reserved - try to assign reserved VMID
264  *
265  * @vm: vm to allocate id for
266  * @ring: ring we want to submit job to
267  * @job: job who wants to use the VMID
268  * @id: resulting VMID
269  * @fence: fence to wait for if no id could be grabbed
270  *
271  * Try to assign a reserved VMID.
272  */
273 static int amdgpu_vmid_grab_reserved(struct amdgpu_vm *vm,
274 				     struct amdgpu_ring *ring,
275 				     struct amdgpu_job *job,
276 				     struct amdgpu_vmid **id,
277 				     struct dma_fence **fence)
278 {
279 	struct amdgpu_device *adev = ring->adev;
280 	unsigned vmhub = ring->funcs->vmhub;
281 	uint64_t fence_context = adev->fence_context + ring->idx;
282 	bool needs_flush = vm->use_cpu_for_update;
283 	uint64_t updates = amdgpu_vm_tlb_seq(vm);
284 	int r;
285 
286 	*id = vm->reserved_vmid[vmhub];
287 	if ((*id)->owner != vm->immediate.fence_context ||
288 	    !amdgpu_vmid_compatible(*id, job) ||
289 	    (*id)->flushed_updates < updates ||
290 	    !(*id)->last_flush ||
291 	    ((*id)->last_flush->context != fence_context &&
292 	     !dma_fence_is_signaled((*id)->last_flush))) {
293 		struct dma_fence *tmp;
294 
295 		/* Don't use per engine and per process VMID at the same time */
296 		if (adev->vm_manager.concurrent_flush)
297 			ring = NULL;
298 
299 		/* to prevent one context starved by another context */
300 		(*id)->pd_gpu_addr = 0;
301 		tmp = amdgpu_sync_peek_fence(&(*id)->active, ring);
302 		if (tmp) {
303 			*id = NULL;
304 			*fence = dma_fence_get(tmp);
305 			return 0;
306 		}
307 		needs_flush = true;
308 	}
309 
310 	/* Good we can use this VMID. Remember this submission as
311 	* user of the VMID.
312 	*/
313 	r = amdgpu_sync_fence(&(*id)->active, &job->base.s_fence->finished);
314 	if (r)
315 		return r;
316 
317 	job->vm_needs_flush = needs_flush;
318 	return 0;
319 }
320 
321 /**
322  * amdgpu_vmid_grab_used - try to reuse a VMID
323  *
324  * @vm: vm to allocate id for
325  * @ring: ring we want to submit job to
326  * @job: job who wants to use the VMID
327  * @id: resulting VMID
328  * @fence: fence to wait for if no id could be grabbed
329  *
330  * Try to reuse a VMID for this submission.
331  */
332 static int amdgpu_vmid_grab_used(struct amdgpu_vm *vm,
333 				 struct amdgpu_ring *ring,
334 				 struct amdgpu_job *job,
335 				 struct amdgpu_vmid **id,
336 				 struct dma_fence **fence)
337 {
338 	struct amdgpu_device *adev = ring->adev;
339 	unsigned vmhub = ring->funcs->vmhub;
340 	struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
341 	uint64_t fence_context = adev->fence_context + ring->idx;
342 	uint64_t updates = amdgpu_vm_tlb_seq(vm);
343 	int r;
344 
345 	job->vm_needs_flush = vm->use_cpu_for_update;
346 
347 	/* Check if we can use a VMID already assigned to this VM */
348 	list_for_each_entry_reverse((*id), &id_mgr->ids_lru, list) {
349 		bool needs_flush = vm->use_cpu_for_update;
350 
351 		/* Check all the prerequisites to using this VMID */
352 		if ((*id)->owner != vm->immediate.fence_context)
353 			continue;
354 
355 		if (!amdgpu_vmid_compatible(*id, job))
356 			continue;
357 
358 		if (!(*id)->last_flush ||
359 		    ((*id)->last_flush->context != fence_context &&
360 		     !dma_fence_is_signaled((*id)->last_flush)))
361 			needs_flush = true;
362 
363 		if ((*id)->flushed_updates < updates)
364 			needs_flush = true;
365 
366 		if (needs_flush && !adev->vm_manager.concurrent_flush)
367 			continue;
368 
369 		/* Good, we can use this VMID. Remember this submission as
370 		 * user of the VMID.
371 		 */
372 		r = amdgpu_sync_fence(&(*id)->active,
373 				      &job->base.s_fence->finished);
374 		if (r)
375 			return r;
376 
377 		job->vm_needs_flush |= needs_flush;
378 		return 0;
379 	}
380 
381 	*id = NULL;
382 	return 0;
383 }
384 
385 /**
386  * amdgpu_vmid_grab - allocate the next free VMID
387  *
388  * @vm: vm to allocate id for
389  * @ring: ring we want to submit job to
390  * @job: job who wants to use the VMID
391  * @fence: fence to wait for if no id could be grabbed
392  *
393  * Allocate an id for the vm, adding fences to the sync obj as necessary.
394  */
395 int amdgpu_vmid_grab(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
396 		     struct amdgpu_job *job, struct dma_fence **fence)
397 {
398 	struct amdgpu_device *adev = ring->adev;
399 	unsigned vmhub = ring->funcs->vmhub;
400 	struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
401 	struct amdgpu_vmid *idle = NULL;
402 	struct amdgpu_vmid *id = NULL;
403 	int r = 0;
404 
405 	mutex_lock(&id_mgr->lock);
406 	r = amdgpu_vmid_grab_idle(vm, ring, &idle, fence);
407 	if (r || !idle)
408 		goto error;
409 
410 	if (vm->reserved_vmid[vmhub]) {
411 		r = amdgpu_vmid_grab_reserved(vm, ring, job, &id, fence);
412 		if (r || !id)
413 			goto error;
414 	} else {
415 		r = amdgpu_vmid_grab_used(vm, ring, job, &id, fence);
416 		if (r)
417 			goto error;
418 
419 		if (!id) {
420 			/* Still no ID to use? Then use the idle one found earlier */
421 			id = idle;
422 
423 			/* Remember this submission as user of the VMID */
424 			r = amdgpu_sync_fence(&id->active,
425 					      &job->base.s_fence->finished);
426 			if (r)
427 				goto error;
428 
429 			job->vm_needs_flush = true;
430 		}
431 
432 		list_move_tail(&id->list, &id_mgr->ids_lru);
433 	}
434 
435 	job->gds_switch_needed = amdgpu_vmid_gds_switch_needed(id, job);
436 	if (job->vm_needs_flush) {
437 		id->flushed_updates = amdgpu_vm_tlb_seq(vm);
438 		dma_fence_put(id->last_flush);
439 		id->last_flush = NULL;
440 	}
441 	job->vmid = id - id_mgr->ids;
442 	job->pasid = vm->pasid;
443 
444 	id->gds_base = job->gds_base;
445 	id->gds_size = job->gds_size;
446 	id->gws_base = job->gws_base;
447 	id->gws_size = job->gws_size;
448 	id->oa_base = job->oa_base;
449 	id->oa_size = job->oa_size;
450 	id->pd_gpu_addr = job->vm_pd_addr;
451 	id->owner = vm->immediate.fence_context;
452 
453 	trace_amdgpu_vm_grab_id(vm, ring, job);
454 
455 error:
456 	mutex_unlock(&id_mgr->lock);
457 	return r;
458 }
459 
460 int amdgpu_vmid_alloc_reserved(struct amdgpu_device *adev,
461 			       struct amdgpu_vm *vm,
462 			       unsigned vmhub)
463 {
464 	struct amdgpu_vmid_mgr *id_mgr;
465 	struct amdgpu_vmid *idle;
466 	int r = 0;
467 
468 	id_mgr = &adev->vm_manager.id_mgr[vmhub];
469 	mutex_lock(&id_mgr->lock);
470 	if (vm->reserved_vmid[vmhub])
471 		goto unlock;
472 	if (atomic_inc_return(&id_mgr->reserved_vmid_num) >
473 	    AMDGPU_VM_MAX_RESERVED_VMID) {
474 		DRM_ERROR("Over limitation of reserved vmid\n");
475 		atomic_dec(&id_mgr->reserved_vmid_num);
476 		r = -EINVAL;
477 		goto unlock;
478 	}
479 	/* Select the first entry VMID */
480 	idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vmid, list);
481 	list_del_init(&idle->list);
482 	vm->reserved_vmid[vmhub] = idle;
483 	mutex_unlock(&id_mgr->lock);
484 
485 	return 0;
486 unlock:
487 	mutex_unlock(&id_mgr->lock);
488 	return r;
489 }
490 
491 void amdgpu_vmid_free_reserved(struct amdgpu_device *adev,
492 			       struct amdgpu_vm *vm,
493 			       unsigned vmhub)
494 {
495 	struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
496 
497 	mutex_lock(&id_mgr->lock);
498 	if (vm->reserved_vmid[vmhub]) {
499 		list_add(&vm->reserved_vmid[vmhub]->list,
500 			&id_mgr->ids_lru);
501 		vm->reserved_vmid[vmhub] = NULL;
502 		atomic_dec(&id_mgr->reserved_vmid_num);
503 	}
504 	mutex_unlock(&id_mgr->lock);
505 }
506 
507 /**
508  * amdgpu_vmid_reset - reset VMID to zero
509  *
510  * @adev: amdgpu device structure
511  * @vmhub: vmhub type
512  * @vmid: vmid number to use
513  *
514  * Reset saved GDW, GWS and OA to force switch on next flush.
515  */
516 void amdgpu_vmid_reset(struct amdgpu_device *adev, unsigned vmhub,
517 		       unsigned vmid)
518 {
519 	struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
520 	struct amdgpu_vmid *id = &id_mgr->ids[vmid];
521 
522 	mutex_lock(&id_mgr->lock);
523 	id->owner = 0;
524 	id->gds_base = 0;
525 	id->gds_size = 0;
526 	id->gws_base = 0;
527 	id->gws_size = 0;
528 	id->oa_base = 0;
529 	id->oa_size = 0;
530 	mutex_unlock(&id_mgr->lock);
531 }
532 
533 /**
534  * amdgpu_vmid_reset_all - reset VMID to zero
535  *
536  * @adev: amdgpu device structure
537  *
538  * Reset VMID to force flush on next use
539  */
540 void amdgpu_vmid_reset_all(struct amdgpu_device *adev)
541 {
542 	unsigned i, j;
543 
544 	for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
545 		struct amdgpu_vmid_mgr *id_mgr =
546 			&adev->vm_manager.id_mgr[i];
547 
548 		for (j = 1; j < id_mgr->num_ids; ++j)
549 			amdgpu_vmid_reset(adev, i, j);
550 	}
551 }
552 
553 /**
554  * amdgpu_vmid_mgr_init - init the VMID manager
555  *
556  * @adev: amdgpu_device pointer
557  *
558  * Initialize the VM manager structures
559  */
560 void amdgpu_vmid_mgr_init(struct amdgpu_device *adev)
561 {
562 	unsigned i, j;
563 
564 	for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
565 		struct amdgpu_vmid_mgr *id_mgr =
566 			&adev->vm_manager.id_mgr[i];
567 
568 		mutex_init(&id_mgr->lock);
569 		INIT_LIST_HEAD(&id_mgr->ids_lru);
570 		atomic_set(&id_mgr->reserved_vmid_num, 0);
571 
572 		/* manage only VMIDs not used by KFD */
573 		id_mgr->num_ids = adev->vm_manager.first_kfd_vmid;
574 
575 		/* skip over VMID 0, since it is the system VM */
576 		for (j = 1; j < id_mgr->num_ids; ++j) {
577 			amdgpu_vmid_reset(adev, i, j);
578 			amdgpu_sync_create(&id_mgr->ids[j].active);
579 			list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
580 		}
581 	}
582 }
583 
584 /**
585  * amdgpu_vmid_mgr_fini - cleanup VM manager
586  *
587  * @adev: amdgpu_device pointer
588  *
589  * Cleanup the VM manager and free resources.
590  */
591 void amdgpu_vmid_mgr_fini(struct amdgpu_device *adev)
592 {
593 	unsigned i, j;
594 
595 	for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
596 		struct amdgpu_vmid_mgr *id_mgr =
597 			&adev->vm_manager.id_mgr[i];
598 
599 		mutex_destroy(&id_mgr->lock);
600 		for (j = 0; j < AMDGPU_NUM_VMID; ++j) {
601 			struct amdgpu_vmid *id = &id_mgr->ids[j];
602 
603 			amdgpu_sync_free(&id->active);
604 			dma_fence_put(id->last_flush);
605 			dma_fence_put(id->pasid_mapping);
606 		}
607 	}
608 }
609