blob: 79836594030c01cdd4ad9d9f332f15cd83fc7d84 [file] [log] [blame]
Daniel Vetterf5752b32014-05-08 16:41:51 +02001/*
2 * drm_irq.c IRQ and vblank support
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * \author Rickard E. (Rik) Faith <faith@valinux.com>
5 * \author Gareth Hughes <gareth@valinux.com>
6 */
7
8/*
9 * Created: Fri Mar 19 14:30:16 1999 by faith@valinux.com
10 *
11 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
12 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
13 * All Rights Reserved.
14 *
15 * Permission is hereby granted, free of charge, to any person obtaining a
16 * copy of this software and associated documentation files (the "Software"),
17 * to deal in the Software without restriction, including without limitation
18 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
19 * and/or sell copies of the Software, and to permit persons to whom the
20 * Software is furnished to do so, subject to the following conditions:
21 *
22 * The above copyright notice and this permission notice (including the next
23 * paragraph) shall be included in all copies or substantial portions of the
24 * Software.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
29 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
30 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
31 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
32 * OTHER DEALINGS IN THE SOFTWARE.
33 */
34
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drmP.h>
Jesse Barnesac2874b2010-07-01 16:47:31 -070036#include "drm_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <linux/interrupt.h> /* For task queue support */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Dave Airlie28d52042009-09-21 14:33:58 +100041#include <linux/vgaarb.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040042#include <linux/export.h>
Mario Kleiner27641c32010-10-23 04:20:23 +020043
44/* Access macro for slots in vblank timestamp ringbuffer. */
Ville Syrjälä5380e922013-10-04 14:53:36 +030045#define vblanktimestamp(dev, crtc, count) \
46 ((dev)->vblank[crtc].time[(count) % DRM_VBLANKTIME_RBSIZE])
Mario Kleiner27641c32010-10-23 04:20:23 +020047
48/* Retry timestamp calculation up to 3 times to satisfy
49 * drm_timestamp_precision before giving up.
50 */
51#define DRM_TIMESTAMP_MAXRETRIES 3
52
53/* Threshold in nanoseconds for detection of redundant
54 * vblank irq in drm_handle_vblank(). 1 msec should be ok.
55 */
56#define DRM_REDUNDANT_VBLIRQ_THRESH_NS 1000000
57
Daniel Vetterfb446a12014-09-10 17:36:10 +020058static bool
59drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
60 struct timeval *tvblank, unsigned flags);
61
Ville Syrjälä13b030a2014-08-06 14:49:47 +030062/**
63 * drm_update_vblank_count - update the master vblank counter
64 * @dev: DRM device
65 * @crtc: counter to update
66 *
67 * Call back into the driver to update the appropriate vblank counter
68 * (specified by @crtc). Deal with wraparound, if it occurred, and
69 * update the last read value so we can deal with wraparound on the next
70 * call if necessary.
71 *
72 * Only necessary when going from off->on, to account for frames we
73 * didn't get an interrupt for.
74 *
75 * Note: caller must hold dev->vbl_lock since this reads & writes
76 * device vblank fields.
77 */
78static void drm_update_vblank_count(struct drm_device *dev, int crtc)
79{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +030080 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Daniel Vetterfb446a12014-09-10 17:36:10 +020081 u32 cur_vblank, diff, tslot;
82 bool rc;
Ville Syrjälä13b030a2014-08-06 14:49:47 +030083 struct timeval t_vblank;
84
85 /*
86 * Interrupts were disabled prior to this call, so deal with counter
87 * wrap if needed.
88 * NOTE! It's possible we lost a full dev->max_vblank_count events
89 * here if the register is small or we had vblank interrupts off for
90 * a long time.
91 *
92 * We repeat the hardware vblank counter & timestamp query until
93 * we get consistent results. This to prevent races between gpu
94 * updating its hardware counter while we are retrieving the
95 * corresponding vblank timestamp.
96 */
97 do {
98 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
99 rc = drm_get_last_vbltimestamp(dev, crtc, &t_vblank, 0);
100 } while (cur_vblank != dev->driver->get_vblank_counter(dev, crtc));
101
102 /* Deal with counter wrap */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300103 diff = cur_vblank - vblank->last;
104 if (cur_vblank < vblank->last) {
Ville Syrjälä13b030a2014-08-06 14:49:47 +0300105 diff += dev->max_vblank_count;
106
107 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300108 crtc, vblank->last, cur_vblank, diff);
Ville Syrjälä13b030a2014-08-06 14:49:47 +0300109 }
110
Ville Syrjälä96a9fdd2014-08-06 14:50:02 +0300111 DRM_DEBUG("updating vblank count on crtc %d, missed %d\n",
Ville Syrjälä13b030a2014-08-06 14:49:47 +0300112 crtc, diff);
113
114 /* Reinitialize corresponding vblank timestamp if high-precision query
115 * available. Skip this step if query unsupported or failed. Will
116 * reinitialize delayed at next vblank interrupt in that case.
117 */
118 if (rc) {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300119 tslot = atomic_read(&vblank->count) + diff;
Ville Syrjälä13b030a2014-08-06 14:49:47 +0300120 vblanktimestamp(dev, crtc, tslot) = t_vblank;
121 }
122
123 smp_mb__before_atomic();
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300124 atomic_add(diff, &vblank->count);
Ville Syrjälä13b030a2014-08-06 14:49:47 +0300125 smp_mb__after_atomic();
126}
127
Mario Kleiner27641c32010-10-23 04:20:23 +0200128/*
Mario Kleiner27641c32010-10-23 04:20:23 +0200129 * Disable vblank irq's on crtc, make sure that last vblank count
130 * of hardware and corresponding consistent software vblank counter
131 * are preserved, even if there are any spurious vblank irq's after
132 * disable.
133 */
134static void vblank_disable_and_save(struct drm_device *dev, int crtc)
135{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300136 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Mario Kleiner27641c32010-10-23 04:20:23 +0200137 unsigned long irqflags;
138 u32 vblcount;
139 s64 diff_ns;
Daniel Vetterfb446a12014-09-10 17:36:10 +0200140 bool vblrc;
Mario Kleiner27641c32010-10-23 04:20:23 +0200141 struct timeval tvblank;
Egbert Eich0355cf32012-10-13 11:36:14 +0000142 int count = DRM_TIMESTAMP_MAXRETRIES;
Mario Kleiner27641c32010-10-23 04:20:23 +0200143
144 /* Prevent vblank irq processing while disabling vblank irqs,
145 * so no updates of timestamps or count can happen after we've
146 * disabled. Needed to prevent races in case of delayed irq's.
Mario Kleiner27641c32010-10-23 04:20:23 +0200147 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200148 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
149
Ville Syrjälä812e7462014-08-06 14:49:48 +0300150 /*
151 * If the vblank interrupt was already disbled update the count
152 * and timestamp to maintain the appearance that the counter
153 * has been ticking all along until this time. This makes the
154 * count account for the entire time between drm_vblank_on() and
155 * drm_vblank_off().
Daniel Vetter855d30b2014-09-10 17:36:09 +0200156 *
157 * But only do this if precise vblank timestamps are available.
158 * Otherwise we might read a totally bogus timestamp since drivers
159 * lacking precise timestamp support rely upon sampling the system clock
160 * at vblank interrupt time. Which obviously won't work out well if the
161 * vblank interrupt is disabled.
Ville Syrjälä812e7462014-08-06 14:49:48 +0300162 */
Daniel Vetter855d30b2014-09-10 17:36:09 +0200163 if (!vblank->enabled &&
Daniel Vetterfb446a12014-09-10 17:36:10 +0200164 drm_get_last_vbltimestamp(dev, crtc, &tvblank, 0)) {
Ville Syrjälä812e7462014-08-06 14:49:48 +0300165 drm_update_vblank_count(dev, crtc);
166 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
167 return;
168 }
169
Mario Kleiner27641c32010-10-23 04:20:23 +0200170 dev->driver->disable_vblank(dev, crtc);
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300171 vblank->enabled = false;
Mario Kleiner27641c32010-10-23 04:20:23 +0200172
173 /* No further vblank irq's will be processed after
174 * this point. Get current hardware vblank count and
175 * vblank timestamp, repeat until they are consistent.
176 *
177 * FIXME: There is still a race condition here and in
178 * drm_update_vblank_count() which can cause off-by-one
179 * reinitialization of software vblank counter. If gpu
180 * vblank counter doesn't increment exactly at the leading
181 * edge of a vblank interval, then we can lose 1 count if
182 * we happen to execute between start of vblank and the
183 * delayed gpu counter increment.
184 */
185 do {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300186 vblank->last = dev->driver->get_vblank_counter(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +0200187 vblrc = drm_get_last_vbltimestamp(dev, crtc, &tvblank, 0);
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300188 } while (vblank->last != dev->driver->get_vblank_counter(dev, crtc) && (--count) && vblrc);
Egbert Eich0355cf32012-10-13 11:36:14 +0000189
190 if (!count)
191 vblrc = 0;
Mario Kleiner27641c32010-10-23 04:20:23 +0200192
193 /* Compute time difference to stored timestamp of last vblank
194 * as updated by last invocation of drm_handle_vblank() in vblank irq.
195 */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300196 vblcount = atomic_read(&vblank->count);
Mario Kleiner27641c32010-10-23 04:20:23 +0200197 diff_ns = timeval_to_ns(&tvblank) -
198 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
199
200 /* If there is at least 1 msec difference between the last stored
201 * timestamp and tvblank, then we are currently executing our
202 * disable inside a new vblank interval, the tvblank timestamp
203 * corresponds to this new vblank interval and the irq handler
204 * for this vblank didn't run yet and won't run due to our disable.
205 * Therefore we need to do the job of drm_handle_vblank() and
206 * increment the vblank counter by one to account for this vblank.
207 *
208 * Skip this step if there isn't any high precision timestamp
209 * available. In that case we can't account for this and just
210 * hope for the best.
211 */
Daniel Vetterfb446a12014-09-10 17:36:10 +0200212 if (vblrc && (abs64(diff_ns) > 1000000)) {
Ville Syrjäläc50d7522014-08-06 14:49:59 +0300213 /* Store new timestamp in ringbuffer. */
214 vblanktimestamp(dev, crtc, vblcount + 1) = tvblank;
215
216 /* Increment cooked vblank count. This also atomically commits
217 * the timestamp computed above.
218 */
219 smp_mb__before_atomic();
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300220 atomic_inc(&vblank->count);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100221 smp_mb__after_atomic();
Mario Kleinerbc215122011-02-21 05:42:01 +0100222 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200223
Mario Kleiner27641c32010-10-23 04:20:23 +0200224 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Mario Kleiner27641c32010-10-23 04:20:23 +0200225}
226
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700227static void vblank_disable_fn(unsigned long arg)
228{
Ville Syrjäläe69595c2014-02-19 19:36:08 +0200229 struct drm_vblank_crtc *vblank = (void *)arg;
230 struct drm_device *dev = vblank->dev;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700231 unsigned long irqflags;
Ville Syrjäläe69595c2014-02-19 19:36:08 +0200232 int crtc = vblank->crtc;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700233
234 if (!dev->vblank_disable_allowed)
235 return;
236
Ville Syrjäläe69595c2014-02-19 19:36:08 +0200237 spin_lock_irqsave(&dev->vbl_lock, irqflags);
238 if (atomic_read(&vblank->refcount) == 0 && vblank->enabled) {
239 DRM_DEBUG("disabling vblank on crtc %d\n", crtc);
240 vblank_disable_and_save(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700241 }
Ville Syrjäläe69595c2014-02-19 19:36:08 +0200242 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700243}
244
Daniel Vetterf5752b32014-05-08 16:41:51 +0200245/**
246 * drm_vblank_cleanup - cleanup vblank support
247 * @dev: DRM device
248 *
249 * This function cleans up any resources allocated in drm_vblank_init.
250 */
Keith Packard52440212008-11-18 09:30:25 -0800251void drm_vblank_cleanup(struct drm_device *dev)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700252{
Ville Syrjäläe69595c2014-02-19 19:36:08 +0200253 int crtc;
Mario Kleiner2368ffb2014-08-06 03:22:46 +0200254 unsigned long irqflags;
Ville Syrjäläe69595c2014-02-19 19:36:08 +0200255
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700256 /* Bail if the driver didn't call drm_vblank_init() */
257 if (dev->num_crtcs == 0)
258 return;
259
Ville Syrjäläe69595c2014-02-19 19:36:08 +0200260 for (crtc = 0; crtc < dev->num_crtcs; crtc++) {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300261 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
262
263 del_timer_sync(&vblank->disable_timer);
Mario Kleiner2368ffb2014-08-06 03:22:46 +0200264
265 spin_lock_irqsave(&dev->vbl_lock, irqflags);
266 vblank_disable_and_save(dev, crtc);
267 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Ville Syrjäläe69595c2014-02-19 19:36:08 +0200268 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700269
Ville Syrjälä5380e922013-10-04 14:53:36 +0300270 kfree(dev->vblank);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700271
272 dev->num_crtcs = 0;
273}
Jerome Glissee77cef92010-01-07 15:39:13 +0100274EXPORT_SYMBOL(drm_vblank_cleanup);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700275
Daniel Vetterf5752b32014-05-08 16:41:51 +0200276/**
277 * drm_vblank_init - initialize vblank support
278 * @dev: drm_device
279 * @num_crtcs: number of crtcs supported by @dev
280 *
281 * This function initializes vblank support for @num_crtcs display pipelines.
282 *
283 * Returns:
284 * Zero on success or a negative error code on failure.
285 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700286int drm_vblank_init(struct drm_device *dev, int num_crtcs)
287{
288 int i, ret = -ENOMEM;
289
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700290 spin_lock_init(&dev->vbl_lock);
Mario Kleiner27641c32010-10-23 04:20:23 +0200291 spin_lock_init(&dev->vblank_time_lock);
292
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700293 dev->num_crtcs = num_crtcs;
294
Ville Syrjälä5380e922013-10-04 14:53:36 +0300295 dev->vblank = kcalloc(num_crtcs, sizeof(*dev->vblank), GFP_KERNEL);
296 if (!dev->vblank)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700297 goto err;
298
Ville Syrjäläe69595c2014-02-19 19:36:08 +0200299 for (i = 0; i < num_crtcs; i++) {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300300 struct drm_vblank_crtc *vblank = &dev->vblank[i];
301
302 vblank->dev = dev;
303 vblank->crtc = i;
304 init_waitqueue_head(&vblank->queue);
305 setup_timer(&vblank->disable_timer, vblank_disable_fn,
306 (unsigned long)vblank);
Ville Syrjäläe69595c2014-02-19 19:36:08 +0200307 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200308
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100309 DRM_INFO("Supports vblank timestamp caching Rev 2 (21.10.2013).\n");
Mario Kleiner27641c32010-10-23 04:20:23 +0200310
311 /* Driver specific high-precision vblank timestamping supported? */
312 if (dev->driver->get_vblank_timestamp)
313 DRM_INFO("Driver supports precise vblank timestamp query.\n");
314 else
315 DRM_INFO("No driver support for vblank timestamp query.\n");
316
Ville Syrjäläba0bf122013-10-04 14:53:33 +0300317 dev->vblank_disable_allowed = false;
318
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700319 return 0;
320
321err:
Mario Kleiner79a093ae2014-08-06 03:22:44 +0200322 dev->num_crtcs = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700323 return ret;
324}
325EXPORT_SYMBOL(drm_vblank_init);
326
Dave Airlie28d52042009-09-21 14:33:58 +1000327static void drm_irq_vgaarb_nokms(void *cookie, bool state)
328{
329 struct drm_device *dev = cookie;
330
331 if (dev->driver->vgaarb_irq) {
332 dev->driver->vgaarb_irq(dev, state);
333 return;
334 }
335
336 if (!dev->irq_enabled)
337 return;
338
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000339 if (state) {
340 if (dev->driver->irq_uninstall)
341 dev->driver->irq_uninstall(dev);
342 } else {
343 if (dev->driver->irq_preinstall)
344 dev->driver->irq_preinstall(dev);
345 if (dev->driver->irq_postinstall)
346 dev->driver->irq_postinstall(dev);
Dave Airlie28d52042009-09-21 14:33:58 +1000347 }
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/**
Daniel Vetterf5752b32014-05-08 16:41:51 +0200351 * drm_irq_install - install IRQ handler
352 * @dev: DRM device
353 * @irq: IRQ number to install the handler for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 *
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700355 * Initializes the IRQ related data. Installs the handler, calling the driver
Daniel Vetterf5752b32014-05-08 16:41:51 +0200356 * irq_preinstall() and irq_postinstall() functions before and after the
357 * installation.
358 *
359 * This is the simplified helper interface provided for drivers with no special
360 * needs. Drivers which need to install interrupt handlers for multiple
361 * interrupts must instead set drm_device->irq_enabled to signal the DRM core
362 * that vblank interrupts are available.
363 *
364 * Returns:
365 * Zero on success or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 */
Daniel Vetterbb0f1b52013-11-03 21:09:27 +0100367int drm_irq_install(struct drm_device *dev, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200369 int ret;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000370 unsigned long sh_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
373 return -EINVAL;
374
Daniel Vetter7c1a38e2013-12-16 11:21:15 +0100375 if (irq == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return -EINVAL;
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* Driver must have been initialized */
Daniel Vettere090c532013-11-03 20:27:05 +0100379 if (!dev->dev_private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Daniel Vettere090c532013-11-03 20:27:05 +0100382 if (dev->irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return -EBUSY;
Ville Syrjälä44238432013-10-04 14:53:37 +0300384 dev->irq_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Daniel Vetter7c1a38e2013-12-16 11:21:15 +0100386 DRM_DEBUG("irq=%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000388 /* Before installing handler */
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000389 if (dev->driver->irq_preinstall)
390 dev->driver->irq_preinstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000392 /* Install handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
Thomas Gleixner935f6e32006-07-01 19:29:34 -0700394 sh_flags = IRQF_SHARED;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000395
Daniel Vetter7c1a38e2013-12-16 11:21:15 +0100396 ret = request_irq(irq, dev->driver->irq_handler,
Daniel Vetter5829d182013-11-03 21:48:48 +0100397 sh_flags, dev->driver->name, dev);
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700398
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000399 if (ret < 0) {
Ville Syrjälä44238432013-10-04 14:53:37 +0300400 dev->irq_enabled = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return ret;
402 }
403
Dave Airlie28d52042009-09-21 14:33:58 +1000404 if (!drm_core_check_feature(dev, DRIVER_MODESET))
405 vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL);
406
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000407 /* After installing handler */
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000408 if (dev->driver->irq_postinstall)
409 ret = dev->driver->irq_postinstall(dev);
410
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700411 if (ret < 0) {
Ville Syrjälä44238432013-10-04 14:53:37 +0300412 dev->irq_enabled = false;
Joonyoung Shime1c44ac2011-08-04 05:41:00 +0000413 if (!drm_core_check_feature(dev, DRIVER_MODESET))
414 vga_client_register(dev->pdev, NULL, NULL, NULL);
Daniel Vetter7c1a38e2013-12-16 11:21:15 +0100415 free_irq(irq, dev);
416 } else {
417 dev->irq = irq;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700420 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700422EXPORT_SYMBOL(drm_irq_install);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424/**
Daniel Vetterf5752b32014-05-08 16:41:51 +0200425 * drm_irq_uninstall - uninstall the IRQ handler
426 * @dev: DRM device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 *
Daniel Vetterf5752b32014-05-08 16:41:51 +0200428 * Calls the driver's irq_uninstall() function and unregisters the IRQ handler.
429 * This should only be called by drivers which used drm_irq_install() to set up
430 * their interrupt handler. Other drivers must only reset
431 * drm_device->irq_enabled to false.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 *
Daniel Vetterf5752b32014-05-08 16:41:51 +0200433 * Note that for kernel modesetting drivers it is a bug if this function fails.
434 * The sanity checks are only to catch buggy user modesetting drivers which call
435 * the same function through an ioctl.
436 *
437 * Returns:
438 * Zero on success or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200440int drm_irq_uninstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800442 unsigned long irqflags;
Ville Syrjälä44238432013-10-04 14:53:37 +0300443 bool irq_enabled;
444 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
447 return -EINVAL;
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 irq_enabled = dev->irq_enabled;
Ville Syrjälä44238432013-10-04 14:53:37 +0300450 dev->irq_enabled = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800452 /*
453 * Wake up any waiters so they don't hang.
454 */
Ben Skeggsbde48892011-07-04 12:52:27 +1000455 if (dev->num_crtcs) {
456 spin_lock_irqsave(&dev->vbl_lock, irqflags);
457 for (i = 0; i < dev->num_crtcs; i++) {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300458 struct drm_vblank_crtc *vblank = &dev->vblank[i];
459
460 wake_up(&vblank->queue);
461 vblank->enabled = false;
462 vblank->last =
Ben Skeggsbde48892011-07-04 12:52:27 +1000463 dev->driver->get_vblank_counter(dev, i);
464 }
465 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800466 }
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800467
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000468 if (!irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return -EINVAL;
470
Daniel Vetter7c1a38e2013-12-16 11:21:15 +0100471 DRM_DEBUG("irq=%d\n", dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Dave Airlie28d52042009-09-21 14:33:58 +1000473 if (!drm_core_check_feature(dev, DRIVER_MODESET))
474 vga_client_register(dev->pdev, NULL, NULL, NULL);
475
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000476 if (dev->driver->irq_uninstall)
477 dev->driver->irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Daniel Vetter7c1a38e2013-12-16 11:21:15 +0100479 free_irq(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 return 0;
482}
483EXPORT_SYMBOL(drm_irq_uninstall);
484
Daniel Vetterf5752b32014-05-08 16:41:51 +0200485/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * IRQ control ioctl.
487 *
488 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000489 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 * \param cmd command.
491 * \param arg user argument, pointing to a drm_control structure.
492 * \return zero on success or a negative number on failure.
493 *
494 * Calls irq_install() or irq_uninstall() according to \p arg.
495 */
Eric Anholtc153f452007-09-03 12:06:45 +1000496int drm_control(struct drm_device *dev, void *data,
497 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Eric Anholtc153f452007-09-03 12:06:45 +1000499 struct drm_control *ctl = data;
Daniel Vettera319c1a2013-11-03 21:09:15 +0100500 int ret = 0, irq;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000501
Mario Kleiner27641c32010-10-23 04:20:23 +0200502 /* if we haven't irq we fallback for compatibility reasons -
503 * this used to be a separate function in drm_dma.h
504 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Daniel Vetter22471cf2013-11-03 20:02:50 +0100506 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
507 return 0;
508 if (drm_core_check_feature(dev, DRIVER_MODESET))
509 return 0;
510 /* UMS was only ever support on pci devices. */
511 if (WARN_ON(!dev->pdev))
512 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Eric Anholtc153f452007-09-03 12:06:45 +1000514 switch (ctl->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 case DRM_INST_HANDLER:
Daniel Vettera319c1a2013-11-03 21:09:15 +0100516 irq = dev->pdev->irq;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
Daniel Vettera319c1a2013-11-03 21:09:15 +0100519 ctl->irq != irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return -EINVAL;
Daniel Vettere090c532013-11-03 20:27:05 +0100521 mutex_lock(&dev->struct_mutex);
Daniel Vetterbb0f1b52013-11-03 21:09:27 +0100522 ret = drm_irq_install(dev, irq);
Daniel Vettere090c532013-11-03 20:27:05 +0100523 mutex_unlock(&dev->struct_mutex);
524
525 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 case DRM_UNINST_HANDLER:
Daniel Vettere090c532013-11-03 20:27:05 +0100527 mutex_lock(&dev->struct_mutex);
528 ret = drm_irq_uninstall(dev);
529 mutex_unlock(&dev->struct_mutex);
530
531 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 default:
533 return -EINVAL;
534 }
535}
536
537/**
Daniel Vetterf5752b32014-05-08 16:41:51 +0200538 * drm_calc_timestamping_constants - calculate vblank timestamp constants
539 * @crtc: drm_crtc whose timestamp constants should be updated.
540 * @mode: display mode containing the scanout timings
Mario Kleiner27641c32010-10-23 04:20:23 +0200541 *
Ville Syrjälä21b21562013-10-26 17:22:52 +0300542 * Calculate and store various constants which are later
543 * needed by vblank and swap-completion timestamping, e.g,
544 * by drm_calc_vbltimestamp_from_scanoutpos(). They are
Daniel Vetterf5752b32014-05-08 16:41:51 +0200545 * derived from CRTC's true scanout timing, so they take
Ville Syrjälä21b21562013-10-26 17:22:52 +0300546 * things like panel scaling or other adjustments into account.
Mario Kleiner27641c32010-10-23 04:20:23 +0200547 */
Ville Syrjälä545cdd52013-10-26 17:16:30 +0300548void drm_calc_timestamping_constants(struct drm_crtc *crtc,
549 const struct drm_display_mode *mode)
Mario Kleiner27641c32010-10-23 04:20:23 +0200550{
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300551 int linedur_ns = 0, pixeldur_ns = 0, framedur_ns = 0;
Ville Syrjälä77666b72013-10-27 21:22:58 +0200552 int dotclock = mode->crtc_clock;
Mario Kleiner27641c32010-10-23 04:20:23 +0200553
554 /* Valid dotclock? */
555 if (dotclock > 0) {
Ville Syrjälä0dae35a2013-10-26 17:11:01 +0300556 int frame_size = mode->crtc_htotal * mode->crtc_vtotal;
557
558 /*
559 * Convert scanline length in pixels and video
560 * dot clock to line duration, frame duration
561 * and pixel duration in nanoseconds:
Mario Kleiner27641c32010-10-23 04:20:23 +0200562 */
Ville Syrjälä0dae35a2013-10-26 17:11:01 +0300563 pixeldur_ns = 1000000 / dotclock;
564 linedur_ns = div_u64((u64) mode->crtc_htotal * 1000000, dotclock);
565 framedur_ns = div_u64((u64) frame_size * 1000000, dotclock);
Ville Syrjäläc0ae24c2013-10-28 19:53:25 +0200566
567 /*
568 * Fields of interlaced scanout modes are only half a frame duration.
569 */
570 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
571 framedur_ns /= 2;
Mario Kleiner27641c32010-10-23 04:20:23 +0200572 } else
573 DRM_ERROR("crtc %d: Can't calculate constants, dotclock = 0!\n",
574 crtc->base.id);
575
576 crtc->pixeldur_ns = pixeldur_ns;
577 crtc->linedur_ns = linedur_ns;
578 crtc->framedur_ns = framedur_ns;
579
580 DRM_DEBUG("crtc %d: hwmode: htotal %d, vtotal %d, vdisplay %d\n",
Ville Syrjälä545cdd52013-10-26 17:16:30 +0300581 crtc->base.id, mode->crtc_htotal,
582 mode->crtc_vtotal, mode->crtc_vdisplay);
Mario Kleiner27641c32010-10-23 04:20:23 +0200583 DRM_DEBUG("crtc %d: clock %d kHz framedur %d linedur %d, pixeldur %d\n",
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300584 crtc->base.id, dotclock, framedur_ns,
585 linedur_ns, pixeldur_ns);
Mario Kleiner27641c32010-10-23 04:20:23 +0200586}
587EXPORT_SYMBOL(drm_calc_timestamping_constants);
588
589/**
Daniel Vetterf5752b32014-05-08 16:41:51 +0200590 * drm_calc_vbltimestamp_from_scanoutpos - precise vblank timestamp helper
591 * @dev: DRM device
592 * @crtc: Which CRTC's vblank timestamp to retrieve
593 * @max_error: Desired maximum allowable error in timestamps (nanosecs)
594 * On return contains true maximum error of timestamp
595 * @vblank_time: Pointer to struct timeval which should receive the timestamp
596 * @flags: Flags to pass to driver:
597 * 0 = Default,
598 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl IRQ handler
599 * @refcrtc: CRTC which defines scanout timing
600 * @mode: mode which defines the scanout timings
601 *
602 * Implements calculation of exact vblank timestamps from given drm_display_mode
603 * timings and current video scanout position of a CRTC. This can be called from
604 * within get_vblank_timestamp() implementation of a kms driver to implement the
605 * actual timestamping.
Mario Kleiner27641c32010-10-23 04:20:23 +0200606 *
607 * Should return timestamps conforming to the OML_sync_control OpenML
608 * extension specification. The timestamp corresponds to the end of
609 * the vblank interval, aka start of scanout of topmost-leftmost display
610 * pixel in the following video frame.
611 *
612 * Requires support for optional dev->driver->get_scanout_position()
613 * in kms driver, plus a bit of setup code to provide a drm_display_mode
614 * that corresponds to the true scanout timing.
615 *
616 * The current implementation only handles standard video modes. It
617 * returns as no operation if a doublescan or interlaced video mode is
618 * active. Higher level code is expected to handle this.
619 *
Daniel Vetterf5752b32014-05-08 16:41:51 +0200620 * Returns:
621 * Negative value on error, failure or if not supported in current
Mario Kleiner27641c32010-10-23 04:20:23 +0200622 * video mode:
623 *
Daniel Vetterf5752b32014-05-08 16:41:51 +0200624 * -EINVAL - Invalid CRTC.
Mario Kleiner27641c32010-10-23 04:20:23 +0200625 * -EAGAIN - Temporary unavailable, e.g., called before initial modeset.
626 * -ENOTSUPP - Function not supported in current display mode.
627 * -EIO - Failed, e.g., due to failed scanout position query.
628 *
629 * Returns or'ed positive status flags on success:
630 *
631 * DRM_VBLANKTIME_SCANOUTPOS_METHOD - Signal this method used for timestamping.
632 * DRM_VBLANKTIME_INVBL - Timestamp taken while scanout was in vblank interval.
633 *
634 */
635int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, int crtc,
636 int *max_error,
637 struct timeval *vblank_time,
638 unsigned flags,
Ville Syrjälä7da903e2013-10-26 17:57:31 +0300639 const struct drm_crtc *refcrtc,
640 const struct drm_display_mode *mode)
Mario Kleiner27641c32010-10-23 04:20:23 +0200641{
Imre Deake62f2f52012-10-23 18:53:25 +0000642 ktime_t stime, etime, mono_time_offset;
643 struct timeval tv_etime;
Ville Syrjälä8072bfa2013-10-28 21:22:52 +0200644 int vbl_status;
Mario Kleiner27641c32010-10-23 04:20:23 +0200645 int vpos, hpos, i;
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300646 int framedur_ns, linedur_ns, pixeldur_ns, delta_ns, duration_ns;
Mario Kleiner27641c32010-10-23 04:20:23 +0200647 bool invbl;
648
649 if (crtc < 0 || crtc >= dev->num_crtcs) {
650 DRM_ERROR("Invalid crtc %d\n", crtc);
651 return -EINVAL;
652 }
653
654 /* Scanout position query not supported? Should not happen. */
655 if (!dev->driver->get_scanout_position) {
656 DRM_ERROR("Called from driver w/o get_scanout_position()!?\n");
657 return -EIO;
658 }
659
Mario Kleiner27641c32010-10-23 04:20:23 +0200660 /* Durations of frames, lines, pixels in nanoseconds. */
661 framedur_ns = refcrtc->framedur_ns;
662 linedur_ns = refcrtc->linedur_ns;
663 pixeldur_ns = refcrtc->pixeldur_ns;
664
665 /* If mode timing undefined, just return as no-op:
666 * Happens during initial modesetting of a crtc.
667 */
Ville Syrjälä8072bfa2013-10-28 21:22:52 +0200668 if (framedur_ns == 0) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200669 DRM_DEBUG("crtc %d: Noop due to uninitialized mode.\n", crtc);
670 return -EAGAIN;
671 }
672
Mario Kleiner27641c32010-10-23 04:20:23 +0200673 /* Get current scanout position with system timestamp.
674 * Repeat query up to DRM_TIMESTAMP_MAXRETRIES times
675 * if single query takes longer than max_error nanoseconds.
676 *
677 * This guarantees a tight bound on maximum error if
678 * code gets preempted or delayed for some reason.
679 */
680 for (i = 0; i < DRM_TIMESTAMP_MAXRETRIES; i++) {
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100681 /*
682 * Get vertical and horizontal scanout position vpos, hpos,
683 * and bounding timestamps stime, etime, pre/post query.
684 */
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200685 vbl_status = dev->driver->get_scanout_position(dev, crtc, flags, &vpos,
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100686 &hpos, &stime, &etime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200687
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100688 /*
689 * Get correction for CLOCK_MONOTONIC -> CLOCK_REALTIME if
690 * CLOCK_REALTIME is requested.
691 */
Imre Deakc61eef72012-10-23 18:53:26 +0000692 if (!drm_timestamp_monotonic)
693 mono_time_offset = ktime_get_monotonic_offset();
Mario Kleiner27641c32010-10-23 04:20:23 +0200694
Mario Kleiner27641c32010-10-23 04:20:23 +0200695 /* Return as no-op if scanout query unsupported or failed. */
696 if (!(vbl_status & DRM_SCANOUTPOS_VALID)) {
697 DRM_DEBUG("crtc %d : scanoutpos query failed [%d].\n",
698 crtc, vbl_status);
699 return -EIO;
700 }
701
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100702 /* Compute uncertainty in timestamp of scanout position query. */
Imre Deake62f2f52012-10-23 18:53:25 +0000703 duration_ns = ktime_to_ns(etime) - ktime_to_ns(stime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200704
705 /* Accept result with < max_error nsecs timing uncertainty. */
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300706 if (duration_ns <= *max_error)
Mario Kleiner27641c32010-10-23 04:20:23 +0200707 break;
708 }
709
710 /* Noisy system timing? */
711 if (i == DRM_TIMESTAMP_MAXRETRIES) {
712 DRM_DEBUG("crtc %d: Noisy timestamp %d us > %d us [%d reps].\n",
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300713 crtc, duration_ns/1000, *max_error/1000, i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200714 }
715
716 /* Return upper bound of timestamp precision error. */
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300717 *max_error = duration_ns;
Mario Kleiner27641c32010-10-23 04:20:23 +0200718
719 /* Check if in vblank area:
720 * vpos is >=0 in video scanout area, but negative
721 * within vblank area, counting down the number of lines until
722 * start of scanout.
723 */
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200724 invbl = vbl_status & DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner27641c32010-10-23 04:20:23 +0200725
726 /* Convert scanout position into elapsed time at raw_time query
727 * since start of scanout at first display scanline. delta_ns
728 * can be negative if start of scanout hasn't happened yet.
729 */
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300730 delta_ns = vpos * linedur_ns + hpos * pixeldur_ns;
Mario Kleiner27641c32010-10-23 04:20:23 +0200731
Imre Deakc61eef72012-10-23 18:53:26 +0000732 if (!drm_timestamp_monotonic)
733 etime = ktime_sub(etime, mono_time_offset);
734
Imre Deake62f2f52012-10-23 18:53:25 +0000735 /* save this only for debugging purposes */
736 tv_etime = ktime_to_timeval(etime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200737 /* Subtract time delta from raw timestamp to get final
738 * vblank_time timestamp for end of vblank.
739 */
Michel Dänzere91abf82013-06-12 11:58:44 +0200740 if (delta_ns < 0)
741 etime = ktime_add_ns(etime, -delta_ns);
742 else
743 etime = ktime_sub_ns(etime, delta_ns);
Imre Deake62f2f52012-10-23 18:53:25 +0000744 *vblank_time = ktime_to_timeval(etime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200745
Joe Perchesbbb0aef2011-04-17 20:35:52 -0700746 DRM_DEBUG("crtc %d : v %d p(%d,%d)@ %ld.%ld -> %ld.%ld [e %d us, %d rep]\n",
747 crtc, (int)vbl_status, hpos, vpos,
Imre Deake62f2f52012-10-23 18:53:25 +0000748 (long)tv_etime.tv_sec, (long)tv_etime.tv_usec,
Joe Perchesbbb0aef2011-04-17 20:35:52 -0700749 (long)vblank_time->tv_sec, (long)vblank_time->tv_usec,
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300750 duration_ns/1000, i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200751
752 vbl_status = DRM_VBLANKTIME_SCANOUTPOS_METHOD;
753 if (invbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200754 vbl_status |= DRM_VBLANKTIME_IN_VBLANK;
Mario Kleiner27641c32010-10-23 04:20:23 +0200755
756 return vbl_status;
757}
758EXPORT_SYMBOL(drm_calc_vbltimestamp_from_scanoutpos);
759
Imre Deakc61eef72012-10-23 18:53:26 +0000760static struct timeval get_drm_timestamp(void)
761{
762 ktime_t now;
763
764 now = ktime_get();
765 if (!drm_timestamp_monotonic)
766 now = ktime_sub(now, ktime_get_monotonic_offset());
767
768 return ktime_to_timeval(now);
769}
770
Mario Kleiner27641c32010-10-23 04:20:23 +0200771/**
772 * drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent
Daniel Vetterf5752b32014-05-08 16:41:51 +0200773 * vblank interval
Mario Kleiner27641c32010-10-23 04:20:23 +0200774 * @dev: DRM device
Daniel Vetterf5752b32014-05-08 16:41:51 +0200775 * @crtc: which CRTC's vblank timestamp to retrieve
Mario Kleiner27641c32010-10-23 04:20:23 +0200776 * @tvblank: Pointer to target struct timeval which should receive the timestamp
777 * @flags: Flags to pass to driver:
Daniel Vetterf5752b32014-05-08 16:41:51 +0200778 * 0 = Default,
779 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl IRQ handler
Mario Kleiner27641c32010-10-23 04:20:23 +0200780 *
781 * Fetches the system timestamp corresponding to the time of the most recent
Daniel Vetterf5752b32014-05-08 16:41:51 +0200782 * vblank interval on specified CRTC. May call into kms-driver to
Mario Kleiner27641c32010-10-23 04:20:23 +0200783 * compute the timestamp with a high-precision GPU specific method.
784 *
785 * Returns zero if timestamp originates from uncorrected do_gettimeofday()
786 * call, i.e., it isn't very precisely locked to the true vblank.
787 *
Daniel Vetterf5752b32014-05-08 16:41:51 +0200788 * Returns:
Daniel Vetterfb446a12014-09-10 17:36:10 +0200789 * True if timestamp is considered to be very precise, false otherwise.
Mario Kleiner27641c32010-10-23 04:20:23 +0200790 */
Daniel Vetterfb446a12014-09-10 17:36:10 +0200791static bool
792drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
793 struct timeval *tvblank, unsigned flags)
Mario Kleiner27641c32010-10-23 04:20:23 +0200794{
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200795 int ret;
Mario Kleiner27641c32010-10-23 04:20:23 +0200796
797 /* Define requested maximum error on timestamps (nanoseconds). */
798 int max_error = (int) drm_timestamp_precision * 1000;
799
800 /* Query driver if possible and precision timestamping enabled. */
801 if (dev->driver->get_vblank_timestamp && (max_error > 0)) {
802 ret = dev->driver->get_vblank_timestamp(dev, crtc, &max_error,
803 tvblank, flags);
804 if (ret > 0)
Daniel Vetterfb446a12014-09-10 17:36:10 +0200805 return true;
Mario Kleiner27641c32010-10-23 04:20:23 +0200806 }
807
808 /* GPU high precision timestamp query unsupported or failed.
Imre Deakc61eef72012-10-23 18:53:26 +0000809 * Return current monotonic/gettimeofday timestamp as best estimate.
Mario Kleiner27641c32010-10-23 04:20:23 +0200810 */
Imre Deakc61eef72012-10-23 18:53:26 +0000811 *tvblank = get_drm_timestamp();
Mario Kleiner27641c32010-10-23 04:20:23 +0200812
Daniel Vetterfb446a12014-09-10 17:36:10 +0200813 return false;
Mario Kleiner27641c32010-10-23 04:20:23 +0200814}
Mario Kleiner27641c32010-10-23 04:20:23 +0200815
816/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700817 * drm_vblank_count - retrieve "cooked" vblank counter value
818 * @dev: DRM device
819 * @crtc: which counter to retrieve
820 *
821 * Fetches the "cooked" vblank count value that represents the number of
822 * vblank events since the system was booted, including lost events due to
823 * modesetting activity.
Daniel Vetterf5752b32014-05-08 16:41:51 +0200824 *
825 * Returns:
826 * The software vblank counter.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700827 */
828u32 drm_vblank_count(struct drm_device *dev, int crtc)
829{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300830 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
831
832 return atomic_read(&vblank->count);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700833}
834EXPORT_SYMBOL(drm_vblank_count);
835
836/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200837 * drm_vblank_count_and_time - retrieve "cooked" vblank counter value
838 * and the system timestamp corresponding to that vblank counter value.
839 *
840 * @dev: DRM device
841 * @crtc: which counter to retrieve
842 * @vblanktime: Pointer to struct timeval to receive the vblank timestamp.
843 *
844 * Fetches the "cooked" vblank count value that represents the number of
845 * vblank events since the system was booted, including lost events due to
846 * modesetting activity. Returns corresponding system timestamp of the time
Daniel Vetterf5752b32014-05-08 16:41:51 +0200847 * of the vblank interval that corresponds to the current vblank counter value.
Mario Kleiner27641c32010-10-23 04:20:23 +0200848 */
849u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
850 struct timeval *vblanktime)
851{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300852 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Mario Kleiner27641c32010-10-23 04:20:23 +0200853 u32 cur_vblank;
854
855 /* Read timestamp from slot of _vblank_time ringbuffer
856 * that corresponds to current vblank count. Retry if
857 * count has incremented during readout. This works like
858 * a seqlock.
859 */
860 do {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300861 cur_vblank = atomic_read(&vblank->count);
Mario Kleiner27641c32010-10-23 04:20:23 +0200862 *vblanktime = vblanktimestamp(dev, crtc, cur_vblank);
863 smp_rmb();
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300864 } while (cur_vblank != atomic_read(&vblank->count));
Mario Kleiner27641c32010-10-23 04:20:23 +0200865
866 return cur_vblank;
867}
868EXPORT_SYMBOL(drm_vblank_count_and_time);
869
Rob Clarkc6eefa12012-10-16 22:48:40 +0000870static void send_vblank_event(struct drm_device *dev,
871 struct drm_pending_vblank_event *e,
872 unsigned long seq, struct timeval *now)
873{
874 WARN_ON_SMP(!spin_is_locked(&dev->event_lock));
875 e->event.sequence = seq;
876 e->event.tv_sec = now->tv_sec;
877 e->event.tv_usec = now->tv_usec;
878
879 list_add_tail(&e->base.link,
880 &e->base.file_priv->event_list);
881 wake_up_interruptible(&e->base.file_priv->event_wait);
882 trace_drm_vblank_event_delivered(e->base.pid, e->pipe,
883 e->event.sequence);
884}
885
886/**
887 * drm_send_vblank_event - helper to send vblank event after pageflip
888 * @dev: DRM device
889 * @crtc: CRTC in question
890 * @e: the event to send
891 *
892 * Updates sequence # and timestamp on event, and sends it to userspace.
893 * Caller must hold event lock.
894 */
895void drm_send_vblank_event(struct drm_device *dev, int crtc,
896 struct drm_pending_vblank_event *e)
897{
898 struct timeval now;
899 unsigned int seq;
900 if (crtc >= 0) {
901 seq = drm_vblank_count_and_time(dev, crtc, &now);
902 } else {
903 seq = 0;
Imre Deakc61eef72012-10-23 18:53:26 +0000904
905 now = get_drm_timestamp();
Rob Clarkc6eefa12012-10-16 22:48:40 +0000906 }
Rob Clark21a245d2012-12-10 10:49:46 -0600907 e->pipe = crtc;
Rob Clarkc6eefa12012-10-16 22:48:40 +0000908 send_vblank_event(dev, e, seq, &now);
909}
910EXPORT_SYMBOL(drm_send_vblank_event);
911
Mario Kleiner27641c32010-10-23 04:20:23 +0200912/**
Ville Syrjäläf2752282014-02-19 21:29:49 +0200913 * drm_vblank_enable - enable the vblank interrupt on a CRTC
914 * @dev: DRM device
915 * @crtc: CRTC in question
916 */
917static int drm_vblank_enable(struct drm_device *dev, int crtc)
918{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300919 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Ville Syrjäläf2752282014-02-19 21:29:49 +0200920 int ret = 0;
921
922 assert_spin_locked(&dev->vbl_lock);
923
924 spin_lock(&dev->vblank_time_lock);
925
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300926 if (!vblank->enabled) {
Daniel Vetter1cfb80b2014-05-21 15:11:33 +0200927 /*
928 * Enable vblank irqs under vblank_time_lock protection.
Ville Syrjäläf2752282014-02-19 21:29:49 +0200929 * All vblank count & timestamp updates are held off
930 * until we are done reinitializing master counter and
931 * timestamps. Filtercode in drm_handle_vblank() will
932 * prevent double-accounting of same vblank interval.
933 */
934 ret = dev->driver->enable_vblank(dev, crtc);
935 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n", crtc, ret);
936 if (ret)
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300937 atomic_dec(&vblank->refcount);
Ville Syrjäläf2752282014-02-19 21:29:49 +0200938 else {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300939 vblank->enabled = true;
Ville Syrjäläf2752282014-02-19 21:29:49 +0200940 drm_update_vblank_count(dev, crtc);
941 }
942 }
943
944 spin_unlock(&dev->vblank_time_lock);
945
946 return ret;
947}
948
949/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700950 * drm_vblank_get - get a reference count on vblank events
951 * @dev: DRM device
952 * @crtc: which CRTC to own
953 *
954 * Acquire a reference count on vblank events to avoid having them disabled
955 * while in use.
956 *
Daniel Vetter89dd6a42014-05-15 15:32:12 +0200957 * This is the legacy version of drm_crtc_vblank_get().
958 *
Daniel Vetterf5752b32014-05-08 16:41:51 +0200959 * Returns:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700960 * Zero on success, nonzero on failure.
961 */
962int drm_vblank_get(struct drm_device *dev, int crtc)
963{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300964 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Peter Hurley97cbc882013-08-20 21:51:12 -0400965 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700966 int ret = 0;
967
968 spin_lock_irqsave(&dev->vbl_lock, irqflags);
969 /* Going from 0->1 means we have to enable interrupts again */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300970 if (atomic_add_return(1, &vblank->refcount) == 1) {
Ville Syrjäläf2752282014-02-19 21:29:49 +0200971 ret = drm_vblank_enable(dev, crtc);
Li Peng778c9022009-11-09 12:51:22 +0800972 } else {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300973 if (!vblank->enabled) {
974 atomic_dec(&vblank->refcount);
Li Peng778c9022009-11-09 12:51:22 +0800975 ret = -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700976 }
977 }
978 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
979
980 return ret;
981}
982EXPORT_SYMBOL(drm_vblank_get);
983
984/**
Daniel Vetter89dd6a42014-05-15 15:32:12 +0200985 * drm_crtc_vblank_get - get a reference count on vblank events
986 * @crtc: which CRTC to own
987 *
988 * Acquire a reference count on vblank events to avoid having them disabled
989 * while in use.
990 *
991 * This is the native kms version of drm_vblank_off().
992 *
993 * Returns:
994 * Zero on success, nonzero on failure.
995 */
996int drm_crtc_vblank_get(struct drm_crtc *crtc)
997{
998 return drm_vblank_get(crtc->dev, drm_crtc_index(crtc));
999}
1000EXPORT_SYMBOL(drm_crtc_vblank_get);
1001
1002/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001003 * drm_vblank_put - give up ownership of vblank events
1004 * @dev: DRM device
1005 * @crtc: which counter to give up
1006 *
1007 * Release ownership of a given vblank counter, turning off interrupts
Mario Kleiner27641c32010-10-23 04:20:23 +02001008 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001009 *
1010 * This is the legacy version of drm_crtc_vblank_put().
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001011 */
1012void drm_vblank_put(struct drm_device *dev, int crtc)
1013{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001014 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
1015
1016 BUG_ON(atomic_read(&vblank->refcount) == 0);
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001017
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001018 /* Last user schedules interrupt disable */
Ville Syrjälä4ed0ce32014-08-06 14:49:53 +03001019 if (atomic_dec_and_test(&vblank->refcount)) {
Daniel Vetterab8905f2014-09-10 17:36:08 +02001020 if (drm_vblank_offdelay == 0)
1021 return;
1022 else if (dev->vblank_disable_immediate || drm_vblank_offdelay < 0)
Ville Syrjälä4ed0ce32014-08-06 14:49:53 +03001023 vblank_disable_fn((unsigned long)vblank);
Daniel Vetterab8905f2014-09-10 17:36:08 +02001024 else
Ville Syrjälä4ed0ce32014-08-06 14:49:53 +03001025 mod_timer(&vblank->disable_timer,
1026 jiffies + ((drm_vblank_offdelay * HZ)/1000));
1027 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001028}
1029EXPORT_SYMBOL(drm_vblank_put);
1030
Rob Clarkc6eefa12012-10-16 22:48:40 +00001031/**
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001032 * drm_crtc_vblank_put - give up ownership of vblank events
1033 * @crtc: which counter to give up
1034 *
1035 * Release ownership of a given vblank counter, turning off interrupts
1036 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
1037 *
1038 * This is the native kms version of drm_vblank_put().
1039 */
1040void drm_crtc_vblank_put(struct drm_crtc *crtc)
1041{
1042 drm_vblank_put(crtc->dev, drm_crtc_index(crtc));
1043}
1044EXPORT_SYMBOL(drm_crtc_vblank_put);
1045
1046/**
Rob Clarkc6eefa12012-10-16 22:48:40 +00001047 * drm_vblank_off - disable vblank events on a CRTC
1048 * @dev: DRM device
1049 * @crtc: CRTC in question
1050 *
Daniel Vetterf5752b32014-05-08 16:41:51 +02001051 * Drivers can use this function to shut down the vblank interrupt handling when
1052 * disabling a crtc. This function ensures that the latest vblank frame count is
1053 * stored so that drm_vblank_on() can restore it again.
1054 *
1055 * Drivers must use this function when the hardware vblank counter can get
1056 * reset, e.g. when suspending.
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001057 *
1058 * This is the legacy version of drm_crtc_vblank_off().
Rob Clarkc6eefa12012-10-16 22:48:40 +00001059 */
Li Peng778c9022009-11-09 12:51:22 +08001060void drm_vblank_off(struct drm_device *dev, int crtc)
1061{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001062 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001063 struct drm_pending_vblank_event *e, *t;
1064 struct timeval now;
Li Peng778c9022009-11-09 12:51:22 +08001065 unsigned long irqflags;
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001066 unsigned int seq;
Li Peng778c9022009-11-09 12:51:22 +08001067
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001068 spin_lock_irqsave(&dev->event_lock, irqflags);
1069
1070 spin_lock(&dev->vbl_lock);
Mario Kleiner27641c32010-10-23 04:20:23 +02001071 vblank_disable_and_save(dev, crtc);
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001072 wake_up(&vblank->queue);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001073
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001074 /*
1075 * Prevent subsequent drm_vblank_get() from re-enabling
1076 * the vblank interrupt by bumping the refcount.
1077 */
1078 if (!vblank->inmodeset) {
1079 atomic_inc(&vblank->refcount);
1080 vblank->inmodeset = 1;
1081 }
1082 spin_unlock(&dev->vbl_lock);
1083
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001084 /* Send any queued vblank events, lest the natives grow disquiet */
1085 seq = drm_vblank_count_and_time(dev, crtc, &now);
Imre Deake7783ba2012-11-02 13:30:50 +02001086
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001087 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
1088 if (e->pipe != crtc)
1089 continue;
1090 DRM_DEBUG("Sending premature vblank event on disable: \
1091 wanted %d, current %d\n",
1092 e->event.sequence, seq);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001093 list_del(&e->base.link);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001094 drm_vblank_put(dev, e->pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001095 send_vblank_event(dev, e, seq, &now);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001096 }
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001097 spin_unlock_irqrestore(&dev->event_lock, irqflags);
Li Peng778c9022009-11-09 12:51:22 +08001098}
1099EXPORT_SYMBOL(drm_vblank_off);
1100
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001101/**
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001102 * drm_crtc_vblank_off - disable vblank events on a CRTC
1103 * @crtc: CRTC in question
1104 *
1105 * Drivers can use this function to shut down the vblank interrupt handling when
1106 * disabling a crtc. This function ensures that the latest vblank frame count is
1107 * stored so that drm_vblank_on can restore it again.
1108 *
1109 * Drivers must use this function when the hardware vblank counter can get
1110 * reset, e.g. when suspending.
1111 *
1112 * This is the native kms version of drm_vblank_off().
1113 */
1114void drm_crtc_vblank_off(struct drm_crtc *crtc)
1115{
1116 drm_vblank_off(crtc->dev, drm_crtc_index(crtc));
1117}
1118EXPORT_SYMBOL(drm_crtc_vblank_off);
1119
1120/**
Ville Syrjäläf2752282014-02-19 21:29:49 +02001121 * drm_vblank_on - enable vblank events on a CRTC
1122 * @dev: DRM device
1123 * @crtc: CRTC in question
Daniel Vetterf5752b32014-05-08 16:41:51 +02001124 *
1125 * This functions restores the vblank interrupt state captured with
1126 * drm_vblank_off() again. Note that calls to drm_vblank_on() and
1127 * drm_vblank_off() can be unbalanced and so can also be unconditionaly called
1128 * in driver load code to reflect the current hardware state of the crtc.
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001129 *
1130 * This is the legacy version of drm_crtc_vblank_on().
Ville Syrjäläf2752282014-02-19 21:29:49 +02001131 */
1132void drm_vblank_on(struct drm_device *dev, int crtc)
1133{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001134 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Ville Syrjäläf2752282014-02-19 21:29:49 +02001135 unsigned long irqflags;
1136
1137 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Ville Syrjälä7ffd7a62014-08-06 14:49:44 +03001138 /* Drop our private "prevent drm_vblank_get" refcount */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001139 if (vblank->inmodeset) {
1140 atomic_dec(&vblank->refcount);
1141 vblank->inmodeset = 0;
Ville Syrjälä7ffd7a62014-08-06 14:49:44 +03001142 }
Ville Syrjäläf8ad0282014-08-06 14:49:49 +03001143
1144 /*
1145 * sample the current counter to avoid random jumps
1146 * when drm_vblank_enable() applies the diff
1147 *
1148 * -1 to make sure user will never see the same
1149 * vblank counter value before and after a modeset
1150 */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001151 vblank->last =
Ville Syrjäläf8ad0282014-08-06 14:49:49 +03001152 (dev->driver->get_vblank_counter(dev, crtc) - 1) &
1153 dev->max_vblank_count;
Ville Syrjäläcd19e522014-08-06 14:49:56 +03001154 /*
1155 * re-enable interrupts if there are users left, or the
1156 * user wishes vblank interrupts to be enabled all the time.
1157 */
1158 if (atomic_read(&vblank->refcount) != 0 ||
1159 (!dev->vblank_disable_immediate && drm_vblank_offdelay == 0))
Ville Syrjäläf2752282014-02-19 21:29:49 +02001160 WARN_ON(drm_vblank_enable(dev, crtc));
1161 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
1162}
1163EXPORT_SYMBOL(drm_vblank_on);
1164
1165/**
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001166 * drm_crtc_vblank_on - enable vblank events on a CRTC
1167 * @crtc: CRTC in question
1168 *
1169 * This functions restores the vblank interrupt state captured with
1170 * drm_vblank_off() again. Note that calls to drm_vblank_on() and
1171 * drm_vblank_off() can be unbalanced and so can also be unconditionaly called
1172 * in driver load code to reflect the current hardware state of the crtc.
1173 *
1174 * This is the native kms version of drm_vblank_on().
1175 */
1176void drm_crtc_vblank_on(struct drm_crtc *crtc)
1177{
1178 drm_vblank_on(crtc->dev, drm_crtc_index(crtc));
1179}
1180EXPORT_SYMBOL(drm_crtc_vblank_on);
1181
1182/**
Dave Airlief453ba02008-11-07 14:05:41 -08001183 * drm_vblank_pre_modeset - account for vblanks across mode sets
1184 * @dev: DRM device
1185 * @crtc: CRTC in question
Dave Airlief453ba02008-11-07 14:05:41 -08001186 *
1187 * Account for vblank events across mode setting events, which will likely
1188 * reset the hardware frame counter.
Daniel Vetterf5752b32014-05-08 16:41:51 +02001189 *
1190 * This is done by grabbing a temporary vblank reference to ensure that the
1191 * vblank interrupt keeps running across the modeset sequence. With this the
1192 * software-side vblank frame counting will ensure that there are no jumps or
1193 * discontinuities.
1194 *
1195 * Unfortunately this approach is racy and also doesn't work when the vblank
1196 * interrupt stops running, e.g. across system suspend resume. It is therefore
1197 * highly recommended that drivers use the newer drm_vblank_off() and
1198 * drm_vblank_on() instead. drm_vblank_pre_modeset() only works correctly when
1199 * using "cooked" software vblank frame counters and not relying on any hardware
1200 * counters.
1201 *
1202 * Drivers must call drm_vblank_post_modeset() when re-enabling the same crtc
1203 * again.
Dave Airlief453ba02008-11-07 14:05:41 -08001204 */
1205void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
1206{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001207 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
1208
Huacai Chenb7ea85a42013-05-21 06:23:43 +00001209 /* vblank is not initialized (IRQ not installed ?), or has been freed */
Jerome Glissee77cef92010-01-07 15:39:13 +01001210 if (!dev->num_crtcs)
1211 return;
Dave Airlief453ba02008-11-07 14:05:41 -08001212 /*
1213 * To avoid all the problems that might happen if interrupts
1214 * were enabled/disabled around or between these calls, we just
1215 * have the kernel take a reference on the CRTC (just once though
1216 * to avoid corrupting the count if multiple, mismatch calls occur),
1217 * so that interrupts remain enabled in the interim.
1218 */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001219 if (!vblank->inmodeset) {
1220 vblank->inmodeset = 0x1;
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001221 if (drm_vblank_get(dev, crtc) == 0)
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001222 vblank->inmodeset |= 0x2;
Dave Airlief453ba02008-11-07 14:05:41 -08001223 }
1224}
1225EXPORT_SYMBOL(drm_vblank_pre_modeset);
1226
Daniel Vetterf5752b32014-05-08 16:41:51 +02001227/**
1228 * drm_vblank_post_modeset - undo drm_vblank_pre_modeset changes
1229 * @dev: DRM device
1230 * @crtc: CRTC in question
1231 *
1232 * This function again drops the temporary vblank reference acquired in
1233 * drm_vblank_pre_modeset.
1234 */
Dave Airlief453ba02008-11-07 14:05:41 -08001235void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
1236{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001237 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Dave Airlief453ba02008-11-07 14:05:41 -08001238 unsigned long irqflags;
1239
Huacai Chenb7ea85a42013-05-21 06:23:43 +00001240 /* vblank is not initialized (IRQ not installed ?), or has been freed */
1241 if (!dev->num_crtcs)
1242 return;
1243
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001244 if (vblank->inmodeset) {
Dave Airlief453ba02008-11-07 14:05:41 -08001245 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Ville Syrjäläba0bf122013-10-04 14:53:33 +03001246 dev->vblank_disable_allowed = true;
Dave Airlief453ba02008-11-07 14:05:41 -08001247 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001248
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001249 if (vblank->inmodeset & 0x2)
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001250 drm_vblank_put(dev, crtc);
1251
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001252 vblank->inmodeset = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001253 }
1254}
1255EXPORT_SYMBOL(drm_vblank_post_modeset);
1256
Daniel Vetterf5752b32014-05-08 16:41:51 +02001257/*
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001258 * drm_modeset_ctl - handle vblank event counter changes across mode switch
1259 * @DRM_IOCTL_ARGS: standard ioctl arguments
1260 *
1261 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
1262 * ioctls around modesetting so that any lost vblank events are accounted for.
1263 *
1264 * Generally the counter will reset across mode sets. If interrupts are
1265 * enabled around this call, we don't have to do anything since the counter
1266 * will have already been incremented.
1267 */
1268int drm_modeset_ctl(struct drm_device *dev, void *data,
1269 struct drm_file *file_priv)
1270{
1271 struct drm_modeset_ctl *modeset = data;
Dave Airlie19227562011-02-24 08:35:06 +10001272 unsigned int crtc;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001273
1274 /* If drm_vblank_init() hasn't been called yet, just no-op */
1275 if (!dev->num_crtcs)
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001276 return 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001277
Laurent Pinchart29935552012-05-30 00:58:09 +02001278 /* KMS drivers handle this internally */
1279 if (drm_core_check_feature(dev, DRIVER_MODESET))
1280 return 0;
1281
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001282 crtc = modeset->crtc;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001283 if (crtc >= dev->num_crtcs)
1284 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001285
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001286 switch (modeset->cmd) {
1287 case _DRM_PRE_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001288 drm_vblank_pre_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001289 break;
1290 case _DRM_POST_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001291 drm_vblank_post_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001292 break;
1293 default:
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001294 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001295 }
1296
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001297 return 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001298}
1299
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001300static int drm_queue_vblank_event(struct drm_device *dev, int pipe,
1301 union drm_wait_vblank *vblwait,
1302 struct drm_file *file_priv)
1303{
Ville Syrjäläffe7c732014-08-06 14:49:52 +03001304 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001305 struct drm_pending_vblank_event *e;
1306 struct timeval now;
1307 unsigned long flags;
1308 unsigned int seq;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001309 int ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001310
1311 e = kzalloc(sizeof *e, GFP_KERNEL);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001312 if (e == NULL) {
1313 ret = -ENOMEM;
1314 goto err_put;
1315 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001316
1317 e->pipe = pipe;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001318 e->base.pid = current->pid;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001319 e->event.base.type = DRM_EVENT_VBLANK;
1320 e->event.base.length = sizeof e->event;
1321 e->event.user_data = vblwait->request.signal;
1322 e->base.event = &e->event.base;
1323 e->base.file_priv = file_priv;
1324 e->base.destroy = (void (*) (struct drm_pending_event *)) kfree;
1325
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001326 spin_lock_irqsave(&dev->event_lock, flags);
1327
Ville Syrjäläffe7c732014-08-06 14:49:52 +03001328 /*
1329 * drm_vblank_off() might have been called after we called
1330 * drm_vblank_get(). drm_vblank_off() holds event_lock
1331 * around the vblank disable, so no need for further locking.
1332 * The reference from drm_vblank_get() protects against
1333 * vblank disable from another source.
1334 */
1335 if (!vblank->enabled) {
1336 ret = -EINVAL;
1337 goto err_unlock;
1338 }
1339
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001340 if (file_priv->event_space < sizeof e->event) {
Chris Wilsonea5d5522010-12-01 19:41:31 +00001341 ret = -EBUSY;
1342 goto err_unlock;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001343 }
1344
1345 file_priv->event_space -= sizeof e->event;
Mario Kleiner27641c32010-10-23 04:20:23 +02001346 seq = drm_vblank_count_and_time(dev, pipe, &now);
1347
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001348 if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) &&
1349 (seq - vblwait->request.sequence) <= (1 << 23)) {
1350 vblwait->request.sequence = seq + 1;
Jesse Barnes4a921642009-11-10 08:21:25 +00001351 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001352 }
1353
1354 DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n",
1355 vblwait->request.sequence, seq, pipe);
1356
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001357 trace_drm_vblank_event_queued(current->pid, pipe,
1358 vblwait->request.sequence);
1359
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001360 e->event.sequence = vblwait->request.sequence;
1361 if ((seq - vblwait->request.sequence) <= (1 << 23)) {
Dan Carpenter6f331622010-12-09 08:35:40 +03001362 drm_vblank_put(dev, pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001363 send_vblank_event(dev, e, seq, &now);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001364 vblwait->reply.sequence = seq;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001365 } else {
Ilija Hadzica6778e92011-10-31 13:11:57 -04001366 /* drm_handle_vblank_events will call drm_vblank_put */
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001367 list_add_tail(&e->base.link, &dev->vblank_event_list);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001368 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001369 }
1370
1371 spin_unlock_irqrestore(&dev->event_lock, flags);
1372
1373 return 0;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001374
1375err_unlock:
1376 spin_unlock_irqrestore(&dev->event_lock, flags);
1377 kfree(e);
1378err_put:
Dan Carpenter6f331622010-12-09 08:35:40 +03001379 drm_vblank_put(dev, pipe);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001380 return ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001381}
1382
Daniel Vetterf5752b32014-05-08 16:41:51 +02001383/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 * Wait for VBLANK.
1385 *
1386 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +10001387 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 * \param cmd command.
1389 * \param data user argument, pointing to a drm_wait_vblank structure.
1390 * \return zero on success or a negative number on failure.
1391 *
Eric Anholt30b23632009-01-27 21:19:41 -08001392 * This function enables the vblank interrupt on the pipe requested, then
1393 * sleeps waiting for the requested sequence number to occur, and drops
Daniel Vetterf5752b32014-05-08 16:41:51 +02001394 * the vblank interrupt refcount afterwards. (vblank IRQ disable follows that
Eric Anholt30b23632009-01-27 21:19:41 -08001395 * after a timeout with no further vblank waits scheduled).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001397int drm_wait_vblank(struct drm_device *dev, void *data,
1398 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001400 struct drm_vblank_crtc *vblank;
Eric Anholtc153f452007-09-03 12:06:45 +10001401 union drm_wait_vblank *vblwait = data;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001402 int ret;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001403 unsigned int flags, seq, crtc, high_crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Daniel Vetter49849792013-08-28 15:02:37 +02001405 if (!dev->irq_enabled)
1406 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Eric Anholt30b23632009-01-27 21:19:41 -08001408 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
1409 return -EINVAL;
1410
Eric Anholtc153f452007-09-03 12:06:45 +10001411 if (vblwait->request.type &
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001412 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1413 _DRM_VBLANK_HIGH_CRTC_MASK)) {
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001414 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001415 vblwait->request.type,
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001416 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1417 _DRM_VBLANK_HIGH_CRTC_MASK));
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001418 return -EINVAL;
1419 }
1420
Eric Anholtc153f452007-09-03 12:06:45 +10001421 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001422 high_crtc = (vblwait->request.type & _DRM_VBLANK_HIGH_CRTC_MASK);
1423 if (high_crtc)
1424 crtc = high_crtc >> _DRM_VBLANK_HIGH_CRTC_SHIFT;
1425 else
1426 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001427 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001428 return -EINVAL;
1429
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001430 vblank = &dev->vblank[crtc];
1431
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001432 ret = drm_vblank_get(dev, crtc);
1433 if (ret) {
Paul Rolland8d3457e2009-08-09 12:24:01 +10001434 DRM_DEBUG("failed to acquire vblank counter, %d\n", ret);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001435 return ret;
1436 }
1437 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001438
Eric Anholtc153f452007-09-03 12:06:45 +10001439 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +10001441 vblwait->request.sequence += seq;
1442 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 case _DRM_VBLANK_ABSOLUTE:
1444 break;
1445 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001446 ret = -EINVAL;
1447 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449
Ilija Hadzica6778e92011-10-31 13:11:57 -04001450 if (flags & _DRM_VBLANK_EVENT) {
1451 /* must hold on to the vblank ref until the event fires
1452 * drm_vblank_put will be called asynchronously
1453 */
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001454 return drm_queue_vblank_event(dev, crtc, vblwait, file_priv);
Ilija Hadzica6778e92011-10-31 13:11:57 -04001455 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001456
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001457 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +10001458 (seq - vblwait->request.sequence) <= (1<<23)) {
1459 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001460 }
1461
Eric Anholt30b23632009-01-27 21:19:41 -08001462 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
1463 vblwait->request.sequence, crtc);
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001464 vblank->last_wait = vblwait->request.sequence;
1465 DRM_WAIT_ON(ret, vblank->queue, 3 * HZ,
Eric Anholt30b23632009-01-27 21:19:41 -08001466 (((drm_vblank_count(dev, crtc) -
1467 vblwait->request.sequence) <= (1 << 23)) ||
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001468 !vblank->enabled ||
Eric Anholt30b23632009-01-27 21:19:41 -08001469 !dev->irq_enabled));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Eric Anholt30b23632009-01-27 21:19:41 -08001471 if (ret != -EINTR) {
1472 struct timeval now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Mario Kleiner27641c32010-10-23 04:20:23 +02001474 vblwait->reply.sequence = drm_vblank_count_and_time(dev, crtc, &now);
Eric Anholt30b23632009-01-27 21:19:41 -08001475 vblwait->reply.tval_sec = now.tv_sec;
1476 vblwait->reply.tval_usec = now.tv_usec;
Mario Kleiner27641c32010-10-23 04:20:23 +02001477
Eric Anholt30b23632009-01-27 21:19:41 -08001478 DRM_DEBUG("returning %d to client\n",
1479 vblwait->reply.sequence);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 } else {
Eric Anholt30b23632009-01-27 21:19:41 -08001481 DRM_DEBUG("vblank wait interrupted by signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001484done:
1485 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return ret;
1487}
1488
Sachin Kamatea7f7ab2012-08-01 17:15:31 +05301489static void drm_handle_vblank_events(struct drm_device *dev, int crtc)
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001490{
1491 struct drm_pending_vblank_event *e, *t;
1492 struct timeval now;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001493 unsigned int seq;
1494
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001495 assert_spin_locked(&dev->event_lock);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001496
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001497 seq = drm_vblank_count_and_time(dev, crtc, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001498
1499 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
1500 if (e->pipe != crtc)
1501 continue;
1502 if ((seq - e->event.sequence) > (1<<23))
1503 continue;
1504
1505 DRM_DEBUG("vblank event on %d, current %d\n",
1506 e->event.sequence, seq);
1507
Rob Clarkc6eefa12012-10-16 22:48:40 +00001508 list_del(&e->base.link);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001509 drm_vblank_put(dev, e->pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001510 send_vblank_event(dev, e, seq, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001511 }
1512
Jesse Barnesac2874b2010-07-01 16:47:31 -07001513 trace_drm_vblank_event(crtc, seq);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001514}
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001517 * drm_handle_vblank - handle a vblank event
1518 * @dev: DRM device
1519 * @crtc: where this event occurred
1520 *
1521 * Drivers should call this routine in their vblank interrupt handlers to
1522 * update the vblank counter and send any signals that may be pending.
1523 */
Chris Wilson78c6e172011-01-31 10:48:04 +00001524bool drm_handle_vblank(struct drm_device *dev, int crtc)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001525{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001526 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Mario Kleiner27641c32010-10-23 04:20:23 +02001527 u32 vblcount;
1528 s64 diff_ns;
1529 struct timeval tvblank;
1530 unsigned long irqflags;
1531
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001532 if (!dev->num_crtcs)
Chris Wilson78c6e172011-01-31 10:48:04 +00001533 return false;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001534
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001535 spin_lock_irqsave(&dev->event_lock, irqflags);
1536
Mario Kleiner27641c32010-10-23 04:20:23 +02001537 /* Need timestamp lock to prevent concurrent execution with
1538 * vblank enable/disable, as this would cause inconsistent
1539 * or corrupted timestamps and vblank counts.
1540 */
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001541 spin_lock(&dev->vblank_time_lock);
Mario Kleiner27641c32010-10-23 04:20:23 +02001542
1543 /* Vblank irq handling disabled. Nothing to do. */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001544 if (!vblank->enabled) {
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001545 spin_unlock(&dev->vblank_time_lock);
1546 spin_unlock_irqrestore(&dev->event_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001547 return false;
Mario Kleiner27641c32010-10-23 04:20:23 +02001548 }
1549
1550 /* Fetch corresponding timestamp for this vblank interval from
1551 * driver and store it in proper slot of timestamp ringbuffer.
1552 */
1553
1554 /* Get current timestamp and count. */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001555 vblcount = atomic_read(&vblank->count);
Mario Kleiner27641c32010-10-23 04:20:23 +02001556 drm_get_last_vbltimestamp(dev, crtc, &tvblank, DRM_CALLED_FROM_VBLIRQ);
1557
1558 /* Compute time difference to timestamp of last vblank */
1559 diff_ns = timeval_to_ns(&tvblank) -
1560 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
1561
1562 /* Update vblank timestamp and count if at least
1563 * DRM_REDUNDANT_VBLIRQ_THRESH_NS nanoseconds
1564 * difference between last stored timestamp and current
1565 * timestamp. A smaller difference means basically
1566 * identical timestamps. Happens if this vblank has
1567 * been already processed and this is a redundant call,
1568 * e.g., due to spurious vblank interrupts. We need to
1569 * ignore those for accounting.
1570 */
Mario Kleinerc4cc3832011-02-21 05:42:00 +01001571 if (abs64(diff_ns) > DRM_REDUNDANT_VBLIRQ_THRESH_NS) {
Mario Kleiner27641c32010-10-23 04:20:23 +02001572 /* Store new timestamp in ringbuffer. */
1573 vblanktimestamp(dev, crtc, vblcount + 1) = tvblank;
Mario Kleiner27641c32010-10-23 04:20:23 +02001574
1575 /* Increment cooked vblank count. This also atomically commits
1576 * the timestamp computed above.
1577 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001578 smp_mb__before_atomic();
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001579 atomic_inc(&vblank->count);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001580 smp_mb__after_atomic();
Mario Kleiner27641c32010-10-23 04:20:23 +02001581 } else {
1582 DRM_DEBUG("crtc %d: Redundant vblirq ignored. diff_ns = %d\n",
1583 crtc, (int) diff_ns);
1584 }
1585
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001586 spin_unlock(&dev->vblank_time_lock);
1587
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001588 wake_up(&vblank->queue);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001589 drm_handle_vblank_events(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +02001590
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001591 spin_unlock_irqrestore(&dev->event_lock, irqflags);
1592
Chris Wilson78c6e172011-01-31 10:48:04 +00001593 return true;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001594}
1595EXPORT_SYMBOL(drm_handle_vblank);