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