amdgpu_sched.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
  31. struct amdgpu_job **job)
  32. {
  33. size_t size = sizeof(struct amdgpu_job);
  34. if (num_ibs == 0)
  35. return -EINVAL;
  36. size += sizeof(struct amdgpu_ib) * num_ibs;
  37. *job = kzalloc(size, GFP_KERNEL);
  38. if (!*job)
  39. return -ENOMEM;
  40. (*job)->adev = adev;
  41. (*job)->ibs = (void *)&(*job)[1];
  42. (*job)->num_ibs = num_ibs;
  43. (*job)->free_job = NULL;
  44. return 0;
  45. }
  46. void amdgpu_job_free(struct amdgpu_job *job)
  47. {
  48. unsigned i;
  49. for (i = 0; i < job->num_ibs; ++i)
  50. amdgpu_ib_free(job->adev, &job->ibs[i]);
  51. amdgpu_bo_unref(&job->uf.bo);
  52. /* TODO: Free the job structure here as well */
  53. }
  54. static struct fence *amdgpu_sched_dependency(struct amd_sched_job *sched_job)
  55. {
  56. struct amdgpu_job *job = to_amdgpu_job(sched_job);
  57. struct amdgpu_sync *sync = &job->ibs->sync;
  58. struct amdgpu_vm *vm = job->ibs->vm;
  59. struct fence *fence = amdgpu_sync_get_fence(sync);
  60. if (fence == NULL && vm && !job->ibs->grabbed_vmid) {
  61. struct amdgpu_ring *ring = job->ibs->ring;
  62. int r;
  63. r = amdgpu_vm_grab_id(vm, ring, sync,
  64. &job->base.s_fence->base);
  65. if (r)
  66. DRM_ERROR("Error getting VM ID (%d)\n", r);
  67. else
  68. job->ibs->grabbed_vmid = true;
  69. fence = amdgpu_sync_get_fence(sync);
  70. }
  71. return fence;
  72. }
  73. static struct fence *amdgpu_sched_run_job(struct amd_sched_job *sched_job)
  74. {
  75. struct amdgpu_fence *fence = NULL;
  76. struct amdgpu_job *job;
  77. int r;
  78. if (!sched_job) {
  79. DRM_ERROR("job is null\n");
  80. return NULL;
  81. }
  82. job = to_amdgpu_job(sched_job);
  83. trace_amdgpu_sched_run_job(job);
  84. r = amdgpu_ib_schedule(job->adev, job->num_ibs, job->ibs, job->owner);
  85. if (r) {
  86. DRM_ERROR("Error scheduling IBs (%d)\n", r);
  87. goto err;
  88. }
  89. fence = job->ibs[job->num_ibs - 1].fence;
  90. fence_get(&fence->base);
  91. err:
  92. if (job->free_job)
  93. job->free_job(job);
  94. kfree(job);
  95. return fence ? &fence->base : NULL;
  96. }
  97. struct amd_sched_backend_ops amdgpu_sched_ops = {
  98. .dependency = amdgpu_sched_dependency,
  99. .run_job = amdgpu_sched_run_job,
  100. };
  101. int amdgpu_sched_ib_submit_kernel_helper(struct amdgpu_device *adev,
  102. struct amdgpu_ring *ring,
  103. struct amdgpu_ib *ibs,
  104. unsigned num_ibs,
  105. int (*free_job)(struct amdgpu_job *),
  106. void *owner,
  107. struct fence **f)
  108. {
  109. struct amdgpu_job *job =
  110. kzalloc(sizeof(struct amdgpu_job), GFP_KERNEL);
  111. if (!job)
  112. return -ENOMEM;
  113. job->base.sched = &ring->sched;
  114. job->base.s_entity = &adev->kernel_ctx.rings[ring->idx].entity;
  115. job->base.s_fence = amd_sched_fence_create(job->base.s_entity, owner);
  116. if (!job->base.s_fence) {
  117. kfree(job);
  118. return -ENOMEM;
  119. }
  120. *f = fence_get(&job->base.s_fence->base);
  121. job->adev = adev;
  122. job->ibs = ibs;
  123. job->num_ibs = num_ibs;
  124. job->owner = owner;
  125. job->free_job = free_job;
  126. amd_sched_entity_push_job(&job->base);
  127. return 0;
  128. }