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