i915_timeline.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * Copyright © 2016 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. #ifndef I915_TIMELINE_H
  25. #define I915_TIMELINE_H
  26. #include <linux/list.h>
  27. #include <linux/kref.h>
  28. #include "i915_request.h"
  29. #include "i915_syncmap.h"
  30. #include "i915_utils.h"
  31. struct i915_timeline {
  32. u64 fence_context;
  33. u32 seqno;
  34. spinlock_t lock;
  35. #define TIMELINE_CLIENT 0 /* default subclass */
  36. #define TIMELINE_ENGINE 1
  37. /**
  38. * List of breadcrumbs associated with GPU requests currently
  39. * outstanding.
  40. */
  41. struct list_head requests;
  42. /* Contains an RCU guarded pointer to the last request. No reference is
  43. * held to the request, users must carefully acquire a reference to
  44. * the request using i915_gem_active_get_request_rcu(), or hold the
  45. * struct_mutex.
  46. */
  47. struct i915_gem_active last_request;
  48. /**
  49. * We track the most recent seqno that we wait on in every context so
  50. * that we only have to emit a new await and dependency on a more
  51. * recent sync point. As the contexts may be executed out-of-order, we
  52. * have to track each individually and can not rely on an absolute
  53. * global_seqno. When we know that all tracked fences are completed
  54. * (i.e. when the driver is idle), we know that the syncmap is
  55. * redundant and we can discard it without loss of generality.
  56. */
  57. struct i915_syncmap *sync;
  58. /**
  59. * Separately to the inter-context seqno map above, we track the last
  60. * barrier (e.g. semaphore wait) to the global engine timelines. Note
  61. * that this tracks global_seqno rather than the context.seqno, and
  62. * so it is subject to the limitations of hw wraparound and that we
  63. * may need to revoke global_seqno (on pre-emption).
  64. */
  65. u32 global_sync[I915_NUM_ENGINES];
  66. struct list_head link;
  67. const char *name;
  68. struct kref kref;
  69. };
  70. void i915_timeline_init(struct drm_i915_private *i915,
  71. struct i915_timeline *tl,
  72. const char *name);
  73. void i915_timeline_fini(struct i915_timeline *tl);
  74. struct i915_timeline *
  75. i915_timeline_create(struct drm_i915_private *i915, const char *name);
  76. static inline struct i915_timeline *
  77. i915_timeline_get(struct i915_timeline *timeline)
  78. {
  79. kref_get(&timeline->kref);
  80. return timeline;
  81. }
  82. void __i915_timeline_free(struct kref *kref);
  83. static inline void i915_timeline_put(struct i915_timeline *timeline)
  84. {
  85. kref_put(&timeline->kref, __i915_timeline_free);
  86. }
  87. static inline int __i915_timeline_sync_set(struct i915_timeline *tl,
  88. u64 context, u32 seqno)
  89. {
  90. return i915_syncmap_set(&tl->sync, context, seqno);
  91. }
  92. static inline int i915_timeline_sync_set(struct i915_timeline *tl,
  93. const struct dma_fence *fence)
  94. {
  95. return __i915_timeline_sync_set(tl, fence->context, fence->seqno);
  96. }
  97. static inline bool __i915_timeline_sync_is_later(struct i915_timeline *tl,
  98. u64 context, u32 seqno)
  99. {
  100. return i915_syncmap_is_later(&tl->sync, context, seqno);
  101. }
  102. static inline bool i915_timeline_sync_is_later(struct i915_timeline *tl,
  103. const struct dma_fence *fence)
  104. {
  105. return __i915_timeline_sync_is_later(tl, fence->context, fence->seqno);
  106. }
  107. void i915_timelines_park(struct drm_i915_private *i915);
  108. #endif