2 * Copyright 2017 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
23 #include "amdgpu_ids.h"
25 #include <linux/idr.h>
26 #include <linux/dma-fence-array.h>
30 #include "amdgpu_trace.h"
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.
41 static DEFINE_IDA(amdgpu_pasid_ida);
43 /* Helper to free pasid from a fence callback */
44 struct amdgpu_pasid_cb {
45 struct dma_fence_cb cb;
50 * amdgpu_pasid_alloc - Allocate a PASID
51 * @bits: Maximum width of the PASID in bits, must be at least 1
53 * Allocates a PASID of the given width while keeping smaller PASIDs
54 * available if possible.
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.
60 int amdgpu_pasid_alloc(unsigned int bits)
64 for (bits = min(bits, 31U); bits > 0; bits--) {
65 pasid = ida_simple_get(&amdgpu_pasid_ida,
66 1U << (bits - 1), 1U << bits,
73 trace_amdgpu_pasid_allocated(pasid);
79 * amdgpu_pasid_free - Free a PASID
80 * @pasid: PASID to free
82 void amdgpu_pasid_free(u32 pasid)
84 trace_amdgpu_pasid_freed(pasid);
85 ida_simple_remove(&amdgpu_pasid_ida, pasid);
88 static void amdgpu_pasid_free_cb(struct dma_fence *fence,
89 struct dma_fence_cb *_cb)
91 struct amdgpu_pasid_cb *cb =
92 container_of(_cb, struct amdgpu_pasid_cb, cb);
94 amdgpu_pasid_free(cb->pasid);
100 * amdgpu_pasid_free_delayed - free pasid when fences signal
102 * @resv: reservation object with the fences to wait for
103 * @pasid: pasid to free
105 * Free the pasid only after all the fences in resv are signaled.
107 void amdgpu_pasid_free_delayed(struct dma_resv *resv,
110 struct amdgpu_pasid_cb *cb;
111 struct dma_fence *fence;
114 r = dma_resv_get_singleton(resv, DMA_RESV_USAGE_BOOKKEEP, &fence);
119 amdgpu_pasid_free(pasid);
123 cb = kmalloc(sizeof(*cb), GFP_KERNEL);
125 /* Last resort when we are OOM */
126 dma_fence_wait(fence, false);
127 dma_fence_put(fence);
128 amdgpu_pasid_free(pasid);
131 if (dma_fence_add_callback(fence, &cb->cb,
132 amdgpu_pasid_free_cb))
133 amdgpu_pasid_free_cb(fence, &cb->cb);
139 /* Not enough memory for the delayed delete, as last resort
140 * block for all the fences to complete.
142 dma_resv_wait_timeout(resv, DMA_RESV_USAGE_BOOKKEEP,
143 false, MAX_SCHEDULE_TIMEOUT);
144 amdgpu_pasid_free(pasid);
150 * VMIDs are a per VMHUB identifier for page tables handling.
154 * amdgpu_vmid_had_gpu_reset - check if reset occured since last use
156 * @adev: amdgpu_device pointer
157 * @id: VMID structure
159 * Check if GPU reset occured since last use of the VMID.
161 bool amdgpu_vmid_had_gpu_reset(struct amdgpu_device *adev,
162 struct amdgpu_vmid *id)
164 return id->current_gpu_reset_count !=
165 atomic_read(&adev->gpu_reset_counter);
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)
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;
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)
184 return id->pd_gpu_addr == job->vm_pd_addr &&
185 !amdgpu_vmid_gds_switch_needed(id, job);
189 * amdgpu_vmid_grab_idle - grab idle VMID
191 * @ring: ring we want to submit job to
192 * @idle: resulting idle VMID
193 * @fence: fence to wait for if no id could be grabbed
195 * Try to find an idle VMID, if none is idle add a fence to wait to the sync
196 * object. Returns -ENOMEM when we are out of memory.
198 static int amdgpu_vmid_grab_idle(struct amdgpu_ring *ring,
199 struct amdgpu_vmid **idle,
200 struct dma_fence **fence)
202 struct amdgpu_device *adev = ring->adev;
203 unsigned vmhub = ring->vm_hub;
204 struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
205 struct dma_fence **fences;
208 if (!dma_fence_is_signaled(ring->vmid_wait)) {
209 *fence = dma_fence_get(ring->vmid_wait);
213 fences = kmalloc_array(id_mgr->num_ids, sizeof(void *), GFP_KERNEL);
217 /* Check if we have an idle VMID */
219 list_for_each_entry((*idle), &id_mgr->ids_lru, list) {
220 /* Don't use per engine and per process VMID at the same time */
221 struct amdgpu_ring *r = adev->vm_manager.concurrent_flush ?
224 fences[i] = amdgpu_sync_peek_fence(&(*idle)->active, r);
230 /* If we can't find a idle VMID to use, wait till one becomes available */
231 if (&(*idle)->list == &id_mgr->ids_lru) {
232 u64 fence_context = adev->vm_manager.fence_context + ring->idx;
233 unsigned seqno = ++adev->vm_manager.seqno[ring->idx];
234 struct dma_fence_array *array;
238 for (j = 0; j < i; ++j)
239 dma_fence_get(fences[j]);
241 array = dma_fence_array_create(i, fences, fence_context,
244 for (j = 0; j < i; ++j)
245 dma_fence_put(fences[j]);
250 *fence = dma_fence_get(&array->base);
251 dma_fence_put(ring->vmid_wait);
252 ring->vmid_wait = &array->base;
261 * amdgpu_vmid_grab_reserved - try to assign reserved VMID
263 * @vm: vm to allocate id for
264 * @ring: ring we want to submit job to
265 * @job: job who wants to use the VMID
266 * @id: resulting VMID
267 * @fence: fence to wait for if no id could be grabbed
269 * Try to assign a reserved VMID.
271 static int amdgpu_vmid_grab_reserved(struct amdgpu_vm *vm,
272 struct amdgpu_ring *ring,
273 struct amdgpu_job *job,
274 struct amdgpu_vmid **id,
275 struct dma_fence **fence)
277 struct amdgpu_device *adev = ring->adev;
278 unsigned vmhub = ring->vm_hub;
279 struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
280 uint64_t fence_context = adev->fence_context + ring->idx;
281 bool needs_flush = vm->use_cpu_for_update;
282 uint64_t updates = amdgpu_vm_tlb_seq(vm);
285 *id = id_mgr->reserved;
286 if ((*id)->owner != vm->immediate.fence_context ||
287 !amdgpu_vmid_compatible(*id, job) ||
288 (*id)->flushed_updates < updates ||
289 !(*id)->last_flush ||
290 ((*id)->last_flush->context != fence_context &&
291 !dma_fence_is_signaled((*id)->last_flush))) {
292 struct dma_fence *tmp;
294 /* Don't use per engine and per process VMID at the same time */
295 if (adev->vm_manager.concurrent_flush)
298 /* to prevent one context starved by another context */
299 (*id)->pd_gpu_addr = 0;
300 tmp = amdgpu_sync_peek_fence(&(*id)->active, ring);
303 *fence = dma_fence_get(tmp);
309 /* Good we can use this VMID. Remember this submission as
312 r = amdgpu_sync_fence(&(*id)->active, &job->base.s_fence->finished);
316 job->vm_needs_flush = needs_flush;
317 job->spm_update_needed = true;
322 * amdgpu_vmid_grab_used - try to reuse a VMID
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
330 * Try to reuse a VMID for this submission.
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)
338 struct amdgpu_device *adev = ring->adev;
339 unsigned vmhub = ring->vm_hub;
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);
345 job->vm_needs_flush = vm->use_cpu_for_update;
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;
351 /* Check all the prerequisites to using this VMID */
352 if ((*id)->owner != vm->immediate.fence_context)
355 if (!amdgpu_vmid_compatible(*id, job))
358 if (!(*id)->last_flush ||
359 ((*id)->last_flush->context != fence_context &&
360 !dma_fence_is_signaled((*id)->last_flush)))
363 if ((*id)->flushed_updates < updates)
366 if (needs_flush && !adev->vm_manager.concurrent_flush)
369 /* Good, we can use this VMID. Remember this submission as
372 r = amdgpu_sync_fence(&(*id)->active,
373 &job->base.s_fence->finished);
377 job->vm_needs_flush |= needs_flush;
386 * amdgpu_vmid_grab - allocate the next free VMID
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
393 * Allocate an id for the vm, adding fences to the sync obj as necessary.
395 int amdgpu_vmid_grab(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
396 struct amdgpu_job *job, struct dma_fence **fence)
398 struct amdgpu_device *adev = ring->adev;
399 unsigned vmhub = ring->vm_hub;
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;
405 mutex_lock(&id_mgr->lock);
406 r = amdgpu_vmid_grab_idle(ring, &idle, fence);
410 if (vm->reserved_vmid[vmhub] || (enforce_isolation && (vmhub == AMDGPU_GFXHUB(0)))) {
411 r = amdgpu_vmid_grab_reserved(vm, ring, job, &id, fence);
415 r = amdgpu_vmid_grab_used(vm, ring, job, &id, fence);
420 /* Still no ID to use? Then use the idle one found earlier */
423 /* Remember this submission as user of the VMID */
424 r = amdgpu_sync_fence(&id->active,
425 &job->base.s_fence->finished);
429 job->vm_needs_flush = true;
432 list_move_tail(&id->list, &id_mgr->ids_lru);
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;
441 job->vmid = id - id_mgr->ids;
442 job->pasid = vm->pasid;
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;
453 trace_amdgpu_vm_grab_id(vm, ring, job);
456 mutex_unlock(&id_mgr->lock);
460 int amdgpu_vmid_alloc_reserved(struct amdgpu_device *adev,
463 struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
465 mutex_lock(&id_mgr->lock);
467 ++id_mgr->reserved_use_count;
468 if (!id_mgr->reserved) {
469 struct amdgpu_vmid *id;
471 id = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vmid,
473 /* Remove from normal round robin handling */
474 list_del_init(&id->list);
475 id_mgr->reserved = id;
478 mutex_unlock(&id_mgr->lock);
482 void amdgpu_vmid_free_reserved(struct amdgpu_device *adev,
485 struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
487 mutex_lock(&id_mgr->lock);
488 if (!--id_mgr->reserved_use_count) {
489 /* give the reserved ID back to normal round robin */
490 list_add(&id_mgr->reserved->list, &id_mgr->ids_lru);
491 id_mgr->reserved = NULL;
494 mutex_unlock(&id_mgr->lock);
498 * amdgpu_vmid_reset - reset VMID to zero
500 * @adev: amdgpu device structure
502 * @vmid: vmid number to use
504 * Reset saved GDW, GWS and OA to force switch on next flush.
506 void amdgpu_vmid_reset(struct amdgpu_device *adev, unsigned vmhub,
509 struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
510 struct amdgpu_vmid *id = &id_mgr->ids[vmid];
512 mutex_lock(&id_mgr->lock);
520 mutex_unlock(&id_mgr->lock);
524 * amdgpu_vmid_reset_all - reset VMID to zero
526 * @adev: amdgpu device structure
528 * Reset VMID to force flush on next use
530 void amdgpu_vmid_reset_all(struct amdgpu_device *adev)
534 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
535 struct amdgpu_vmid_mgr *id_mgr =
536 &adev->vm_manager.id_mgr[i];
538 for (j = 1; j < id_mgr->num_ids; ++j)
539 amdgpu_vmid_reset(adev, i, j);
544 * amdgpu_vmid_mgr_init - init the VMID manager
546 * @adev: amdgpu_device pointer
548 * Initialize the VM manager structures
550 void amdgpu_vmid_mgr_init(struct amdgpu_device *adev)
554 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
555 struct amdgpu_vmid_mgr *id_mgr =
556 &adev->vm_manager.id_mgr[i];
558 mutex_init(&id_mgr->lock);
559 INIT_LIST_HEAD(&id_mgr->ids_lru);
560 id_mgr->reserved_use_count = 0;
562 /* manage only VMIDs not used by KFD */
563 id_mgr->num_ids = adev->vm_manager.first_kfd_vmid;
565 /* skip over VMID 0, since it is the system VM */
566 for (j = 1; j < id_mgr->num_ids; ++j) {
567 amdgpu_vmid_reset(adev, i, j);
568 amdgpu_sync_create(&id_mgr->ids[j].active);
569 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
572 /* alloc a default reserved vmid to enforce isolation */
573 if (enforce_isolation)
574 amdgpu_vmid_alloc_reserved(adev, AMDGPU_GFXHUB(0));
579 * amdgpu_vmid_mgr_fini - cleanup VM manager
581 * @adev: amdgpu_device pointer
583 * Cleanup the VM manager and free resources.
585 void amdgpu_vmid_mgr_fini(struct amdgpu_device *adev)
589 for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) {
590 struct amdgpu_vmid_mgr *id_mgr =
591 &adev->vm_manager.id_mgr[i];
593 mutex_destroy(&id_mgr->lock);
594 for (j = 0; j < AMDGPU_NUM_VMID; ++j) {
595 struct amdgpu_vmid *id = &id_mgr->ids[j];
597 amdgpu_sync_free(&id->active);
598 dma_fence_put(id->last_flush);
599 dma_fence_put(id->pasid_mapping);