sched_fence.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 "gpu_scheduler.h"
  29. struct amd_sched_fence *amd_sched_fence_create(struct amd_sched_entity *s_entity)
  30. {
  31. struct amd_sched_fence *fence = NULL;
  32. unsigned seq;
  33. fence = kzalloc(sizeof(struct amd_sched_fence), GFP_KERNEL);
  34. if (fence == NULL)
  35. return NULL;
  36. fence->entity = s_entity;
  37. spin_lock_init(&fence->lock);
  38. seq = atomic_inc_return(&s_entity->fence_seq);
  39. fence_init(&fence->base, &amd_sched_fence_ops, &fence->lock,
  40. s_entity->fence_context, seq);
  41. return fence;
  42. }
  43. void amd_sched_fence_signal(struct amd_sched_fence *fence)
  44. {
  45. int ret = fence_signal(&fence->base);
  46. if (!ret)
  47. FENCE_TRACE(&fence->base, "signaled from irq context\n");
  48. else
  49. FENCE_TRACE(&fence->base, "was already signaled\n");
  50. }
  51. static const char *amd_sched_fence_get_driver_name(struct fence *fence)
  52. {
  53. return "amd_sched";
  54. }
  55. static const char *amd_sched_fence_get_timeline_name(struct fence *f)
  56. {
  57. struct amd_sched_fence *fence = to_amd_sched_fence(f);
  58. return (const char *)fence->entity->name;
  59. }
  60. static bool amd_sched_fence_enable_signaling(struct fence *f)
  61. {
  62. return true;
  63. }
  64. const struct fence_ops amd_sched_fence_ops = {
  65. .get_driver_name = amd_sched_fence_get_driver_name,
  66. .get_timeline_name = amd_sched_fence_get_timeline_name,
  67. .enable_signaling = amd_sched_fence_enable_signaling,
  68. .signaled = NULL,
  69. .wait = fence_default_wait,
  70. .release = NULL,
  71. };