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