Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 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: |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 9 | * Rob Clark <robdclark@gmail.com> |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 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 | |
Maarten Lankhorst | 1b375dc | 2013-07-05 09:29:32 +0200 | [diff] [blame] | 42 | #include <linux/ww_mutex.h> |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 43 | #include <linux/fence.h> |
| 44 | #include <linux/slab.h> |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 45 | #include <linux/seqlock.h> |
| 46 | #include <linux/rcupdate.h> |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 47 | |
| 48 | extern struct ww_class reservation_ww_class; |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 49 | extern struct lock_class_key reservation_seqcount_class; |
| 50 | extern const char reservation_seqcount_string[]; |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 51 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 52 | /** |
| 53 | * struct reservation_object_list - a list of shared fences |
| 54 | * @rcu: for internal use |
| 55 | * @shared_count: table of shared fences |
| 56 | * @shared_max: for growing shared fence table |
| 57 | * @shared: shared fence table |
| 58 | */ |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 59 | struct reservation_object_list { |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 60 | struct rcu_head rcu; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 61 | u32 shared_count, shared_max; |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 62 | struct fence __rcu *shared[]; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 63 | }; |
| 64 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 65 | /** |
| 66 | * struct reservation_object - a reservation object manages fences for a buffer |
| 67 | * @lock: update side lock |
| 68 | * @seq: sequence count for managing RCU read-side synchronization |
| 69 | * @fence_excl: the exclusive fence, if there is one currently |
| 70 | * @fence: list of current shared fences |
| 71 | * @staged: staged copy of shared fences for RCU updates |
| 72 | */ |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 73 | struct reservation_object { |
| 74 | struct ww_mutex lock; |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 75 | seqcount_t seq; |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 76 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 77 | struct fence __rcu *fence_excl; |
| 78 | struct reservation_object_list __rcu *fence; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 79 | struct reservation_object_list *staged; |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 80 | }; |
| 81 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 82 | #define reservation_object_held(obj) lockdep_is_held(&(obj)->lock.base) |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 83 | #define reservation_object_assert_held(obj) \ |
| 84 | lockdep_assert_held(&(obj)->lock.base) |
| 85 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 86 | /** |
| 87 | * reservation_object_init - initialize a reservation object |
| 88 | * @obj: the reservation object |
| 89 | */ |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 90 | static inline void |
| 91 | reservation_object_init(struct reservation_object *obj) |
| 92 | { |
| 93 | ww_mutex_init(&obj->lock, &reservation_ww_class); |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 94 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 95 | __seqcount_init(&obj->seq, reservation_seqcount_string, &reservation_seqcount_class); |
| 96 | RCU_INIT_POINTER(obj->fence, NULL); |
| 97 | RCU_INIT_POINTER(obj->fence_excl, NULL); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 98 | obj->staged = NULL; |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 99 | } |
| 100 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 101 | /** |
| 102 | * reservation_object_fini - destroys a reservation object |
| 103 | * @obj: the reservation object |
| 104 | */ |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 105 | static inline void |
| 106 | reservation_object_fini(struct reservation_object *obj) |
| 107 | { |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 108 | int i; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 109 | struct reservation_object_list *fobj; |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 110 | struct fence *excl; |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 111 | |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 112 | /* |
| 113 | * This object should be dead and all references must have |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 114 | * been released to it, so no need to be protected with rcu. |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 115 | */ |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 116 | excl = rcu_dereference_protected(obj->fence_excl, 1); |
| 117 | if (excl) |
| 118 | fence_put(excl); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 119 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 120 | fobj = rcu_dereference_protected(obj->fence, 1); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 121 | if (fobj) { |
| 122 | for (i = 0; i < fobj->shared_count; ++i) |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 123 | fence_put(rcu_dereference_protected(fobj->shared[i], 1)); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 124 | |
| 125 | kfree(fobj); |
| 126 | } |
| 127 | kfree(obj->staged); |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 128 | |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 129 | ww_mutex_destroy(&obj->lock); |
| 130 | } |
| 131 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 132 | /** |
| 133 | * reservation_object_get_list - get the reservation object's |
| 134 | * shared fence list, with update-side lock held |
| 135 | * @obj: the reservation object |
| 136 | * |
| 137 | * Returns the shared fence list. Does NOT take references to |
| 138 | * the fence. The obj->lock must be held. |
| 139 | */ |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 140 | static inline struct reservation_object_list * |
| 141 | reservation_object_get_list(struct reservation_object *obj) |
| 142 | { |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 143 | return rcu_dereference_protected(obj->fence, |
| 144 | reservation_object_held(obj)); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 145 | } |
| 146 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 147 | /** |
| 148 | * reservation_object_get_excl - get the reservation object's |
| 149 | * exclusive fence, with update-side lock held |
| 150 | * @obj: the reservation object |
| 151 | * |
| 152 | * Returns the exclusive fence (if any). Does NOT take a |
| 153 | * reference. The obj->lock must be held. |
| 154 | * |
| 155 | * RETURNS |
| 156 | * The exclusive fence or NULL |
| 157 | */ |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 158 | static inline struct fence * |
| 159 | reservation_object_get_excl(struct reservation_object *obj) |
| 160 | { |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 161 | return rcu_dereference_protected(obj->fence_excl, |
| 162 | reservation_object_held(obj)); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 163 | } |
| 164 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 165 | /** |
| 166 | * reservation_object_get_excl_rcu - get the reservation object's |
| 167 | * exclusive fence, without lock held. |
| 168 | * @obj: the reservation object |
| 169 | * |
| 170 | * If there is an exclusive fence, this atomically increments it's |
| 171 | * reference count and returns it. |
| 172 | * |
| 173 | * RETURNS |
| 174 | * The exclusive fence or NULL if none |
| 175 | */ |
Rob Clark | 824815c | 2016-03-31 16:23:51 -0400 | [diff] [blame] | 176 | static inline struct fence * |
| 177 | reservation_object_get_excl_rcu(struct reservation_object *obj) |
| 178 | { |
| 179 | struct fence *fence; |
Chris Wilson | d14cc2b | 2016-11-14 11:55:40 +0000 | [diff] [blame] | 180 | |
| 181 | if (!rcu_access_pointer(obj->fence_excl)) |
| 182 | return NULL; |
| 183 | |
Rob Clark | 824815c | 2016-03-31 16:23:51 -0400 | [diff] [blame] | 184 | rcu_read_lock(); |
Chris Wilson | d14cc2b | 2016-11-14 11:55:40 +0000 | [diff] [blame] | 185 | fence = fence_get_rcu_safe(&obj->fence_excl); |
Rob Clark | 824815c | 2016-03-31 16:23:51 -0400 | [diff] [blame] | 186 | rcu_read_unlock(); |
Chris Wilson | d14cc2b | 2016-11-14 11:55:40 +0000 | [diff] [blame] | 187 | |
Rob Clark | 824815c | 2016-03-31 16:23:51 -0400 | [diff] [blame] | 188 | return fence; |
| 189 | } |
| 190 | |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 191 | int reservation_object_reserve_shared(struct reservation_object *obj); |
| 192 | void reservation_object_add_shared_fence(struct reservation_object *obj, |
| 193 | struct fence *fence); |
| 194 | |
| 195 | void reservation_object_add_excl_fence(struct reservation_object *obj, |
| 196 | struct fence *fence); |
| 197 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 198 | int reservation_object_get_fences_rcu(struct reservation_object *obj, |
| 199 | struct fence **pfence_excl, |
| 200 | unsigned *pshared_count, |
| 201 | struct fence ***pshared); |
| 202 | |
| 203 | long reservation_object_wait_timeout_rcu(struct reservation_object *obj, |
| 204 | bool wait_all, bool intr, |
| 205 | unsigned long timeout); |
| 206 | |
| 207 | bool reservation_object_test_signaled_rcu(struct reservation_object *obj, |
| 208 | bool test_all); |
| 209 | |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 210 | #endif /* _LINUX_RESERVATION_H */ |