amdgpu_job.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /*
  2. * Copyright 2015 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. */
  24. #include <linux/kthread.h>
  25. #include <linux/wait.h>
  26. #include <linux/sched.h>
  27. #include <drm/drmP.h>
  28. #include "amdgpu.h"
  29. #include "amdgpu_trace.h"
  30. static void amdgpu_job_timedout(struct drm_sched_job *s_job)
  31. {
  32. struct amdgpu_job *job = container_of(s_job, struct amdgpu_job, base);
  33. DRM_ERROR("ring %s timeout, last signaled seq=%u, last emitted seq=%u\n",
  34. job->base.sched->name,
  35. atomic_read(&job->ring->fence_drv.last_seq),
  36. job->ring->fence_drv.sync_seq);
  37. amdgpu_device_gpu_recover(job->adev, job, false);
  38. }
  39. int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
  40. struct amdgpu_job **job, struct amdgpu_vm *vm)
  41. {
  42. size_t size = sizeof(struct amdgpu_job);
  43. if (num_ibs == 0)
  44. return -EINVAL;
  45. size += sizeof(struct amdgpu_ib) * num_ibs;
  46. *job = kzalloc(size, GFP_KERNEL);
  47. if (!*job)
  48. return -ENOMEM;
  49. (*job)->adev = adev;
  50. (*job)->vm = vm;
  51. (*job)->ibs = (void *)&(*job)[1];
  52. (*job)->num_ibs = num_ibs;
  53. amdgpu_sync_create(&(*job)->sync);
  54. amdgpu_sync_create(&(*job)->sched_sync);
  55. (*job)->vram_lost_counter = atomic_read(&adev->vram_lost_counter);
  56. return 0;
  57. }
  58. int amdgpu_job_alloc_with_ib(struct amdgpu_device *adev, unsigned size,
  59. struct amdgpu_job **job)
  60. {
  61. int r;
  62. r = amdgpu_job_alloc(adev, 1, job, NULL);
  63. if (r)
  64. return r;
  65. r = amdgpu_ib_get(adev, NULL, size, &(*job)->ibs[0]);
  66. if (r)
  67. kfree(*job);
  68. else
  69. (*job)->vm_pd_addr = adev->gart.table_addr;
  70. return r;
  71. }
  72. void amdgpu_job_free_resources(struct amdgpu_job *job)
  73. {
  74. struct dma_fence *f;
  75. unsigned i;
  76. /* use sched fence if available */
  77. f = job->base.s_fence ? &job->base.s_fence->finished : job->fence;
  78. for (i = 0; i < job->num_ibs; ++i)
  79. amdgpu_ib_free(job->adev, &job->ibs[i], f);
  80. }
  81. static void amdgpu_job_free_cb(struct drm_sched_job *s_job)
  82. {
  83. struct amdgpu_job *job = container_of(s_job, struct amdgpu_job, base);
  84. amdgpu_ring_priority_put(job->ring, s_job->s_priority);
  85. dma_fence_put(job->fence);
  86. amdgpu_sync_free(&job->sync);
  87. amdgpu_sync_free(&job->sched_sync);
  88. kfree(job);
  89. }
  90. void amdgpu_job_free(struct amdgpu_job *job)
  91. {
  92. amdgpu_job_free_resources(job);
  93. dma_fence_put(job->fence);
  94. amdgpu_sync_free(&job->sync);
  95. amdgpu_sync_free(&job->sched_sync);
  96. kfree(job);
  97. }
  98. int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring,
  99. struct drm_sched_entity *entity, void *owner,
  100. struct dma_fence **f)
  101. {
  102. int r;
  103. job->ring = ring;
  104. if (!f)
  105. return -EINVAL;
  106. r = drm_sched_job_init(&job->base, &ring->sched, entity, owner);
  107. if (r)
  108. return r;
  109. job->owner = owner;
  110. job->fence_ctx = entity->fence_context;
  111. *f = dma_fence_get(&job->base.s_fence->finished);
  112. amdgpu_job_free_resources(job);
  113. amdgpu_ring_priority_get(job->ring, job->base.s_priority);
  114. drm_sched_entity_push_job(&job->base, entity);
  115. return 0;
  116. }
  117. static struct dma_fence *amdgpu_job_dependency(struct drm_sched_job *sched_job,
  118. struct drm_sched_entity *s_entity)
  119. {
  120. struct amdgpu_job *job = to_amdgpu_job(sched_job);
  121. struct amdgpu_vm *vm = job->vm;
  122. bool explicit = false;
  123. int r;
  124. struct dma_fence *fence = amdgpu_sync_get_fence(&job->sync, &explicit);
  125. if (fence && explicit) {
  126. if (drm_sched_dependency_optimized(fence, s_entity)) {
  127. r = amdgpu_sync_fence(job->adev, &job->sched_sync, fence, false);
  128. if (r)
  129. DRM_ERROR("Error adding fence to sync (%d)\n", r);
  130. }
  131. }
  132. while (fence == NULL && vm && !job->vmid) {
  133. struct amdgpu_ring *ring = job->ring;
  134. r = amdgpu_vmid_grab(vm, ring, &job->sync,
  135. &job->base.s_fence->finished,
  136. job);
  137. if (r)
  138. DRM_ERROR("Error getting VM ID (%d)\n", r);
  139. fence = amdgpu_sync_get_fence(&job->sync, NULL);
  140. }
  141. return fence;
  142. }
  143. static struct dma_fence *amdgpu_job_run(struct drm_sched_job *sched_job)
  144. {
  145. struct dma_fence *fence = NULL, *finished;
  146. struct amdgpu_device *adev;
  147. struct amdgpu_job *job;
  148. int r;
  149. if (!sched_job) {
  150. DRM_ERROR("job is null\n");
  151. return NULL;
  152. }
  153. job = to_amdgpu_job(sched_job);
  154. finished = &job->base.s_fence->finished;
  155. adev = job->adev;
  156. BUG_ON(amdgpu_sync_peek_fence(&job->sync, NULL));
  157. trace_amdgpu_sched_run_job(job);
  158. if (job->vram_lost_counter != atomic_read(&adev->vram_lost_counter))
  159. dma_fence_set_error(finished, -ECANCELED);/* skip IB as well if VRAM lost */
  160. if (finished->error < 0) {
  161. DRM_INFO("Skip scheduling IBs!\n");
  162. } else {
  163. r = amdgpu_ib_schedule(job->ring, job->num_ibs, job->ibs, job,
  164. &fence);
  165. if (r)
  166. DRM_ERROR("Error scheduling IBs (%d)\n", r);
  167. }
  168. /* if gpu reset, hw fence will be replaced here */
  169. dma_fence_put(job->fence);
  170. job->fence = dma_fence_get(fence);
  171. amdgpu_job_free_resources(job);
  172. return fence;
  173. }
  174. const struct drm_sched_backend_ops amdgpu_sched_ops = {
  175. .dependency = amdgpu_job_dependency,
  176. .run_job = amdgpu_job_run,
  177. .timedout_job = amdgpu_job_timedout,
  178. .free_job = amdgpu_job_free_cb
  179. };