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