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