reservation.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * Header file for reservations for dma-buf and ttm
  3. *
  4. * Copyright(C) 2011 Linaro Limited. All rights reserved.
  5. * Copyright (C) 2012-2013 Canonical Ltd
  6. * Copyright (C) 2012 Texas Instruments
  7. *
  8. * Authors:
  9. * Rob Clark <robdclark@gmail.com>
  10. * Maarten Lankhorst <maarten.lankhorst@canonical.com>
  11. * Thomas Hellstrom <thellstrom-at-vmware-dot-com>
  12. *
  13. * Based on bo.c which bears the following copyright notice,
  14. * but is dual licensed:
  15. *
  16. * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA
  17. * All Rights Reserved.
  18. *
  19. * Permission is hereby granted, free of charge, to any person obtaining a
  20. * copy of this software and associated documentation files (the
  21. * "Software"), to deal in the Software without restriction, including
  22. * without limitation the rights to use, copy, modify, merge, publish,
  23. * distribute, sub license, and/or sell copies of the Software, and to
  24. * permit persons to whom the Software is furnished to do so, subject to
  25. * the following conditions:
  26. *
  27. * The above copyright notice and this permission notice (including the
  28. * next paragraph) shall be included in all copies or substantial portions
  29. * of the Software.
  30. *
  31. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  32. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  33. * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
  34. * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
  35. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  36. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  37. * USE OR OTHER DEALINGS IN THE SOFTWARE.
  38. */
  39. #ifndef _LINUX_RESERVATION_H
  40. #define _LINUX_RESERVATION_H
  41. #include <linux/ww_mutex.h>
  42. #include <linux/fence.h>
  43. #include <linux/slab.h>
  44. #include <linux/seqlock.h>
  45. #include <linux/rcupdate.h>
  46. extern struct ww_class reservation_ww_class;
  47. extern struct lock_class_key reservation_seqcount_class;
  48. extern const char reservation_seqcount_string[];
  49. struct reservation_object_list {
  50. struct rcu_head rcu;
  51. u32 shared_count, shared_max;
  52. struct fence __rcu *shared[];
  53. };
  54. struct reservation_object {
  55. struct ww_mutex lock;
  56. seqcount_t seq;
  57. struct fence __rcu *fence_excl;
  58. struct reservation_object_list __rcu *fence;
  59. struct reservation_object_list *staged;
  60. };
  61. #define reservation_object_held(obj) lockdep_is_held(&(obj)->lock.base)
  62. #define reservation_object_assert_held(obj) \
  63. lockdep_assert_held(&(obj)->lock.base)
  64. static inline void
  65. reservation_object_init(struct reservation_object *obj)
  66. {
  67. ww_mutex_init(&obj->lock, &reservation_ww_class);
  68. __seqcount_init(&obj->seq, reservation_seqcount_string, &reservation_seqcount_class);
  69. RCU_INIT_POINTER(obj->fence, NULL);
  70. RCU_INIT_POINTER(obj->fence_excl, NULL);
  71. obj->staged = NULL;
  72. }
  73. static inline void
  74. reservation_object_fini(struct reservation_object *obj)
  75. {
  76. int i;
  77. struct reservation_object_list *fobj;
  78. struct fence *excl;
  79. /*
  80. * This object should be dead and all references must have
  81. * been released to it, so no need to be protected with rcu.
  82. */
  83. excl = rcu_dereference_protected(obj->fence_excl, 1);
  84. if (excl)
  85. fence_put(excl);
  86. fobj = rcu_dereference_protected(obj->fence, 1);
  87. if (fobj) {
  88. for (i = 0; i < fobj->shared_count; ++i)
  89. fence_put(rcu_dereference_protected(fobj->shared[i], 1));
  90. kfree(fobj);
  91. }
  92. kfree(obj->staged);
  93. ww_mutex_destroy(&obj->lock);
  94. }
  95. static inline struct reservation_object_list *
  96. reservation_object_get_list(struct reservation_object *obj)
  97. {
  98. return rcu_dereference_protected(obj->fence,
  99. reservation_object_held(obj));
  100. }
  101. static inline struct fence *
  102. reservation_object_get_excl(struct reservation_object *obj)
  103. {
  104. return rcu_dereference_protected(obj->fence_excl,
  105. reservation_object_held(obj));
  106. }
  107. int reservation_object_reserve_shared(struct reservation_object *obj);
  108. void reservation_object_add_shared_fence(struct reservation_object *obj,
  109. struct fence *fence);
  110. void reservation_object_add_excl_fence(struct reservation_object *obj,
  111. struct fence *fence);
  112. int reservation_object_get_fences_rcu(struct reservation_object *obj,
  113. struct fence **pfence_excl,
  114. unsigned *pshared_count,
  115. struct fence ***pshared);
  116. long reservation_object_wait_timeout_rcu(struct reservation_object *obj,
  117. bool wait_all, bool intr,
  118. unsigned long timeout);
  119. bool reservation_object_test_signaled_rcu(struct reservation_object *obj,
  120. bool test_all);
  121. #endif /* _LINUX_RESERVATION_H */