]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /** |
b5e89ed5 | 2 | * \file drm_irq.c |
1da177e4 LT |
3 | * IRQ support |
4 | * | |
5 | * \author Rickard E. (Rik) Faith <[email protected]> | |
6 | * \author Gareth Hughes <[email protected]> | |
7 | */ | |
8 | ||
9 | /* | |
10 | * Created: Fri Mar 19 14:30:16 1999 by [email protected] | |
11 | * | |
12 | * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas. | |
13 | * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. | |
14 | * All Rights Reserved. | |
15 | * | |
16 | * Permission is hereby granted, free of charge, to any person obtaining a | |
17 | * copy of this software and associated documentation files (the "Software"), | |
18 | * to deal in the Software without restriction, including without limitation | |
19 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
20 | * and/or sell copies of the Software, and to permit persons to whom the | |
21 | * Software is furnished to do so, subject to the following conditions: | |
22 | * | |
23 | * The above copyright notice and this permission notice (including the next | |
24 | * paragraph) shall be included in all copies or substantial portions of the | |
25 | * Software. | |
26 | * | |
27 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
28 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
29 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
30 | * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR | |
31 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | |
32 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | |
33 | * OTHER DEALINGS IN THE SOFTWARE. | |
34 | */ | |
35 | ||
36 | #include "drmP.h" | |
ac2874b9 | 37 | #include "drm_trace.h" |
1da177e4 LT |
38 | |
39 | #include <linux/interrupt.h> /* For task queue support */ | |
5a0e3ad6 | 40 | #include <linux/slab.h> |
1da177e4 | 41 | |
28d52043 | 42 | #include <linux/vgaarb.h> |
27641c3f MK |
43 | |
44 | /* Access macro for slots in vblank timestamp ringbuffer. */ | |
45 | #define vblanktimestamp(dev, crtc, count) ( \ | |
46 | (dev)->_vblank_time[(crtc) * DRM_VBLANKTIME_RBSIZE + \ | |
47 | ((count) % DRM_VBLANKTIME_RBSIZE)]) | |
48 | ||
49 | /* Retry timestamp calculation up to 3 times to satisfy | |
50 | * drm_timestamp_precision before giving up. | |
51 | */ | |
52 | #define DRM_TIMESTAMP_MAXRETRIES 3 | |
53 | ||
54 | /* Threshold in nanoseconds for detection of redundant | |
55 | * vblank irq in drm_handle_vblank(). 1 msec should be ok. | |
56 | */ | |
57 | #define DRM_REDUNDANT_VBLIRQ_THRESH_NS 1000000 | |
58 | ||
1da177e4 LT |
59 | /** |
60 | * Get interrupt from bus id. | |
b5e89ed5 | 61 | * |
1da177e4 | 62 | * \param inode device inode. |
6c340eac | 63 | * \param file_priv DRM file private. |
1da177e4 LT |
64 | * \param cmd command. |
65 | * \param arg user argument, pointing to a drm_irq_busid structure. | |
66 | * \return zero on success or a negative number on failure. | |
b5e89ed5 | 67 | * |
1da177e4 LT |
68 | * Finds the PCI device with the specified bus id and gets its IRQ number. |
69 | * This IOCTL is deprecated, and will now return EINVAL for any busid not equal | |
70 | * to that of the device that this DRM instance attached to. | |
71 | */ | |
c153f45f EA |
72 | int drm_irq_by_busid(struct drm_device *dev, void *data, |
73 | struct drm_file *file_priv) | |
1da177e4 | 74 | { |
c153f45f | 75 | struct drm_irq_busid *p = data; |
1da177e4 | 76 | |
8410ea3b | 77 | if (!dev->driver->bus->irq_by_busid) |
dcdb1674 JC |
78 | return -EINVAL; |
79 | ||
1da177e4 LT |
80 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
81 | return -EINVAL; | |
82 | ||
8410ea3b | 83 | return dev->driver->bus->irq_by_busid(dev, p); |
1da177e4 LT |
84 | } |
85 | ||
27641c3f MK |
86 | /* |
87 | * Clear vblank timestamp buffer for a crtc. | |
88 | */ | |
89 | static void clear_vblank_timestamps(struct drm_device *dev, int crtc) | |
90 | { | |
91 | memset(&dev->_vblank_time[crtc * DRM_VBLANKTIME_RBSIZE], 0, | |
92 | DRM_VBLANKTIME_RBSIZE * sizeof(struct timeval)); | |
93 | } | |
94 | ||
95 | /* | |
96 | * Disable vblank irq's on crtc, make sure that last vblank count | |
97 | * of hardware and corresponding consistent software vblank counter | |
98 | * are preserved, even if there are any spurious vblank irq's after | |
99 | * disable. | |
100 | */ | |
101 | static void vblank_disable_and_save(struct drm_device *dev, int crtc) | |
102 | { | |
103 | unsigned long irqflags; | |
104 | u32 vblcount; | |
105 | s64 diff_ns; | |
106 | int vblrc; | |
107 | struct timeval tvblank; | |
108 | ||
109 | /* Prevent vblank irq processing while disabling vblank irqs, | |
110 | * so no updates of timestamps or count can happen after we've | |
111 | * disabled. Needed to prevent races in case of delayed irq's. | |
112 | * Disable preemption, so vblank_time_lock is held as short as | |
113 | * possible, even under a kernel with PREEMPT_RT patches. | |
114 | */ | |
115 | preempt_disable(); | |
116 | spin_lock_irqsave(&dev->vblank_time_lock, irqflags); | |
117 | ||
118 | dev->driver->disable_vblank(dev, crtc); | |
119 | dev->vblank_enabled[crtc] = 0; | |
120 | ||
121 | /* No further vblank irq's will be processed after | |
122 | * this point. Get current hardware vblank count and | |
123 | * vblank timestamp, repeat until they are consistent. | |
124 | * | |
125 | * FIXME: There is still a race condition here and in | |
126 | * drm_update_vblank_count() which can cause off-by-one | |
127 | * reinitialization of software vblank counter. If gpu | |
128 | * vblank counter doesn't increment exactly at the leading | |
129 | * edge of a vblank interval, then we can lose 1 count if | |
130 | * we happen to execute between start of vblank and the | |
131 | * delayed gpu counter increment. | |
132 | */ | |
133 | do { | |
134 | dev->last_vblank[crtc] = dev->driver->get_vblank_counter(dev, crtc); | |
135 | vblrc = drm_get_last_vbltimestamp(dev, crtc, &tvblank, 0); | |
136 | } while (dev->last_vblank[crtc] != dev->driver->get_vblank_counter(dev, crtc)); | |
137 | ||
138 | /* Compute time difference to stored timestamp of last vblank | |
139 | * as updated by last invocation of drm_handle_vblank() in vblank irq. | |
140 | */ | |
141 | vblcount = atomic_read(&dev->_vblank_count[crtc]); | |
142 | diff_ns = timeval_to_ns(&tvblank) - | |
143 | timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount)); | |
144 | ||
145 | /* If there is at least 1 msec difference between the last stored | |
146 | * timestamp and tvblank, then we are currently executing our | |
147 | * disable inside a new vblank interval, the tvblank timestamp | |
148 | * corresponds to this new vblank interval and the irq handler | |
149 | * for this vblank didn't run yet and won't run due to our disable. | |
150 | * Therefore we need to do the job of drm_handle_vblank() and | |
151 | * increment the vblank counter by one to account for this vblank. | |
152 | * | |
153 | * Skip this step if there isn't any high precision timestamp | |
154 | * available. In that case we can't account for this and just | |
155 | * hope for the best. | |
156 | */ | |
bc215128 | 157 | if ((vblrc > 0) && (abs64(diff_ns) > 1000000)) { |
27641c3f | 158 | atomic_inc(&dev->_vblank_count[crtc]); |
bc215128 MK |
159 | smp_mb__after_atomic_inc(); |
160 | } | |
27641c3f MK |
161 | |
162 | /* Invalidate all timestamps while vblank irq's are off. */ | |
163 | clear_vblank_timestamps(dev, crtc); | |
164 | ||
165 | spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags); | |
166 | preempt_enable(); | |
167 | } | |
168 | ||
0a3e67a4 JB |
169 | static void vblank_disable_fn(unsigned long arg) |
170 | { | |
171 | struct drm_device *dev = (struct drm_device *)arg; | |
172 | unsigned long irqflags; | |
173 | int i; | |
174 | ||
175 | if (!dev->vblank_disable_allowed) | |
176 | return; | |
177 | ||
178 | for (i = 0; i < dev->num_crtcs; i++) { | |
179 | spin_lock_irqsave(&dev->vbl_lock, irqflags); | |
180 | if (atomic_read(&dev->vblank_refcount[i]) == 0 && | |
181 | dev->vblank_enabled[i]) { | |
182 | DRM_DEBUG("disabling vblank on crtc %d\n", i); | |
27641c3f | 183 | vblank_disable_and_save(dev, i); |
0a3e67a4 JB |
184 | } |
185 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); | |
186 | } | |
187 | } | |
188 | ||
52440211 | 189 | void drm_vblank_cleanup(struct drm_device *dev) |
0a3e67a4 JB |
190 | { |
191 | /* Bail if the driver didn't call drm_vblank_init() */ | |
192 | if (dev->num_crtcs == 0) | |
193 | return; | |
194 | ||
195 | del_timer(&dev->vblank_disable_timer); | |
196 | ||
197 | vblank_disable_fn((unsigned long)dev); | |
198 | ||
9a298b2a EA |
199 | kfree(dev->vbl_queue); |
200 | kfree(dev->_vblank_count); | |
201 | kfree(dev->vblank_refcount); | |
202 | kfree(dev->vblank_enabled); | |
203 | kfree(dev->last_vblank); | |
204 | kfree(dev->last_vblank_wait); | |
205 | kfree(dev->vblank_inmodeset); | |
27641c3f | 206 | kfree(dev->_vblank_time); |
0a3e67a4 JB |
207 | |
208 | dev->num_crtcs = 0; | |
209 | } | |
e77cef9c | 210 | EXPORT_SYMBOL(drm_vblank_cleanup); |
0a3e67a4 JB |
211 | |
212 | int drm_vblank_init(struct drm_device *dev, int num_crtcs) | |
213 | { | |
214 | int i, ret = -ENOMEM; | |
215 | ||
216 | setup_timer(&dev->vblank_disable_timer, vblank_disable_fn, | |
217 | (unsigned long)dev); | |
218 | spin_lock_init(&dev->vbl_lock); | |
27641c3f MK |
219 | spin_lock_init(&dev->vblank_time_lock); |
220 | ||
0a3e67a4 JB |
221 | dev->num_crtcs = num_crtcs; |
222 | ||
9a298b2a EA |
223 | dev->vbl_queue = kmalloc(sizeof(wait_queue_head_t) * num_crtcs, |
224 | GFP_KERNEL); | |
0a3e67a4 JB |
225 | if (!dev->vbl_queue) |
226 | goto err; | |
227 | ||
9a298b2a | 228 | dev->_vblank_count = kmalloc(sizeof(atomic_t) * num_crtcs, GFP_KERNEL); |
0a3e67a4 JB |
229 | if (!dev->_vblank_count) |
230 | goto err; | |
231 | ||
9a298b2a EA |
232 | dev->vblank_refcount = kmalloc(sizeof(atomic_t) * num_crtcs, |
233 | GFP_KERNEL); | |
0a3e67a4 JB |
234 | if (!dev->vblank_refcount) |
235 | goto err; | |
236 | ||
9a298b2a | 237 | dev->vblank_enabled = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL); |
0a3e67a4 JB |
238 | if (!dev->vblank_enabled) |
239 | goto err; | |
240 | ||
9a298b2a | 241 | dev->last_vblank = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL); |
0a3e67a4 JB |
242 | if (!dev->last_vblank) |
243 | goto err; | |
244 | ||
9a298b2a | 245 | dev->last_vblank_wait = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL); |
fede5c91 EA |
246 | if (!dev->last_vblank_wait) |
247 | goto err; | |
248 | ||
9a298b2a | 249 | dev->vblank_inmodeset = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL); |
0a3e67a4 JB |
250 | if (!dev->vblank_inmodeset) |
251 | goto err; | |
252 | ||
27641c3f MK |
253 | dev->_vblank_time = kcalloc(num_crtcs * DRM_VBLANKTIME_RBSIZE, |
254 | sizeof(struct timeval), GFP_KERNEL); | |
255 | if (!dev->_vblank_time) | |
256 | goto err; | |
257 | ||
258 | DRM_INFO("Supports vblank timestamp caching Rev 1 (10.10.2010).\n"); | |
259 | ||
260 | /* Driver specific high-precision vblank timestamping supported? */ | |
261 | if (dev->driver->get_vblank_timestamp) | |
262 | DRM_INFO("Driver supports precise vblank timestamp query.\n"); | |
263 | else | |
264 | DRM_INFO("No driver support for vblank timestamp query.\n"); | |
265 | ||
0a3e67a4 JB |
266 | /* Zero per-crtc vblank stuff */ |
267 | for (i = 0; i < num_crtcs; i++) { | |
268 | init_waitqueue_head(&dev->vbl_queue[i]); | |
0a3e67a4 JB |
269 | atomic_set(&dev->_vblank_count[i], 0); |
270 | atomic_set(&dev->vblank_refcount[i], 0); | |
271 | } | |
272 | ||
273 | dev->vblank_disable_allowed = 0; | |
0a3e67a4 JB |
274 | return 0; |
275 | ||
276 | err: | |
277 | drm_vblank_cleanup(dev); | |
278 | return ret; | |
279 | } | |
280 | EXPORT_SYMBOL(drm_vblank_init); | |
281 | ||
28d52043 DA |
282 | static void drm_irq_vgaarb_nokms(void *cookie, bool state) |
283 | { | |
284 | struct drm_device *dev = cookie; | |
285 | ||
286 | if (dev->driver->vgaarb_irq) { | |
287 | dev->driver->vgaarb_irq(dev, state); | |
288 | return; | |
289 | } | |
290 | ||
291 | if (!dev->irq_enabled) | |
292 | return; | |
293 | ||
294 | if (state) | |
295 | dev->driver->irq_uninstall(dev); | |
296 | else { | |
297 | dev->driver->irq_preinstall(dev); | |
298 | dev->driver->irq_postinstall(dev); | |
299 | } | |
300 | } | |
301 | ||
1da177e4 LT |
302 | /** |
303 | * Install IRQ handler. | |
304 | * | |
305 | * \param dev DRM device. | |
1da177e4 | 306 | * |
0a3e67a4 | 307 | * Initializes the IRQ related data. Installs the handler, calling the driver |
1da177e4 LT |
308 | * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions |
309 | * before and after the installation. | |
310 | */ | |
0a3e67a4 | 311 | int drm_irq_install(struct drm_device *dev) |
1da177e4 | 312 | { |
0a3e67a4 | 313 | int ret = 0; |
b5e89ed5 | 314 | unsigned long sh_flags = 0; |
b8da7de5 | 315 | char *irqname; |
1da177e4 LT |
316 | |
317 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) | |
318 | return -EINVAL; | |
319 | ||
dcdb1674 | 320 | if (drm_dev_to_irq(dev) == 0) |
1da177e4 LT |
321 | return -EINVAL; |
322 | ||
30e2fb18 | 323 | mutex_lock(&dev->struct_mutex); |
1da177e4 LT |
324 | |
325 | /* Driver must have been initialized */ | |
b5e89ed5 | 326 | if (!dev->dev_private) { |
30e2fb18 | 327 | mutex_unlock(&dev->struct_mutex); |
1da177e4 LT |
328 | return -EINVAL; |
329 | } | |
330 | ||
b5e89ed5 | 331 | if (dev->irq_enabled) { |
30e2fb18 | 332 | mutex_unlock(&dev->struct_mutex); |
1da177e4 LT |
333 | return -EBUSY; |
334 | } | |
335 | dev->irq_enabled = 1; | |
30e2fb18 | 336 | mutex_unlock(&dev->struct_mutex); |
1da177e4 | 337 | |
dcdb1674 | 338 | DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev)); |
1da177e4 | 339 | |
b5e89ed5 | 340 | /* Before installing handler */ |
1da177e4 LT |
341 | dev->driver->irq_preinstall(dev); |
342 | ||
b5e89ed5 | 343 | /* Install handler */ |
1da177e4 | 344 | if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED)) |
935f6e3a | 345 | sh_flags = IRQF_SHARED; |
b5e89ed5 | 346 | |
b8da7de5 DA |
347 | if (dev->devname) |
348 | irqname = dev->devname; | |
349 | else | |
350 | irqname = dev->driver->name; | |
351 | ||
9bfbd5cb | 352 | ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler, |
b8da7de5 | 353 | sh_flags, irqname, dev); |
9bfbd5cb | 354 | |
b5e89ed5 | 355 | if (ret < 0) { |
30e2fb18 | 356 | mutex_lock(&dev->struct_mutex); |
1da177e4 | 357 | dev->irq_enabled = 0; |
30e2fb18 | 358 | mutex_unlock(&dev->struct_mutex); |
1da177e4 LT |
359 | return ret; |
360 | } | |
361 | ||
28d52043 DA |
362 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
363 | vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL); | |
364 | ||
b5e89ed5 | 365 | /* After installing handler */ |
0a3e67a4 JB |
366 | ret = dev->driver->irq_postinstall(dev); |
367 | if (ret < 0) { | |
368 | mutex_lock(&dev->struct_mutex); | |
369 | dev->irq_enabled = 0; | |
370 | mutex_unlock(&dev->struct_mutex); | |
e1c44acc JS |
371 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
372 | vga_client_register(dev->pdev, NULL, NULL, NULL); | |
373 | free_irq(drm_dev_to_irq(dev), dev); | |
0a3e67a4 | 374 | } |
1da177e4 | 375 | |
0a3e67a4 | 376 | return ret; |
1da177e4 | 377 | } |
0a3e67a4 | 378 | EXPORT_SYMBOL(drm_irq_install); |
1da177e4 LT |
379 | |
380 | /** | |
381 | * Uninstall the IRQ handler. | |
382 | * | |
383 | * \param dev DRM device. | |
384 | * | |
385 | * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq. | |
386 | */ | |
27641c3f | 387 | int drm_irq_uninstall(struct drm_device *dev) |
1da177e4 | 388 | { |
dc1336ff JB |
389 | unsigned long irqflags; |
390 | int irq_enabled, i; | |
1da177e4 LT |
391 | |
392 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) | |
393 | return -EINVAL; | |
394 | ||
30e2fb18 | 395 | mutex_lock(&dev->struct_mutex); |
1da177e4 LT |
396 | irq_enabled = dev->irq_enabled; |
397 | dev->irq_enabled = 0; | |
30e2fb18 | 398 | mutex_unlock(&dev->struct_mutex); |
1da177e4 | 399 | |
dc1336ff JB |
400 | /* |
401 | * Wake up any waiters so they don't hang. | |
402 | */ | |
403 | spin_lock_irqsave(&dev->vbl_lock, irqflags); | |
404 | for (i = 0; i < dev->num_crtcs; i++) { | |
405 | DRM_WAKEUP(&dev->vbl_queue[i]); | |
406 | dev->vblank_enabled[i] = 0; | |
14d200c5 | 407 | dev->last_vblank[i] = dev->driver->get_vblank_counter(dev, i); |
dc1336ff JB |
408 | } |
409 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); | |
410 | ||
b5e89ed5 | 411 | if (!irq_enabled) |
1da177e4 LT |
412 | return -EINVAL; |
413 | ||
dcdb1674 | 414 | DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev)); |
1da177e4 | 415 | |
28d52043 DA |
416 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
417 | vga_client_register(dev->pdev, NULL, NULL, NULL); | |
418 | ||
1da177e4 LT |
419 | dev->driver->irq_uninstall(dev); |
420 | ||
dcdb1674 | 421 | free_irq(drm_dev_to_irq(dev), dev); |
1da177e4 LT |
422 | |
423 | return 0; | |
424 | } | |
425 | EXPORT_SYMBOL(drm_irq_uninstall); | |
426 | ||
427 | /** | |
428 | * IRQ control ioctl. | |
429 | * | |
430 | * \param inode device inode. | |
6c340eac | 431 | * \param file_priv DRM file private. |
1da177e4 LT |
432 | * \param cmd command. |
433 | * \param arg user argument, pointing to a drm_control structure. | |
434 | * \return zero on success or a negative number on failure. | |
435 | * | |
436 | * Calls irq_install() or irq_uninstall() according to \p arg. | |
437 | */ | |
c153f45f EA |
438 | int drm_control(struct drm_device *dev, void *data, |
439 | struct drm_file *file_priv) | |
1da177e4 | 440 | { |
c153f45f | 441 | struct drm_control *ctl = data; |
b5e89ed5 | 442 | |
27641c3f MK |
443 | /* if we haven't irq we fallback for compatibility reasons - |
444 | * this used to be a separate function in drm_dma.h | |
445 | */ | |
1da177e4 | 446 | |
1da177e4 | 447 | |
c153f45f | 448 | switch (ctl->func) { |
1da177e4 LT |
449 | case DRM_INST_HANDLER: |
450 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) | |
451 | return 0; | |
f453ba04 DA |
452 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
453 | return 0; | |
1da177e4 | 454 | if (dev->if_version < DRM_IF_VERSION(1, 2) && |
dcdb1674 | 455 | ctl->irq != drm_dev_to_irq(dev)) |
1da177e4 | 456 | return -EINVAL; |
b5e89ed5 | 457 | return drm_irq_install(dev); |
1da177e4 LT |
458 | case DRM_UNINST_HANDLER: |
459 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) | |
460 | return 0; | |
f453ba04 DA |
461 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
462 | return 0; | |
b5e89ed5 | 463 | return drm_irq_uninstall(dev); |
1da177e4 LT |
464 | default: |
465 | return -EINVAL; | |
466 | } | |
467 | } | |
468 | ||
27641c3f MK |
469 | /** |
470 | * drm_calc_timestamping_constants - Calculate and | |
471 | * store various constants which are later needed by | |
472 | * vblank and swap-completion timestamping, e.g, by | |
473 | * drm_calc_vbltimestamp_from_scanoutpos(). | |
474 | * They are derived from crtc's true scanout timing, | |
475 | * so they take things like panel scaling or other | |
476 | * adjustments into account. | |
477 | * | |
478 | * @crtc drm_crtc whose timestamp constants should be updated. | |
479 | * | |
480 | */ | |
481 | void drm_calc_timestamping_constants(struct drm_crtc *crtc) | |
482 | { | |
483 | s64 linedur_ns = 0, pixeldur_ns = 0, framedur_ns = 0; | |
484 | u64 dotclock; | |
485 | ||
486 | /* Dot clock in Hz: */ | |
487 | dotclock = (u64) crtc->hwmode.clock * 1000; | |
488 | ||
9be6f8a9 MK |
489 | /* Fields of interlaced scanout modes are only halve a frame duration. |
490 | * Double the dotclock to get halve the frame-/line-/pixelduration. | |
491 | */ | |
492 | if (crtc->hwmode.flags & DRM_MODE_FLAG_INTERLACE) | |
493 | dotclock *= 2; | |
494 | ||
27641c3f MK |
495 | /* Valid dotclock? */ |
496 | if (dotclock > 0) { | |
497 | /* Convert scanline length in pixels and video dot clock to | |
498 | * line duration, frame duration and pixel duration in | |
499 | * nanoseconds: | |
500 | */ | |
501 | pixeldur_ns = (s64) div64_u64(1000000000, dotclock); | |
502 | linedur_ns = (s64) div64_u64(((u64) crtc->hwmode.crtc_htotal * | |
503 | 1000000000), dotclock); | |
504 | framedur_ns = (s64) crtc->hwmode.crtc_vtotal * linedur_ns; | |
505 | } else | |
506 | DRM_ERROR("crtc %d: Can't calculate constants, dotclock = 0!\n", | |
507 | crtc->base.id); | |
508 | ||
509 | crtc->pixeldur_ns = pixeldur_ns; | |
510 | crtc->linedur_ns = linedur_ns; | |
511 | crtc->framedur_ns = framedur_ns; | |
512 | ||
513 | DRM_DEBUG("crtc %d: hwmode: htotal %d, vtotal %d, vdisplay %d\n", | |
514 | crtc->base.id, crtc->hwmode.crtc_htotal, | |
515 | crtc->hwmode.crtc_vtotal, crtc->hwmode.crtc_vdisplay); | |
516 | DRM_DEBUG("crtc %d: clock %d kHz framedur %d linedur %d, pixeldur %d\n", | |
517 | crtc->base.id, (int) dotclock/1000, (int) framedur_ns, | |
518 | (int) linedur_ns, (int) pixeldur_ns); | |
519 | } | |
520 | EXPORT_SYMBOL(drm_calc_timestamping_constants); | |
521 | ||
522 | /** | |
523 | * drm_calc_vbltimestamp_from_scanoutpos - helper routine for kms | |
524 | * drivers. Implements calculation of exact vblank timestamps from | |
525 | * given drm_display_mode timings and current video scanout position | |
526 | * of a crtc. This can be called from within get_vblank_timestamp() | |
527 | * implementation of a kms driver to implement the actual timestamping. | |
528 | * | |
529 | * Should return timestamps conforming to the OML_sync_control OpenML | |
530 | * extension specification. The timestamp corresponds to the end of | |
531 | * the vblank interval, aka start of scanout of topmost-leftmost display | |
532 | * pixel in the following video frame. | |
533 | * | |
534 | * Requires support for optional dev->driver->get_scanout_position() | |
535 | * in kms driver, plus a bit of setup code to provide a drm_display_mode | |
536 | * that corresponds to the true scanout timing. | |
537 | * | |
538 | * The current implementation only handles standard video modes. It | |
539 | * returns as no operation if a doublescan or interlaced video mode is | |
540 | * active. Higher level code is expected to handle this. | |
541 | * | |
542 | * @dev: DRM device. | |
543 | * @crtc: Which crtc's vblank timestamp to retrieve. | |
544 | * @max_error: Desired maximum allowable error in timestamps (nanosecs). | |
545 | * On return contains true maximum error of timestamp. | |
546 | * @vblank_time: Pointer to struct timeval which should receive the timestamp. | |
547 | * @flags: Flags to pass to driver: | |
548 | * 0 = Default. | |
549 | * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler. | |
550 | * @refcrtc: drm_crtc* of crtc which defines scanout timing. | |
551 | * | |
552 | * Returns negative value on error, failure or if not supported in current | |
553 | * video mode: | |
554 | * | |
555 | * -EINVAL - Invalid crtc. | |
556 | * -EAGAIN - Temporary unavailable, e.g., called before initial modeset. | |
557 | * -ENOTSUPP - Function not supported in current display mode. | |
558 | * -EIO - Failed, e.g., due to failed scanout position query. | |
559 | * | |
560 | * Returns or'ed positive status flags on success: | |
561 | * | |
562 | * DRM_VBLANKTIME_SCANOUTPOS_METHOD - Signal this method used for timestamping. | |
563 | * DRM_VBLANKTIME_INVBL - Timestamp taken while scanout was in vblank interval. | |
564 | * | |
565 | */ | |
566 | int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, int crtc, | |
567 | int *max_error, | |
568 | struct timeval *vblank_time, | |
569 | unsigned flags, | |
570 | struct drm_crtc *refcrtc) | |
571 | { | |
572 | struct timeval stime, raw_time; | |
573 | struct drm_display_mode *mode; | |
574 | int vbl_status, vtotal, vdisplay; | |
575 | int vpos, hpos, i; | |
576 | s64 framedur_ns, linedur_ns, pixeldur_ns, delta_ns, duration_ns; | |
577 | bool invbl; | |
578 | ||
579 | if (crtc < 0 || crtc >= dev->num_crtcs) { | |
580 | DRM_ERROR("Invalid crtc %d\n", crtc); | |
581 | return -EINVAL; | |
582 | } | |
583 | ||
584 | /* Scanout position query not supported? Should not happen. */ | |
585 | if (!dev->driver->get_scanout_position) { | |
586 | DRM_ERROR("Called from driver w/o get_scanout_position()!?\n"); | |
587 | return -EIO; | |
588 | } | |
589 | ||
590 | mode = &refcrtc->hwmode; | |
591 | vtotal = mode->crtc_vtotal; | |
592 | vdisplay = mode->crtc_vdisplay; | |
593 | ||
594 | /* Durations of frames, lines, pixels in nanoseconds. */ | |
595 | framedur_ns = refcrtc->framedur_ns; | |
596 | linedur_ns = refcrtc->linedur_ns; | |
597 | pixeldur_ns = refcrtc->pixeldur_ns; | |
598 | ||
599 | /* If mode timing undefined, just return as no-op: | |
600 | * Happens during initial modesetting of a crtc. | |
601 | */ | |
602 | if (vtotal <= 0 || vdisplay <= 0 || framedur_ns == 0) { | |
603 | DRM_DEBUG("crtc %d: Noop due to uninitialized mode.\n", crtc); | |
604 | return -EAGAIN; | |
605 | } | |
606 | ||
27641c3f MK |
607 | /* Get current scanout position with system timestamp. |
608 | * Repeat query up to DRM_TIMESTAMP_MAXRETRIES times | |
609 | * if single query takes longer than max_error nanoseconds. | |
610 | * | |
611 | * This guarantees a tight bound on maximum error if | |
612 | * code gets preempted or delayed for some reason. | |
613 | */ | |
614 | for (i = 0; i < DRM_TIMESTAMP_MAXRETRIES; i++) { | |
615 | /* Disable preemption to make it very likely to | |
616 | * succeed in the first iteration even on PREEMPT_RT kernel. | |
617 | */ | |
618 | preempt_disable(); | |
619 | ||
620 | /* Get system timestamp before query. */ | |
621 | do_gettimeofday(&stime); | |
622 | ||
623 | /* Get vertical and horizontal scanout pos. vpos, hpos. */ | |
624 | vbl_status = dev->driver->get_scanout_position(dev, crtc, &vpos, &hpos); | |
625 | ||
626 | /* Get system timestamp after query. */ | |
627 | do_gettimeofday(&raw_time); | |
628 | ||
629 | preempt_enable(); | |
630 | ||
631 | /* Return as no-op if scanout query unsupported or failed. */ | |
632 | if (!(vbl_status & DRM_SCANOUTPOS_VALID)) { | |
633 | DRM_DEBUG("crtc %d : scanoutpos query failed [%d].\n", | |
634 | crtc, vbl_status); | |
635 | return -EIO; | |
636 | } | |
637 | ||
638 | duration_ns = timeval_to_ns(&raw_time) - timeval_to_ns(&stime); | |
639 | ||
640 | /* Accept result with < max_error nsecs timing uncertainty. */ | |
641 | if (duration_ns <= (s64) *max_error) | |
642 | break; | |
643 | } | |
644 | ||
645 | /* Noisy system timing? */ | |
646 | if (i == DRM_TIMESTAMP_MAXRETRIES) { | |
647 | DRM_DEBUG("crtc %d: Noisy timestamp %d us > %d us [%d reps].\n", | |
648 | crtc, (int) duration_ns/1000, *max_error/1000, i); | |
649 | } | |
650 | ||
651 | /* Return upper bound of timestamp precision error. */ | |
652 | *max_error = (int) duration_ns; | |
653 | ||
654 | /* Check if in vblank area: | |
655 | * vpos is >=0 in video scanout area, but negative | |
656 | * within vblank area, counting down the number of lines until | |
657 | * start of scanout. | |
658 | */ | |
659 | invbl = vbl_status & DRM_SCANOUTPOS_INVBL; | |
660 | ||
661 | /* Convert scanout position into elapsed time at raw_time query | |
662 | * since start of scanout at first display scanline. delta_ns | |
663 | * can be negative if start of scanout hasn't happened yet. | |
664 | */ | |
665 | delta_ns = (s64) vpos * linedur_ns + (s64) hpos * pixeldur_ns; | |
666 | ||
667 | /* Is vpos outside nominal vblank area, but less than | |
668 | * 1/100 of a frame height away from start of vblank? | |
669 | * If so, assume this isn't a massively delayed vblank | |
670 | * interrupt, but a vblank interrupt that fired a few | |
671 | * microseconds before true start of vblank. Compensate | |
672 | * by adding a full frame duration to the final timestamp. | |
673 | * Happens, e.g., on ATI R500, R600. | |
674 | * | |
675 | * We only do this if DRM_CALLED_FROM_VBLIRQ. | |
676 | */ | |
677 | if ((flags & DRM_CALLED_FROM_VBLIRQ) && !invbl && | |
678 | ((vdisplay - vpos) < vtotal / 100)) { | |
679 | delta_ns = delta_ns - framedur_ns; | |
680 | ||
681 | /* Signal this correction as "applied". */ | |
682 | vbl_status |= 0x8; | |
683 | } | |
684 | ||
685 | /* Subtract time delta from raw timestamp to get final | |
686 | * vblank_time timestamp for end of vblank. | |
687 | */ | |
688 | *vblank_time = ns_to_timeval(timeval_to_ns(&raw_time) - delta_ns); | |
689 | ||
bbb0aef5 JP |
690 | DRM_DEBUG("crtc %d : v %d p(%d,%d)@ %ld.%ld -> %ld.%ld [e %d us, %d rep]\n", |
691 | crtc, (int)vbl_status, hpos, vpos, | |
692 | (long)raw_time.tv_sec, (long)raw_time.tv_usec, | |
693 | (long)vblank_time->tv_sec, (long)vblank_time->tv_usec, | |
694 | (int)duration_ns/1000, i); | |
27641c3f MK |
695 | |
696 | vbl_status = DRM_VBLANKTIME_SCANOUTPOS_METHOD; | |
697 | if (invbl) | |
698 | vbl_status |= DRM_VBLANKTIME_INVBL; | |
699 | ||
700 | return vbl_status; | |
701 | } | |
702 | EXPORT_SYMBOL(drm_calc_vbltimestamp_from_scanoutpos); | |
703 | ||
704 | /** | |
705 | * drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent | |
706 | * vblank interval. | |
707 | * | |
708 | * @dev: DRM device | |
709 | * @crtc: which crtc's vblank timestamp to retrieve | |
710 | * @tvblank: Pointer to target struct timeval which should receive the timestamp | |
711 | * @flags: Flags to pass to driver: | |
712 | * 0 = Default. | |
713 | * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler. | |
714 | * | |
715 | * Fetches the system timestamp corresponding to the time of the most recent | |
716 | * vblank interval on specified crtc. May call into kms-driver to | |
717 | * compute the timestamp with a high-precision GPU specific method. | |
718 | * | |
719 | * Returns zero if timestamp originates from uncorrected do_gettimeofday() | |
720 | * call, i.e., it isn't very precisely locked to the true vblank. | |
721 | * | |
722 | * Returns non-zero if timestamp is considered to be very precise. | |
723 | */ | |
724 | u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc, | |
725 | struct timeval *tvblank, unsigned flags) | |
726 | { | |
727 | int ret = 0; | |
728 | ||
729 | /* Define requested maximum error on timestamps (nanoseconds). */ | |
730 | int max_error = (int) drm_timestamp_precision * 1000; | |
731 | ||
732 | /* Query driver if possible and precision timestamping enabled. */ | |
733 | if (dev->driver->get_vblank_timestamp && (max_error > 0)) { | |
734 | ret = dev->driver->get_vblank_timestamp(dev, crtc, &max_error, | |
735 | tvblank, flags); | |
736 | if (ret > 0) | |
737 | return (u32) ret; | |
738 | } | |
739 | ||
740 | /* GPU high precision timestamp query unsupported or failed. | |
741 | * Return gettimeofday timestamp as best estimate. | |
742 | */ | |
743 | do_gettimeofday(tvblank); | |
744 | ||
745 | return 0; | |
746 | } | |
747 | EXPORT_SYMBOL(drm_get_last_vbltimestamp); | |
748 | ||
0a3e67a4 JB |
749 | /** |
750 | * drm_vblank_count - retrieve "cooked" vblank counter value | |
751 | * @dev: DRM device | |
752 | * @crtc: which counter to retrieve | |
753 | * | |
754 | * Fetches the "cooked" vblank count value that represents the number of | |
755 | * vblank events since the system was booted, including lost events due to | |
756 | * modesetting activity. | |
757 | */ | |
758 | u32 drm_vblank_count(struct drm_device *dev, int crtc) | |
759 | { | |
760 | return atomic_read(&dev->_vblank_count[crtc]); | |
761 | } | |
762 | EXPORT_SYMBOL(drm_vblank_count); | |
763 | ||
27641c3f MK |
764 | /** |
765 | * drm_vblank_count_and_time - retrieve "cooked" vblank counter value | |
766 | * and the system timestamp corresponding to that vblank counter value. | |
767 | * | |
768 | * @dev: DRM device | |
769 | * @crtc: which counter to retrieve | |
770 | * @vblanktime: Pointer to struct timeval to receive the vblank timestamp. | |
771 | * | |
772 | * Fetches the "cooked" vblank count value that represents the number of | |
773 | * vblank events since the system was booted, including lost events due to | |
774 | * modesetting activity. Returns corresponding system timestamp of the time | |
775 | * of the vblank interval that corresponds to the current value vblank counter | |
776 | * value. | |
777 | */ | |
778 | u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc, | |
779 | struct timeval *vblanktime) | |
780 | { | |
781 | u32 cur_vblank; | |
782 | ||
783 | /* Read timestamp from slot of _vblank_time ringbuffer | |
784 | * that corresponds to current vblank count. Retry if | |
785 | * count has incremented during readout. This works like | |
786 | * a seqlock. | |
787 | */ | |
788 | do { | |
789 | cur_vblank = atomic_read(&dev->_vblank_count[crtc]); | |
790 | *vblanktime = vblanktimestamp(dev, crtc, cur_vblank); | |
791 | smp_rmb(); | |
792 | } while (cur_vblank != atomic_read(&dev->_vblank_count[crtc])); | |
793 | ||
794 | return cur_vblank; | |
795 | } | |
796 | EXPORT_SYMBOL(drm_vblank_count_and_time); | |
797 | ||
0a3e67a4 JB |
798 | /** |
799 | * drm_update_vblank_count - update the master vblank counter | |
800 | * @dev: DRM device | |
801 | * @crtc: counter to update | |
802 | * | |
803 | * Call back into the driver to update the appropriate vblank counter | |
804 | * (specified by @crtc). Deal with wraparound, if it occurred, and | |
805 | * update the last read value so we can deal with wraparound on the next | |
806 | * call if necessary. | |
807 | * | |
808 | * Only necessary when going from off->on, to account for frames we | |
809 | * didn't get an interrupt for. | |
810 | * | |
811 | * Note: caller must hold dev->vbl_lock since this reads & writes | |
812 | * device vblank fields. | |
813 | */ | |
814 | static void drm_update_vblank_count(struct drm_device *dev, int crtc) | |
815 | { | |
27641c3f MK |
816 | u32 cur_vblank, diff, tslot, rc; |
817 | struct timeval t_vblank; | |
0a3e67a4 JB |
818 | |
819 | /* | |
820 | * Interrupts were disabled prior to this call, so deal with counter | |
821 | * wrap if needed. | |
822 | * NOTE! It's possible we lost a full dev->max_vblank_count events | |
823 | * here if the register is small or we had vblank interrupts off for | |
824 | * a long time. | |
27641c3f MK |
825 | * |
826 | * We repeat the hardware vblank counter & timestamp query until | |
827 | * we get consistent results. This to prevent races between gpu | |
828 | * updating its hardware counter while we are retrieving the | |
829 | * corresponding vblank timestamp. | |
0a3e67a4 | 830 | */ |
27641c3f MK |
831 | do { |
832 | cur_vblank = dev->driver->get_vblank_counter(dev, crtc); | |
833 | rc = drm_get_last_vbltimestamp(dev, crtc, &t_vblank, 0); | |
834 | } while (cur_vblank != dev->driver->get_vblank_counter(dev, crtc)); | |
835 | ||
836 | /* Deal with counter wrap */ | |
0a3e67a4 JB |
837 | diff = cur_vblank - dev->last_vblank[crtc]; |
838 | if (cur_vblank < dev->last_vblank[crtc]) { | |
839 | diff += dev->max_vblank_count; | |
840 | ||
841 | DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n", | |
842 | crtc, dev->last_vblank[crtc], cur_vblank, diff); | |
843 | } | |
844 | ||
845 | DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n", | |
846 | crtc, diff); | |
847 | ||
27641c3f MK |
848 | /* Reinitialize corresponding vblank timestamp if high-precision query |
849 | * available. Skip this step if query unsupported or failed. Will | |
850 | * reinitialize delayed at next vblank interrupt in that case. | |
851 | */ | |
852 | if (rc) { | |
853 | tslot = atomic_read(&dev->_vblank_count[crtc]) + diff; | |
854 | vblanktimestamp(dev, crtc, tslot) = t_vblank; | |
27641c3f MK |
855 | } |
856 | ||
bc215128 | 857 | smp_mb__before_atomic_inc(); |
0a3e67a4 | 858 | atomic_add(diff, &dev->_vblank_count[crtc]); |
bc215128 | 859 | smp_mb__after_atomic_inc(); |
0a3e67a4 JB |
860 | } |
861 | ||
862 | /** | |
863 | * drm_vblank_get - get a reference count on vblank events | |
864 | * @dev: DRM device | |
865 | * @crtc: which CRTC to own | |
866 | * | |
867 | * Acquire a reference count on vblank events to avoid having them disabled | |
868 | * while in use. | |
869 | * | |
870 | * RETURNS | |
871 | * Zero on success, nonzero on failure. | |
872 | */ | |
873 | int drm_vblank_get(struct drm_device *dev, int crtc) | |
874 | { | |
27641c3f | 875 | unsigned long irqflags, irqflags2; |
0a3e67a4 JB |
876 | int ret = 0; |
877 | ||
878 | spin_lock_irqsave(&dev->vbl_lock, irqflags); | |
879 | /* Going from 0->1 means we have to enable interrupts again */ | |
778c9026 | 880 | if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1) { |
27641c3f MK |
881 | /* Disable preemption while holding vblank_time_lock. Do |
882 | * it explicitely to guard against PREEMPT_RT kernel. | |
883 | */ | |
884 | preempt_disable(); | |
885 | spin_lock_irqsave(&dev->vblank_time_lock, irqflags2); | |
778c9026 | 886 | if (!dev->vblank_enabled[crtc]) { |
27641c3f MK |
887 | /* Enable vblank irqs under vblank_time_lock protection. |
888 | * All vblank count & timestamp updates are held off | |
889 | * until we are done reinitializing master counter and | |
890 | * timestamps. Filtercode in drm_handle_vblank() will | |
891 | * prevent double-accounting of same vblank interval. | |
892 | */ | |
778c9026 | 893 | ret = dev->driver->enable_vblank(dev, crtc); |
27641c3f MK |
894 | DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n", |
895 | crtc, ret); | |
778c9026 LP |
896 | if (ret) |
897 | atomic_dec(&dev->vblank_refcount[crtc]); | |
898 | else { | |
899 | dev->vblank_enabled[crtc] = 1; | |
900 | drm_update_vblank_count(dev, crtc); | |
901 | } | |
902 | } | |
27641c3f MK |
903 | spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags2); |
904 | preempt_enable(); | |
778c9026 LP |
905 | } else { |
906 | if (!dev->vblank_enabled[crtc]) { | |
0a3e67a4 | 907 | atomic_dec(&dev->vblank_refcount[crtc]); |
778c9026 | 908 | ret = -EINVAL; |
0a3e67a4 JB |
909 | } |
910 | } | |
911 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); | |
912 | ||
913 | return ret; | |
914 | } | |
915 | EXPORT_SYMBOL(drm_vblank_get); | |
916 | ||
917 | /** | |
918 | * drm_vblank_put - give up ownership of vblank events | |
919 | * @dev: DRM device | |
920 | * @crtc: which counter to give up | |
921 | * | |
922 | * Release ownership of a given vblank counter, turning off interrupts | |
27641c3f | 923 | * if possible. Disable interrupts after drm_vblank_offdelay milliseconds. |
0a3e67a4 JB |
924 | */ |
925 | void drm_vblank_put(struct drm_device *dev, int crtc) | |
926 | { | |
27641c3f | 927 | BUG_ON(atomic_read(&dev->vblank_refcount[crtc]) == 0); |
b3f5e732 | 928 | |
0a3e67a4 | 929 | /* Last user schedules interrupt disable */ |
27641c3f MK |
930 | if (atomic_dec_and_test(&dev->vblank_refcount[crtc]) && |
931 | (drm_vblank_offdelay > 0)) | |
932 | mod_timer(&dev->vblank_disable_timer, | |
933 | jiffies + ((drm_vblank_offdelay * DRM_HZ)/1000)); | |
0a3e67a4 JB |
934 | } |
935 | EXPORT_SYMBOL(drm_vblank_put); | |
936 | ||
778c9026 LP |
937 | void drm_vblank_off(struct drm_device *dev, int crtc) |
938 | { | |
498548ec CJHR |
939 | struct drm_pending_vblank_event *e, *t; |
940 | struct timeval now; | |
778c9026 | 941 | unsigned long irqflags; |
498548ec | 942 | unsigned int seq; |
778c9026 LP |
943 | |
944 | spin_lock_irqsave(&dev->vbl_lock, irqflags); | |
27641c3f | 945 | vblank_disable_and_save(dev, crtc); |
778c9026 | 946 | DRM_WAKEUP(&dev->vbl_queue[crtc]); |
498548ec CJHR |
947 | |
948 | /* Send any queued vblank events, lest the natives grow disquiet */ | |
949 | seq = drm_vblank_count_and_time(dev, crtc, &now); | |
950 | list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) { | |
951 | if (e->pipe != crtc) | |
952 | continue; | |
953 | DRM_DEBUG("Sending premature vblank event on disable: \ | |
954 | wanted %d, current %d\n", | |
955 | e->event.sequence, seq); | |
956 | ||
957 | e->event.sequence = seq; | |
958 | e->event.tv_sec = now.tv_sec; | |
959 | e->event.tv_usec = now.tv_usec; | |
960 | drm_vblank_put(dev, e->pipe); | |
961 | list_move_tail(&e->base.link, &e->base.file_priv->event_list); | |
962 | wake_up_interruptible(&e->base.file_priv->event_wait); | |
963 | trace_drm_vblank_event_delivered(e->base.pid, e->pipe, | |
964 | e->event.sequence); | |
965 | } | |
966 | ||
778c9026 LP |
967 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
968 | } | |
969 | EXPORT_SYMBOL(drm_vblank_off); | |
970 | ||
f453ba04 DA |
971 | /** |
972 | * drm_vblank_pre_modeset - account for vblanks across mode sets | |
973 | * @dev: DRM device | |
974 | * @crtc: CRTC in question | |
975 | * @post: post or pre mode set? | |
976 | * | |
977 | * Account for vblank events across mode setting events, which will likely | |
978 | * reset the hardware frame counter. | |
979 | */ | |
980 | void drm_vblank_pre_modeset(struct drm_device *dev, int crtc) | |
981 | { | |
e77cef9c JG |
982 | /* vblank is not initialized (IRQ not installed ?) */ |
983 | if (!dev->num_crtcs) | |
984 | return; | |
f453ba04 DA |
985 | /* |
986 | * To avoid all the problems that might happen if interrupts | |
987 | * were enabled/disabled around or between these calls, we just | |
988 | * have the kernel take a reference on the CRTC (just once though | |
989 | * to avoid corrupting the count if multiple, mismatch calls occur), | |
990 | * so that interrupts remain enabled in the interim. | |
991 | */ | |
992 | if (!dev->vblank_inmodeset[crtc]) { | |
b3f5e732 CW |
993 | dev->vblank_inmodeset[crtc] = 0x1; |
994 | if (drm_vblank_get(dev, crtc) == 0) | |
995 | dev->vblank_inmodeset[crtc] |= 0x2; | |
f453ba04 DA |
996 | } |
997 | } | |
998 | EXPORT_SYMBOL(drm_vblank_pre_modeset); | |
999 | ||
1000 | void drm_vblank_post_modeset(struct drm_device *dev, int crtc) | |
1001 | { | |
1002 | unsigned long irqflags; | |
1003 | ||
1004 | if (dev->vblank_inmodeset[crtc]) { | |
1005 | spin_lock_irqsave(&dev->vbl_lock, irqflags); | |
1006 | dev->vblank_disable_allowed = 1; | |
f453ba04 | 1007 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
b3f5e732 CW |
1008 | |
1009 | if (dev->vblank_inmodeset[crtc] & 0x2) | |
1010 | drm_vblank_put(dev, crtc); | |
1011 | ||
1012 | dev->vblank_inmodeset[crtc] = 0; | |
f453ba04 DA |
1013 | } |
1014 | } | |
1015 | EXPORT_SYMBOL(drm_vblank_post_modeset); | |
1016 | ||
0a3e67a4 JB |
1017 | /** |
1018 | * drm_modeset_ctl - handle vblank event counter changes across mode switch | |
1019 | * @DRM_IOCTL_ARGS: standard ioctl arguments | |
1020 | * | |
1021 | * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET | |
1022 | * ioctls around modesetting so that any lost vblank events are accounted for. | |
1023 | * | |
1024 | * Generally the counter will reset across mode sets. If interrupts are | |
1025 | * enabled around this call, we don't have to do anything since the counter | |
1026 | * will have already been incremented. | |
1027 | */ | |
1028 | int drm_modeset_ctl(struct drm_device *dev, void *data, | |
1029 | struct drm_file *file_priv) | |
1030 | { | |
1031 | struct drm_modeset_ctl *modeset = data; | |
19227561 DA |
1032 | int ret = 0; |
1033 | unsigned int crtc; | |
0a3e67a4 JB |
1034 | |
1035 | /* If drm_vblank_init() hasn't been called yet, just no-op */ | |
1036 | if (!dev->num_crtcs) | |
1037 | goto out; | |
1038 | ||
1039 | crtc = modeset->crtc; | |
1040 | if (crtc >= dev->num_crtcs) { | |
1041 | ret = -EINVAL; | |
1042 | goto out; | |
1043 | } | |
1044 | ||
0a3e67a4 JB |
1045 | switch (modeset->cmd) { |
1046 | case _DRM_PRE_MODESET: | |
f453ba04 | 1047 | drm_vblank_pre_modeset(dev, crtc); |
0a3e67a4 JB |
1048 | break; |
1049 | case _DRM_POST_MODESET: | |
f453ba04 | 1050 | drm_vblank_post_modeset(dev, crtc); |
0a3e67a4 JB |
1051 | break; |
1052 | default: | |
1053 | ret = -EINVAL; | |
1054 | break; | |
1055 | } | |
1056 | ||
1057 | out: | |
1058 | return ret; | |
1059 | } | |
1060 | ||
c9a9c5e0 KH |
1061 | static int drm_queue_vblank_event(struct drm_device *dev, int pipe, |
1062 | union drm_wait_vblank *vblwait, | |
1063 | struct drm_file *file_priv) | |
1064 | { | |
1065 | struct drm_pending_vblank_event *e; | |
1066 | struct timeval now; | |
1067 | unsigned long flags; | |
1068 | unsigned int seq; | |
ea5d552c | 1069 | int ret; |
c9a9c5e0 KH |
1070 | |
1071 | e = kzalloc(sizeof *e, GFP_KERNEL); | |
ea5d552c CW |
1072 | if (e == NULL) { |
1073 | ret = -ENOMEM; | |
1074 | goto err_put; | |
1075 | } | |
c9a9c5e0 KH |
1076 | |
1077 | e->pipe = pipe; | |
b9c2c9ae | 1078 | e->base.pid = current->pid; |
c9a9c5e0 KH |
1079 | e->event.base.type = DRM_EVENT_VBLANK; |
1080 | e->event.base.length = sizeof e->event; | |
1081 | e->event.user_data = vblwait->request.signal; | |
1082 | e->base.event = &e->event.base; | |
1083 | e->base.file_priv = file_priv; | |
1084 | e->base.destroy = (void (*) (struct drm_pending_event *)) kfree; | |
1085 | ||
c9a9c5e0 KH |
1086 | spin_lock_irqsave(&dev->event_lock, flags); |
1087 | ||
1088 | if (file_priv->event_space < sizeof e->event) { | |
ea5d552c CW |
1089 | ret = -EBUSY; |
1090 | goto err_unlock; | |
c9a9c5e0 KH |
1091 | } |
1092 | ||
1093 | file_priv->event_space -= sizeof e->event; | |
27641c3f MK |
1094 | seq = drm_vblank_count_and_time(dev, pipe, &now); |
1095 | ||
c9a9c5e0 KH |
1096 | if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) && |
1097 | (seq - vblwait->request.sequence) <= (1 << 23)) { | |
1098 | vblwait->request.sequence = seq + 1; | |
4a921645 | 1099 | vblwait->reply.sequence = vblwait->request.sequence; |
c9a9c5e0 KH |
1100 | } |
1101 | ||
1102 | DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n", | |
1103 | vblwait->request.sequence, seq, pipe); | |
1104 | ||
b9c2c9ae JB |
1105 | trace_drm_vblank_event_queued(current->pid, pipe, |
1106 | vblwait->request.sequence); | |
1107 | ||
c9a9c5e0 KH |
1108 | e->event.sequence = vblwait->request.sequence; |
1109 | if ((seq - vblwait->request.sequence) <= (1 << 23)) { | |
000fa7cf | 1110 | e->event.sequence = seq; |
c9a9c5e0 KH |
1111 | e->event.tv_sec = now.tv_sec; |
1112 | e->event.tv_usec = now.tv_usec; | |
6f331623 | 1113 | drm_vblank_put(dev, pipe); |
c9a9c5e0 KH |
1114 | list_add_tail(&e->base.link, &e->base.file_priv->event_list); |
1115 | wake_up_interruptible(&e->base.file_priv->event_wait); | |
000fa7cf | 1116 | vblwait->reply.sequence = seq; |
b9c2c9ae JB |
1117 | trace_drm_vblank_event_delivered(current->pid, pipe, |
1118 | vblwait->request.sequence); | |
c9a9c5e0 KH |
1119 | } else { |
1120 | list_add_tail(&e->base.link, &dev->vblank_event_list); | |
000fa7cf | 1121 | vblwait->reply.sequence = vblwait->request.sequence; |
c9a9c5e0 KH |
1122 | } |
1123 | ||
1124 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
1125 | ||
1126 | return 0; | |
ea5d552c CW |
1127 | |
1128 | err_unlock: | |
1129 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
1130 | kfree(e); | |
1131 | err_put: | |
6f331623 | 1132 | drm_vblank_put(dev, pipe); |
ea5d552c | 1133 | return ret; |
c9a9c5e0 KH |
1134 | } |
1135 | ||
1da177e4 LT |
1136 | /** |
1137 | * Wait for VBLANK. | |
1138 | * | |
1139 | * \param inode device inode. | |
6c340eac | 1140 | * \param file_priv DRM file private. |
1da177e4 LT |
1141 | * \param cmd command. |
1142 | * \param data user argument, pointing to a drm_wait_vblank structure. | |
1143 | * \return zero on success or a negative number on failure. | |
1144 | * | |
30b23634 EA |
1145 | * This function enables the vblank interrupt on the pipe requested, then |
1146 | * sleeps waiting for the requested sequence number to occur, and drops | |
1147 | * the vblank interrupt refcount afterwards. (vblank irq disable follows that | |
1148 | * after a timeout with no further vblank waits scheduled). | |
1da177e4 | 1149 | */ |
0a3e67a4 JB |
1150 | int drm_wait_vblank(struct drm_device *dev, void *data, |
1151 | struct drm_file *file_priv) | |
1da177e4 | 1152 | { |
c153f45f | 1153 | union drm_wait_vblank *vblwait = data; |
1da177e4 | 1154 | int ret = 0; |
19b01b5f | 1155 | unsigned int flags, seq, crtc, high_crtc; |
1da177e4 | 1156 | |
dcdb1674 | 1157 | if ((!drm_dev_to_irq(dev)) || (!dev->irq_enabled)) |
1da177e4 LT |
1158 | return -EINVAL; |
1159 | ||
30b23634 EA |
1160 | if (vblwait->request.type & _DRM_VBLANK_SIGNAL) |
1161 | return -EINVAL; | |
1162 | ||
c153f45f | 1163 | if (vblwait->request.type & |
19b01b5f IH |
1164 | ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK | |
1165 | _DRM_VBLANK_HIGH_CRTC_MASK)) { | |
776c9443 | 1166 | DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n", |
c153f45f | 1167 | vblwait->request.type, |
19b01b5f IH |
1168 | (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK | |
1169 | _DRM_VBLANK_HIGH_CRTC_MASK)); | |
776c9443 MD |
1170 | return -EINVAL; |
1171 | } | |
1172 | ||
c153f45f | 1173 | flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK; |
19b01b5f IH |
1174 | high_crtc = (vblwait->request.type & _DRM_VBLANK_HIGH_CRTC_MASK); |
1175 | if (high_crtc) | |
1176 | crtc = high_crtc >> _DRM_VBLANK_HIGH_CRTC_SHIFT; | |
1177 | else | |
1178 | crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0; | |
0a3e67a4 | 1179 | if (crtc >= dev->num_crtcs) |
776c9443 MD |
1180 | return -EINVAL; |
1181 | ||
0a3e67a4 JB |
1182 | ret = drm_vblank_get(dev, crtc); |
1183 | if (ret) { | |
8d3457ec | 1184 | DRM_DEBUG("failed to acquire vblank counter, %d\n", ret); |
0a3e67a4 JB |
1185 | return ret; |
1186 | } | |
1187 | seq = drm_vblank_count(dev, crtc); | |
776c9443 | 1188 | |
c153f45f | 1189 | switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) { |
1da177e4 | 1190 | case _DRM_VBLANK_RELATIVE: |
c153f45f EA |
1191 | vblwait->request.sequence += seq; |
1192 | vblwait->request.type &= ~_DRM_VBLANK_RELATIVE; | |
1da177e4 LT |
1193 | case _DRM_VBLANK_ABSOLUTE: |
1194 | break; | |
1195 | default: | |
0a3e67a4 JB |
1196 | ret = -EINVAL; |
1197 | goto done; | |
1da177e4 LT |
1198 | } |
1199 | ||
c9a9c5e0 KH |
1200 | if (flags & _DRM_VBLANK_EVENT) |
1201 | return drm_queue_vblank_event(dev, crtc, vblwait, file_priv); | |
1202 | ||
ab285d74 | 1203 | if ((flags & _DRM_VBLANK_NEXTONMISS) && |
c153f45f EA |
1204 | (seq - vblwait->request.sequence) <= (1<<23)) { |
1205 | vblwait->request.sequence = seq + 1; | |
ab285d74 MD |
1206 | } |
1207 | ||
30b23634 EA |
1208 | DRM_DEBUG("waiting on vblank count %d, crtc %d\n", |
1209 | vblwait->request.sequence, crtc); | |
1210 | dev->last_vblank_wait[crtc] = vblwait->request.sequence; | |
1211 | DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ, | |
1212 | (((drm_vblank_count(dev, crtc) - | |
1213 | vblwait->request.sequence) <= (1 << 23)) || | |
1214 | !dev->irq_enabled)); | |
1da177e4 | 1215 | |
30b23634 EA |
1216 | if (ret != -EINTR) { |
1217 | struct timeval now; | |
1da177e4 | 1218 | |
27641c3f | 1219 | vblwait->reply.sequence = drm_vblank_count_and_time(dev, crtc, &now); |
30b23634 EA |
1220 | vblwait->reply.tval_sec = now.tv_sec; |
1221 | vblwait->reply.tval_usec = now.tv_usec; | |
27641c3f | 1222 | |
30b23634 EA |
1223 | DRM_DEBUG("returning %d to client\n", |
1224 | vblwait->reply.sequence); | |
1da177e4 | 1225 | } else { |
30b23634 | 1226 | DRM_DEBUG("vblank wait interrupted by signal\n"); |
1da177e4 LT |
1227 | } |
1228 | ||
0a3e67a4 JB |
1229 | done: |
1230 | drm_vblank_put(dev, crtc); | |
1da177e4 LT |
1231 | return ret; |
1232 | } | |
1233 | ||
c9a9c5e0 KH |
1234 | void drm_handle_vblank_events(struct drm_device *dev, int crtc) |
1235 | { | |
1236 | struct drm_pending_vblank_event *e, *t; | |
1237 | struct timeval now; | |
1238 | unsigned long flags; | |
1239 | unsigned int seq; | |
1240 | ||
27641c3f | 1241 | seq = drm_vblank_count_and_time(dev, crtc, &now); |
c9a9c5e0 KH |
1242 | |
1243 | spin_lock_irqsave(&dev->event_lock, flags); | |
1244 | ||
1245 | list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) { | |
1246 | if (e->pipe != crtc) | |
1247 | continue; | |
1248 | if ((seq - e->event.sequence) > (1<<23)) | |
1249 | continue; | |
1250 | ||
1251 | DRM_DEBUG("vblank event on %d, current %d\n", | |
1252 | e->event.sequence, seq); | |
1253 | ||
1254 | e->event.sequence = seq; | |
1255 | e->event.tv_sec = now.tv_sec; | |
1256 | e->event.tv_usec = now.tv_usec; | |
1257 | drm_vblank_put(dev, e->pipe); | |
1258 | list_move_tail(&e->base.link, &e->base.file_priv->event_list); | |
1259 | wake_up_interruptible(&e->base.file_priv->event_wait); | |
b9c2c9ae JB |
1260 | trace_drm_vblank_event_delivered(e->base.pid, e->pipe, |
1261 | e->event.sequence); | |
c9a9c5e0 KH |
1262 | } |
1263 | ||
1264 | spin_unlock_irqrestore(&dev->event_lock, flags); | |
ac2874b9 JB |
1265 | |
1266 | trace_drm_vblank_event(crtc, seq); | |
c9a9c5e0 KH |
1267 | } |
1268 | ||
0a3e67a4 JB |
1269 | /** |
1270 | * drm_handle_vblank - handle a vblank event | |
1271 | * @dev: DRM device | |
1272 | * @crtc: where this event occurred | |
1273 | * | |
1274 | * Drivers should call this routine in their vblank interrupt handlers to | |
1275 | * update the vblank counter and send any signals that may be pending. | |
1276 | */ | |
78c6e170 | 1277 | bool drm_handle_vblank(struct drm_device *dev, int crtc) |
0a3e67a4 | 1278 | { |
27641c3f MK |
1279 | u32 vblcount; |
1280 | s64 diff_ns; | |
1281 | struct timeval tvblank; | |
1282 | unsigned long irqflags; | |
1283 | ||
c9a9c5e0 | 1284 | if (!dev->num_crtcs) |
78c6e170 | 1285 | return false; |
c9a9c5e0 | 1286 | |
27641c3f MK |
1287 | /* Need timestamp lock to prevent concurrent execution with |
1288 | * vblank enable/disable, as this would cause inconsistent | |
1289 | * or corrupted timestamps and vblank counts. | |
1290 | */ | |
1291 | spin_lock_irqsave(&dev->vblank_time_lock, irqflags); | |
1292 | ||
1293 | /* Vblank irq handling disabled. Nothing to do. */ | |
1294 | if (!dev->vblank_enabled[crtc]) { | |
1295 | spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags); | |
78c6e170 | 1296 | return false; |
27641c3f MK |
1297 | } |
1298 | ||
1299 | /* Fetch corresponding timestamp for this vblank interval from | |
1300 | * driver and store it in proper slot of timestamp ringbuffer. | |
1301 | */ | |
1302 | ||
1303 | /* Get current timestamp and count. */ | |
1304 | vblcount = atomic_read(&dev->_vblank_count[crtc]); | |
1305 | drm_get_last_vbltimestamp(dev, crtc, &tvblank, DRM_CALLED_FROM_VBLIRQ); | |
1306 | ||
1307 | /* Compute time difference to timestamp of last vblank */ | |
1308 | diff_ns = timeval_to_ns(&tvblank) - | |
1309 | timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount)); | |
1310 | ||
1311 | /* Update vblank timestamp and count if at least | |
1312 | * DRM_REDUNDANT_VBLIRQ_THRESH_NS nanoseconds | |
1313 | * difference between last stored timestamp and current | |
1314 | * timestamp. A smaller difference means basically | |
1315 | * identical timestamps. Happens if this vblank has | |
1316 | * been already processed and this is a redundant call, | |
1317 | * e.g., due to spurious vblank interrupts. We need to | |
1318 | * ignore those for accounting. | |
1319 | */ | |
c4cc3839 | 1320 | if (abs64(diff_ns) > DRM_REDUNDANT_VBLIRQ_THRESH_NS) { |
27641c3f MK |
1321 | /* Store new timestamp in ringbuffer. */ |
1322 | vblanktimestamp(dev, crtc, vblcount + 1) = tvblank; | |
27641c3f MK |
1323 | |
1324 | /* Increment cooked vblank count. This also atomically commits | |
1325 | * the timestamp computed above. | |
1326 | */ | |
bc215128 | 1327 | smp_mb__before_atomic_inc(); |
27641c3f | 1328 | atomic_inc(&dev->_vblank_count[crtc]); |
bc215128 | 1329 | smp_mb__after_atomic_inc(); |
27641c3f MK |
1330 | } else { |
1331 | DRM_DEBUG("crtc %d: Redundant vblirq ignored. diff_ns = %d\n", | |
1332 | crtc, (int) diff_ns); | |
1333 | } | |
1334 | ||
0a3e67a4 | 1335 | DRM_WAKEUP(&dev->vbl_queue[crtc]); |
c9a9c5e0 | 1336 | drm_handle_vblank_events(dev, crtc); |
27641c3f MK |
1337 | |
1338 | spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags); | |
78c6e170 | 1339 | return true; |
0a3e67a4 JB |
1340 | } |
1341 | EXPORT_SYMBOL(drm_handle_vblank); |