diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-06-14 14:50:57 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-06-16 04:16:37 -0400 |
commit | 1a75a222f5ca1063249b5c92972d32dcc3c8966e (patch) | |
tree | 396a78ce075816b8cd4b6d0a86696016aed7eefb /drivers/gpu/drm/drm_lock.c | |
parent | e1b1cf2f026b75d1b001816f708dc529b7384750 (diff) |
drm: Hide hw.lock cleanup in filp->release better
A few things:
- Rename the cleanup function from drm_master_release to
drm_legacy_lock_release. It doesn't relase any master stuff, but
just the legacy hw lock.
- Hide it in drm_lock.c, which allows us to make a few more functions
static in there. To avoid forward decl we need to shuffle the code a
bit though.
- Push the check for ->master into the function itself.
- Only call this for !DRIVER_MODESET.
End result: Another place that takes struct_mutex gone for good for
modern drivers.
v2: Remove leftover comment.
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1465930269-7883-3-git-send-email-daniel.vetter@ffwll.ch
Diffstat (limited to 'drivers/gpu/drm/drm_lock.c')
-rw-r--r-- | drivers/gpu/drm/drm_lock.c | 238 |
1 files changed, 122 insertions, 116 deletions
diff --git a/drivers/gpu/drm/drm_lock.c b/drivers/gpu/drm/drm_lock.c index daa2ff12101b..0fb8f9e73486 100644 --- a/drivers/gpu/drm/drm_lock.c +++ b/drivers/gpu/drm/drm_lock.c | |||
@@ -41,6 +41,110 @@ | |||
41 | static int drm_lock_take(struct drm_lock_data *lock_data, unsigned int context); | 41 | static int drm_lock_take(struct drm_lock_data *lock_data, unsigned int context); |
42 | 42 | ||
43 | /** | 43 | /** |
44 | * Take the heavyweight lock. | ||
45 | * | ||
46 | * \param lock lock pointer. | ||
47 | * \param context locking context. | ||
48 | * \return one if the lock is held, or zero otherwise. | ||
49 | * | ||
50 | * Attempt to mark the lock as held by the given context, via the \p cmpxchg instruction. | ||
51 | */ | ||
52 | static | ||
53 | int drm_lock_take(struct drm_lock_data *lock_data, | ||
54 | unsigned int context) | ||
55 | { | ||
56 | unsigned int old, new, prev; | ||
57 | volatile unsigned int *lock = &lock_data->hw_lock->lock; | ||
58 | |||
59 | spin_lock_bh(&lock_data->spinlock); | ||
60 | do { | ||
61 | old = *lock; | ||
62 | if (old & _DRM_LOCK_HELD) | ||
63 | new = old | _DRM_LOCK_CONT; | ||
64 | else { | ||
65 | new = context | _DRM_LOCK_HELD | | ||
66 | ((lock_data->user_waiters + lock_data->kernel_waiters > 1) ? | ||
67 | _DRM_LOCK_CONT : 0); | ||
68 | } | ||
69 | prev = cmpxchg(lock, old, new); | ||
70 | } while (prev != old); | ||
71 | spin_unlock_bh(&lock_data->spinlock); | ||
72 | |||
73 | if (_DRM_LOCKING_CONTEXT(old) == context) { | ||
74 | if (old & _DRM_LOCK_HELD) { | ||
75 | if (context != DRM_KERNEL_CONTEXT) { | ||
76 | DRM_ERROR("%d holds heavyweight lock\n", | ||
77 | context); | ||
78 | } | ||
79 | return 0; | ||
80 | } | ||
81 | } | ||
82 | |||
83 | if ((_DRM_LOCKING_CONTEXT(new)) == context && (new & _DRM_LOCK_HELD)) { | ||
84 | /* Have lock */ | ||
85 | return 1; | ||
86 | } | ||
87 | return 0; | ||
88 | } | ||
89 | |||
90 | /** | ||
91 | * This takes a lock forcibly and hands it to context. Should ONLY be used | ||
92 | * inside *_unlock to give lock to kernel before calling *_dma_schedule. | ||
93 | * | ||
94 | * \param dev DRM device. | ||
95 | * \param lock lock pointer. | ||
96 | * \param context locking context. | ||
97 | * \return always one. | ||
98 | * | ||
99 | * Resets the lock file pointer. | ||
100 | * Marks the lock as held by the given context, via the \p cmpxchg instruction. | ||
101 | */ | ||
102 | static int drm_lock_transfer(struct drm_lock_data *lock_data, | ||
103 | unsigned int context) | ||
104 | { | ||
105 | unsigned int old, new, prev; | ||
106 | volatile unsigned int *lock = &lock_data->hw_lock->lock; | ||
107 | |||
108 | lock_data->file_priv = NULL; | ||
109 | do { | ||
110 | old = *lock; | ||
111 | new = context | _DRM_LOCK_HELD; | ||
112 | prev = cmpxchg(lock, old, new); | ||
113 | } while (prev != old); | ||
114 | return 1; | ||
115 | } | ||
116 | |||
117 | static int drm_legacy_lock_free(struct drm_lock_data *lock_data, | ||
118 | unsigned int context) | ||
119 | { | ||
120 | unsigned int old, new, prev; | ||
121 | volatile unsigned int *lock = &lock_data->hw_lock->lock; | ||
122 | |||
123 | spin_lock_bh(&lock_data->spinlock); | ||
124 | if (lock_data->kernel_waiters != 0) { | ||
125 | drm_lock_transfer(lock_data, 0); | ||
126 | lock_data->idle_has_lock = 1; | ||
127 | spin_unlock_bh(&lock_data->spinlock); | ||
128 | return 1; | ||
129 | } | ||
130 | spin_unlock_bh(&lock_data->spinlock); | ||
131 | |||
132 | do { | ||
133 | old = *lock; | ||
134 | new = _DRM_LOCKING_CONTEXT(old); | ||
135 | prev = cmpxchg(lock, old, new); | ||
136 | } while (prev != old); | ||
137 | |||
138 | if (_DRM_LOCK_IS_HELD(old) && _DRM_LOCKING_CONTEXT(old) != context) { | ||
139 | DRM_ERROR("%d freed heavyweight lock held by %d\n", | ||
140 | context, _DRM_LOCKING_CONTEXT(old)); | ||
141 | return 1; | ||
142 | } | ||
143 | wake_up_interruptible(&lock_data->lock_queue); | ||
144 | return 0; | ||
145 | } | ||
146 | |||
147 | /** | ||
44 | * Lock ioctl. | 148 | * Lock ioctl. |
45 | * | 149 | * |
46 | * \param inode device inode. | 150 | * \param inode device inode. |
@@ -165,120 +269,6 @@ int drm_legacy_unlock(struct drm_device *dev, void *data, struct drm_file *file_ | |||
165 | } | 269 | } |
166 | 270 | ||
167 | /** | 271 | /** |
168 | * Take the heavyweight lock. | ||
169 | * | ||
170 | * \param lock lock pointer. | ||
171 | * \param context locking context. | ||
172 | * \return one if the lock is held, or zero otherwise. | ||
173 | * | ||
174 | * Attempt to mark the lock as held by the given context, via the \p cmpxchg instruction. | ||
175 | */ | ||
176 | static | ||
177 | int drm_lock_take(struct drm_lock_data *lock_data, | ||
178 | unsigned int context) | ||
179 | { | ||
180 | unsigned int old, new, prev; | ||
181 | volatile unsigned int *lock = &lock_data->hw_lock->lock; | ||
182 | |||
183 | spin_lock_bh(&lock_data->spinlock); | ||
184 | do { | ||
185 | old = *lock; | ||
186 | if (old & _DRM_LOCK_HELD) | ||
187 | new = old | _DRM_LOCK_CONT; | ||
188 | else { | ||
189 | new = context | _DRM_LOCK_HELD | | ||
190 | ((lock_data->user_waiters + lock_data->kernel_waiters > 1) ? | ||
191 | _DRM_LOCK_CONT : 0); | ||
192 | } | ||
193 | prev = cmpxchg(lock, old, new); | ||
194 | } while (prev != old); | ||
195 | spin_unlock_bh(&lock_data->spinlock); | ||
196 | |||
197 | if (_DRM_LOCKING_CONTEXT(old) == context) { | ||
198 | if (old & _DRM_LOCK_HELD) { | ||
199 | if (context != DRM_KERNEL_CONTEXT) { | ||
200 | DRM_ERROR("%d holds heavyweight lock\n", | ||
201 | context); | ||
202 | } | ||
203 | return 0; | ||
204 | } | ||
205 | } | ||
206 | |||
207 | if ((_DRM_LOCKING_CONTEXT(new)) == context && (new & _DRM_LOCK_HELD)) { | ||
208 | /* Have lock */ | ||
209 | return 1; | ||
210 | } | ||
211 | return 0; | ||
212 | } | ||
213 | |||
214 | /** | ||
215 | * This takes a lock forcibly and hands it to context. Should ONLY be used | ||
216 | * inside *_unlock to give lock to kernel before calling *_dma_schedule. | ||
217 | * | ||
218 | * \param dev DRM device. | ||
219 | * \param lock lock pointer. | ||
220 | * \param context locking context. | ||
221 | * \return always one. | ||
222 | * | ||
223 | * Resets the lock file pointer. | ||
224 | * Marks the lock as held by the given context, via the \p cmpxchg instruction. | ||
225 | */ | ||
226 | static int drm_lock_transfer(struct drm_lock_data *lock_data, | ||
227 | unsigned int context) | ||
228 | { | ||
229 | unsigned int old, new, prev; | ||
230 | volatile unsigned int *lock = &lock_data->hw_lock->lock; | ||
231 | |||
232 | lock_data->file_priv = NULL; | ||
233 | do { | ||
234 | old = *lock; | ||
235 | new = context | _DRM_LOCK_HELD; | ||
236 | prev = cmpxchg(lock, old, new); | ||
237 | } while (prev != old); | ||
238 | return 1; | ||
239 | } | ||
240 | |||
241 | /** | ||
242 | * Free lock. | ||
243 | * | ||
244 | * \param dev DRM device. | ||
245 | * \param lock lock. | ||
246 | * \param context context. | ||
247 | * | ||
248 | * Resets the lock file pointer. | ||
249 | * Marks the lock as not held, via the \p cmpxchg instruction. Wakes any task | ||
250 | * waiting on the lock queue. | ||
251 | */ | ||
252 | int drm_legacy_lock_free(struct drm_lock_data *lock_data, unsigned int context) | ||
253 | { | ||
254 | unsigned int old, new, prev; | ||
255 | volatile unsigned int *lock = &lock_data->hw_lock->lock; | ||
256 | |||
257 | spin_lock_bh(&lock_data->spinlock); | ||
258 | if (lock_data->kernel_waiters != 0) { | ||
259 | drm_lock_transfer(lock_data, 0); | ||
260 | lock_data->idle_has_lock = 1; | ||
261 | spin_unlock_bh(&lock_data->spinlock); | ||
262 | return 1; | ||
263 | } | ||
264 | spin_unlock_bh(&lock_data->spinlock); | ||
265 | |||
266 | do { | ||
267 | old = *lock; | ||
268 | new = _DRM_LOCKING_CONTEXT(old); | ||
269 | prev = cmpxchg(lock, old, new); | ||
270 | } while (prev != old); | ||
271 | |||
272 | if (_DRM_LOCK_IS_HELD(old) && _DRM_LOCKING_CONTEXT(old) != context) { | ||
273 | DRM_ERROR("%d freed heavyweight lock held by %d\n", | ||
274 | context, _DRM_LOCKING_CONTEXT(old)); | ||
275 | return 1; | ||
276 | } | ||
277 | wake_up_interruptible(&lock_data->lock_queue); | ||
278 | return 0; | ||
279 | } | ||
280 | |||
281 | /** | ||
282 | * This function returns immediately and takes the hw lock | 272 | * This function returns immediately and takes the hw lock |
283 | * with the kernel context if it is free, otherwise it gets the highest priority when and if | 273 | * with the kernel context if it is free, otherwise it gets the highest priority when and if |
284 | * it is eventually released. | 274 | * it is eventually released. |
@@ -330,11 +320,27 @@ void drm_legacy_idlelock_release(struct drm_lock_data *lock_data) | |||
330 | } | 320 | } |
331 | EXPORT_SYMBOL(drm_legacy_idlelock_release); | 321 | EXPORT_SYMBOL(drm_legacy_idlelock_release); |
332 | 322 | ||
333 | int drm_legacy_i_have_hw_lock(struct drm_device *dev, | 323 | static int drm_legacy_i_have_hw_lock(struct drm_device *dev, |
334 | struct drm_file *file_priv) | 324 | struct drm_file *file_priv) |
335 | { | 325 | { |
336 | struct drm_master *master = file_priv->master; | 326 | struct drm_master *master = file_priv->master; |
337 | return (file_priv->lock_count && master->lock.hw_lock && | 327 | return (file_priv->lock_count && master->lock.hw_lock && |
338 | _DRM_LOCK_IS_HELD(master->lock.hw_lock->lock) && | 328 | _DRM_LOCK_IS_HELD(master->lock.hw_lock->lock) && |
339 | master->lock.file_priv == file_priv); | 329 | master->lock.file_priv == file_priv); |
340 | } | 330 | } |
331 | |||
332 | void drm_legacy_lock_release(struct drm_device *dev, struct file *filp) | ||
333 | { | ||
334 | struct drm_file *file_priv = filp->private_data; | ||
335 | |||
336 | /* if the master has gone away we can't do anything with the lock */ | ||
337 | if (!file_priv->minor->master) | ||
338 | return; | ||
339 | |||
340 | if (drm_legacy_i_have_hw_lock(dev, file_priv)) { | ||
341 | DRM_DEBUG("File %p released, freeing lock for context %d\n", | ||
342 | filp, _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock)); | ||
343 | drm_legacy_lock_free(&file_priv->master->lock, | ||
344 | _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock)); | ||
345 | } | ||
346 | } | ||