lib_sw_fence.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * Copyright © 2017 Intel Corporation
  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 (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. *
  23. */
  24. #include "lib_sw_fence.h"
  25. /* Small library of different fence types useful for writing tests */
  26. static int __i915_sw_fence_call
  27. nop_fence_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
  28. {
  29. return NOTIFY_DONE;
  30. }
  31. void __onstack_fence_init(struct i915_sw_fence *fence,
  32. const char *name,
  33. struct lock_class_key *key)
  34. {
  35. debug_fence_init_onstack(fence);
  36. __init_waitqueue_head(&fence->wait, name, key);
  37. atomic_set(&fence->pending, 1);
  38. fence->flags = (unsigned long)nop_fence_notify;
  39. }
  40. void onstack_fence_fini(struct i915_sw_fence *fence)
  41. {
  42. i915_sw_fence_commit(fence);
  43. i915_sw_fence_fini(fence);
  44. }
  45. static void timed_fence_wake(struct timer_list *t)
  46. {
  47. struct timed_fence *tf = from_timer(tf, t, timer);
  48. i915_sw_fence_commit(&tf->fence);
  49. }
  50. void timed_fence_init(struct timed_fence *tf, unsigned long expires)
  51. {
  52. onstack_fence_init(&tf->fence);
  53. timer_setup_on_stack(&tf->timer, timed_fence_wake, 0);
  54. if (time_after(expires, jiffies))
  55. mod_timer(&tf->timer, expires);
  56. else
  57. i915_sw_fence_commit(&tf->fence);
  58. }
  59. void timed_fence_fini(struct timed_fence *tf)
  60. {
  61. if (del_timer_sync(&tf->timer))
  62. i915_sw_fence_commit(&tf->fence);
  63. destroy_timer_on_stack(&tf->timer);
  64. i915_sw_fence_fini(&tf->fence);
  65. }