blob: 034297640b48ba5c7f18e92b00f35e5587cd7b90 [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 Gleixner935f6e3a2006-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 struct timeval tv_etime;
Thomas Gleixnerd2cb58c2014-07-16 21:04:26 +0000643 ktime_t stime, 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 Kleiner27641c32010-10-23 04:20:23 +0200688 /* Return as no-op if scanout query unsupported or failed. */
689 if (!(vbl_status & DRM_SCANOUTPOS_VALID)) {
690 DRM_DEBUG("crtc %d : scanoutpos query failed [%d].\n",
691 crtc, vbl_status);
692 return -EIO;
693 }
694
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100695 /* Compute uncertainty in timestamp of scanout position query. */
Imre Deake62f2f52012-10-23 18:53:25 +0000696 duration_ns = ktime_to_ns(etime) - ktime_to_ns(stime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200697
698 /* Accept result with < max_error nsecs timing uncertainty. */
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300699 if (duration_ns <= *max_error)
Mario Kleiner27641c32010-10-23 04:20:23 +0200700 break;
701 }
702
703 /* Noisy system timing? */
704 if (i == DRM_TIMESTAMP_MAXRETRIES) {
705 DRM_DEBUG("crtc %d: Noisy timestamp %d us > %d us [%d reps].\n",
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300706 crtc, duration_ns/1000, *max_error/1000, i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200707 }
708
709 /* Return upper bound of timestamp precision error. */
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300710 *max_error = duration_ns;
Mario Kleiner27641c32010-10-23 04:20:23 +0200711
712 /* Check if in vblank area:
713 * vpos is >=0 in video scanout area, but negative
714 * within vblank area, counting down the number of lines until
715 * start of scanout.
716 */
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200717 invbl = vbl_status & DRM_SCANOUTPOS_IN_VBLANK;
Mario Kleiner27641c32010-10-23 04:20:23 +0200718
719 /* Convert scanout position into elapsed time at raw_time query
720 * since start of scanout at first display scanline. delta_ns
721 * can be negative if start of scanout hasn't happened yet.
722 */
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300723 delta_ns = vpos * linedur_ns + hpos * pixeldur_ns;
Mario Kleiner27641c32010-10-23 04:20:23 +0200724
Imre Deakc61eef72012-10-23 18:53:26 +0000725 if (!drm_timestamp_monotonic)
Thomas Gleixnerd2cb58c2014-07-16 21:04:26 +0000726 etime = ktime_mono_to_real(etime);
Imre Deakc61eef72012-10-23 18:53:26 +0000727
Imre Deake62f2f52012-10-23 18:53:25 +0000728 /* save this only for debugging purposes */
729 tv_etime = ktime_to_timeval(etime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200730 /* Subtract time delta from raw timestamp to get final
731 * vblank_time timestamp for end of vblank.
732 */
Michel Dänzere91abf82013-06-12 11:58:44 +0200733 if (delta_ns < 0)
734 etime = ktime_add_ns(etime, -delta_ns);
735 else
736 etime = ktime_sub_ns(etime, delta_ns);
Imre Deake62f2f52012-10-23 18:53:25 +0000737 *vblank_time = ktime_to_timeval(etime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200738
Joe Perchesbbb0aef52011-04-17 20:35:52 -0700739 DRM_DEBUG("crtc %d : v %d p(%d,%d)@ %ld.%ld -> %ld.%ld [e %d us, %d rep]\n",
740 crtc, (int)vbl_status, hpos, vpos,
Imre Deake62f2f52012-10-23 18:53:25 +0000741 (long)tv_etime.tv_sec, (long)tv_etime.tv_usec,
Joe Perchesbbb0aef52011-04-17 20:35:52 -0700742 (long)vblank_time->tv_sec, (long)vblank_time->tv_usec,
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300743 duration_ns/1000, i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200744
745 vbl_status = DRM_VBLANKTIME_SCANOUTPOS_METHOD;
746 if (invbl)
Daniel Vetter3d3cbd82014-09-10 17:36:11 +0200747 vbl_status |= DRM_VBLANKTIME_IN_VBLANK;
Mario Kleiner27641c32010-10-23 04:20:23 +0200748
749 return vbl_status;
750}
751EXPORT_SYMBOL(drm_calc_vbltimestamp_from_scanoutpos);
752
Imre Deakc61eef72012-10-23 18:53:26 +0000753static struct timeval get_drm_timestamp(void)
754{
755 ktime_t now;
756
Thomas Gleixnerd2cb58c2014-07-16 21:04:26 +0000757 now = drm_timestamp_monotonic ? ktime_get() : ktime_get_real();
Imre Deakc61eef72012-10-23 18:53:26 +0000758 return ktime_to_timeval(now);
759}
760
Mario Kleiner27641c32010-10-23 04:20:23 +0200761/**
762 * drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent
Daniel Vetterf5752b32014-05-08 16:41:51 +0200763 * vblank interval
Mario Kleiner27641c32010-10-23 04:20:23 +0200764 * @dev: DRM device
Daniel Vetterf5752b32014-05-08 16:41:51 +0200765 * @crtc: which CRTC's vblank timestamp to retrieve
Mario Kleiner27641c32010-10-23 04:20:23 +0200766 * @tvblank: Pointer to target struct timeval which should receive the timestamp
767 * @flags: Flags to pass to driver:
Daniel Vetterf5752b32014-05-08 16:41:51 +0200768 * 0 = Default,
769 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl IRQ handler
Mario Kleiner27641c32010-10-23 04:20:23 +0200770 *
771 * Fetches the system timestamp corresponding to the time of the most recent
Daniel Vetterf5752b32014-05-08 16:41:51 +0200772 * vblank interval on specified CRTC. May call into kms-driver to
Mario Kleiner27641c32010-10-23 04:20:23 +0200773 * compute the timestamp with a high-precision GPU specific method.
774 *
775 * Returns zero if timestamp originates from uncorrected do_gettimeofday()
776 * call, i.e., it isn't very precisely locked to the true vblank.
777 *
Daniel Vetterf5752b32014-05-08 16:41:51 +0200778 * Returns:
Daniel Vetterfb446a12014-09-10 17:36:10 +0200779 * True if timestamp is considered to be very precise, false otherwise.
Mario Kleiner27641c32010-10-23 04:20:23 +0200780 */
Daniel Vetterfb446a12014-09-10 17:36:10 +0200781static bool
782drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
783 struct timeval *tvblank, unsigned flags)
Mario Kleiner27641c32010-10-23 04:20:23 +0200784{
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200785 int ret;
Mario Kleiner27641c32010-10-23 04:20:23 +0200786
787 /* Define requested maximum error on timestamps (nanoseconds). */
788 int max_error = (int) drm_timestamp_precision * 1000;
789
790 /* Query driver if possible and precision timestamping enabled. */
791 if (dev->driver->get_vblank_timestamp && (max_error > 0)) {
792 ret = dev->driver->get_vblank_timestamp(dev, crtc, &max_error,
793 tvblank, flags);
794 if (ret > 0)
Daniel Vetterfb446a12014-09-10 17:36:10 +0200795 return true;
Mario Kleiner27641c32010-10-23 04:20:23 +0200796 }
797
798 /* GPU high precision timestamp query unsupported or failed.
Imre Deakc61eef72012-10-23 18:53:26 +0000799 * Return current monotonic/gettimeofday timestamp as best estimate.
Mario Kleiner27641c32010-10-23 04:20:23 +0200800 */
Imre Deakc61eef72012-10-23 18:53:26 +0000801 *tvblank = get_drm_timestamp();
Mario Kleiner27641c32010-10-23 04:20:23 +0200802
Daniel Vetterfb446a12014-09-10 17:36:10 +0200803 return false;
Mario Kleiner27641c32010-10-23 04:20:23 +0200804}
Mario Kleiner27641c32010-10-23 04:20:23 +0200805
806/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700807 * drm_vblank_count - retrieve "cooked" vblank counter value
808 * @dev: DRM device
809 * @crtc: which counter to retrieve
810 *
811 * Fetches the "cooked" vblank count value that represents the number of
812 * vblank events since the system was booted, including lost events due to
813 * modesetting activity.
Daniel Vetterf5752b32014-05-08 16:41:51 +0200814 *
815 * Returns:
816 * The software vblank counter.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700817 */
818u32 drm_vblank_count(struct drm_device *dev, int crtc)
819{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300820 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
821
Rob Clarke6ae8682014-08-06 13:16:59 -0400822 if (WARN_ON(crtc >= dev->num_crtcs))
823 return 0;
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300824 return atomic_read(&vblank->count);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700825}
826EXPORT_SYMBOL(drm_vblank_count);
827
828/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200829 * drm_vblank_count_and_time - retrieve "cooked" vblank counter value
830 * and the system timestamp corresponding to that vblank counter value.
831 *
832 * @dev: DRM device
833 * @crtc: which counter to retrieve
834 * @vblanktime: Pointer to struct timeval to receive the vblank timestamp.
835 *
836 * Fetches the "cooked" vblank count value that represents the number of
837 * vblank events since the system was booted, including lost events due to
838 * modesetting activity. Returns corresponding system timestamp of the time
Daniel Vetterf5752b32014-05-08 16:41:51 +0200839 * of the vblank interval that corresponds to the current vblank counter value.
Mario Kleiner27641c32010-10-23 04:20:23 +0200840 */
841u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
842 struct timeval *vblanktime)
843{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300844 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Mario Kleiner27641c32010-10-23 04:20:23 +0200845 u32 cur_vblank;
846
Rob Clarke6ae8682014-08-06 13:16:59 -0400847 if (WARN_ON(crtc >= dev->num_crtcs))
848 return 0;
849
Mario Kleiner27641c32010-10-23 04:20:23 +0200850 /* Read timestamp from slot of _vblank_time ringbuffer
851 * that corresponds to current vblank count. Retry if
852 * count has incremented during readout. This works like
853 * a seqlock.
854 */
855 do {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300856 cur_vblank = atomic_read(&vblank->count);
Mario Kleiner27641c32010-10-23 04:20:23 +0200857 *vblanktime = vblanktimestamp(dev, crtc, cur_vblank);
858 smp_rmb();
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300859 } while (cur_vblank != atomic_read(&vblank->count));
Mario Kleiner27641c32010-10-23 04:20:23 +0200860
861 return cur_vblank;
862}
863EXPORT_SYMBOL(drm_vblank_count_and_time);
864
Rob Clarkc6eefa12012-10-16 22:48:40 +0000865static void send_vblank_event(struct drm_device *dev,
866 struct drm_pending_vblank_event *e,
867 unsigned long seq, struct timeval *now)
868{
869 WARN_ON_SMP(!spin_is_locked(&dev->event_lock));
870 e->event.sequence = seq;
871 e->event.tv_sec = now->tv_sec;
872 e->event.tv_usec = now->tv_usec;
873
874 list_add_tail(&e->base.link,
875 &e->base.file_priv->event_list);
876 wake_up_interruptible(&e->base.file_priv->event_wait);
877 trace_drm_vblank_event_delivered(e->base.pid, e->pipe,
878 e->event.sequence);
879}
880
881/**
882 * drm_send_vblank_event - helper to send vblank event after pageflip
883 * @dev: DRM device
884 * @crtc: CRTC in question
885 * @e: the event to send
886 *
887 * Updates sequence # and timestamp on event, and sends it to userspace.
888 * Caller must hold event lock.
889 */
890void drm_send_vblank_event(struct drm_device *dev, int crtc,
891 struct drm_pending_vblank_event *e)
892{
893 struct timeval now;
894 unsigned int seq;
895 if (crtc >= 0) {
896 seq = drm_vblank_count_and_time(dev, crtc, &now);
897 } else {
898 seq = 0;
Imre Deakc61eef72012-10-23 18:53:26 +0000899
900 now = get_drm_timestamp();
Rob Clarkc6eefa12012-10-16 22:48:40 +0000901 }
Rob Clark21a245d2012-12-10 10:49:46 -0600902 e->pipe = crtc;
Rob Clarkc6eefa12012-10-16 22:48:40 +0000903 send_vblank_event(dev, e, seq, &now);
904}
905EXPORT_SYMBOL(drm_send_vblank_event);
906
Mario Kleiner27641c32010-10-23 04:20:23 +0200907/**
Ville Syrjäläf2752282014-02-19 21:29:49 +0200908 * drm_vblank_enable - enable the vblank interrupt on a CRTC
909 * @dev: DRM device
910 * @crtc: CRTC in question
911 */
912static int drm_vblank_enable(struct drm_device *dev, int crtc)
913{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300914 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Ville Syrjäläf2752282014-02-19 21:29:49 +0200915 int ret = 0;
916
917 assert_spin_locked(&dev->vbl_lock);
918
919 spin_lock(&dev->vblank_time_lock);
920
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300921 if (!vblank->enabled) {
Daniel Vetter1cfb80b2014-05-21 15:11:33 +0200922 /*
923 * Enable vblank irqs under vblank_time_lock protection.
Ville Syrjäläf2752282014-02-19 21:29:49 +0200924 * All vblank count & timestamp updates are held off
925 * until we are done reinitializing master counter and
926 * timestamps. Filtercode in drm_handle_vblank() will
927 * prevent double-accounting of same vblank interval.
928 */
929 ret = dev->driver->enable_vblank(dev, crtc);
930 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n", crtc, ret);
931 if (ret)
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300932 atomic_dec(&vblank->refcount);
Ville Syrjäläf2752282014-02-19 21:29:49 +0200933 else {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300934 vblank->enabled = true;
Ville Syrjäläf2752282014-02-19 21:29:49 +0200935 drm_update_vblank_count(dev, crtc);
936 }
937 }
938
939 spin_unlock(&dev->vblank_time_lock);
940
941 return ret;
942}
943
944/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700945 * drm_vblank_get - get a reference count on vblank events
946 * @dev: DRM device
947 * @crtc: which CRTC to own
948 *
949 * Acquire a reference count on vblank events to avoid having them disabled
950 * while in use.
951 *
Daniel Vetter89dd6a42014-05-15 15:32:12 +0200952 * This is the legacy version of drm_crtc_vblank_get().
953 *
Daniel Vetterf5752b32014-05-08 16:41:51 +0200954 * Returns:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700955 * Zero on success, nonzero on failure.
956 */
957int drm_vblank_get(struct drm_device *dev, int crtc)
958{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300959 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Peter Hurley97cbc882013-08-20 21:51:12 -0400960 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700961 int ret = 0;
962
Rob Clarke6ae8682014-08-06 13:16:59 -0400963 if (WARN_ON(crtc >= dev->num_crtcs))
964 return -EINVAL;
965
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700966 spin_lock_irqsave(&dev->vbl_lock, irqflags);
967 /* Going from 0->1 means we have to enable interrupts again */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300968 if (atomic_add_return(1, &vblank->refcount) == 1) {
Ville Syrjäläf2752282014-02-19 21:29:49 +0200969 ret = drm_vblank_enable(dev, crtc);
Li Peng778c9022009-11-09 12:51:22 +0800970 } else {
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +0300971 if (!vblank->enabled) {
972 atomic_dec(&vblank->refcount);
Li Peng778c9022009-11-09 12:51:22 +0800973 ret = -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700974 }
975 }
976 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
977
978 return ret;
979}
980EXPORT_SYMBOL(drm_vblank_get);
981
982/**
Daniel Vetter89dd6a42014-05-15 15:32:12 +0200983 * drm_crtc_vblank_get - get a reference count on vblank events
984 * @crtc: which CRTC to own
985 *
986 * Acquire a reference count on vblank events to avoid having them disabled
987 * while in use.
988 *
989 * This is the native kms version of drm_vblank_off().
990 *
991 * Returns:
992 * Zero on success, nonzero on failure.
993 */
994int drm_crtc_vblank_get(struct drm_crtc *crtc)
995{
996 return drm_vblank_get(crtc->dev, drm_crtc_index(crtc));
997}
998EXPORT_SYMBOL(drm_crtc_vblank_get);
999
1000/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001001 * drm_vblank_put - give up ownership of vblank events
1002 * @dev: DRM device
1003 * @crtc: which counter to give up
1004 *
1005 * Release ownership of a given vblank counter, turning off interrupts
Mario Kleiner27641c32010-10-23 04:20:23 +02001006 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001007 *
1008 * This is the legacy version of drm_crtc_vblank_put().
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001009 */
1010void drm_vblank_put(struct drm_device *dev, int crtc)
1011{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001012 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
1013
1014 BUG_ON(atomic_read(&vblank->refcount) == 0);
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001015
Rob Clarke6ae8682014-08-06 13:16:59 -04001016 if (WARN_ON(crtc >= dev->num_crtcs))
1017 return;
1018
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001019 /* Last user schedules interrupt disable */
Ville Syrjälä4ed0ce32014-08-06 14:49:53 +03001020 if (atomic_dec_and_test(&vblank->refcount)) {
Daniel Vetterab8905f2014-09-10 17:36:08 +02001021 if (drm_vblank_offdelay == 0)
1022 return;
1023 else if (dev->vblank_disable_immediate || drm_vblank_offdelay < 0)
Ville Syrjälä4ed0ce32014-08-06 14:49:53 +03001024 vblank_disable_fn((unsigned long)vblank);
Daniel Vetterab8905f2014-09-10 17:36:08 +02001025 else
Ville Syrjälä4ed0ce32014-08-06 14:49:53 +03001026 mod_timer(&vblank->disable_timer,
1027 jiffies + ((drm_vblank_offdelay * HZ)/1000));
1028 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001029}
1030EXPORT_SYMBOL(drm_vblank_put);
1031
Rob Clarkc6eefa12012-10-16 22:48:40 +00001032/**
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001033 * drm_crtc_vblank_put - give up ownership of vblank events
1034 * @crtc: which counter to give up
1035 *
1036 * Release ownership of a given vblank counter, turning off interrupts
1037 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
1038 *
1039 * This is the native kms version of drm_vblank_put().
1040 */
1041void drm_crtc_vblank_put(struct drm_crtc *crtc)
1042{
1043 drm_vblank_put(crtc->dev, drm_crtc_index(crtc));
1044}
1045EXPORT_SYMBOL(drm_crtc_vblank_put);
1046
1047/**
Daniel Vettere8450f52014-07-25 23:34:03 +02001048 * drm_wait_one_vblank - wait for one vblank
1049 * @dev: DRM device
1050 * @crtc: crtc index
1051 *
1052 * This waits for one vblank to pass on @crtc, using the irq driver interfaces.
1053 * It is a failure to call this when the vblank irq for @crtc is disabled, e.g.
1054 * due to lack of driver support or because the crtc is off.
1055 */
1056void drm_wait_one_vblank(struct drm_device *dev, int crtc)
1057{
1058 int ret;
1059 u32 last;
1060
1061 ret = drm_vblank_get(dev, crtc);
1062 if (WARN_ON(ret))
1063 return;
1064
1065 last = drm_vblank_count(dev, crtc);
1066
1067 ret = wait_event_timeout(dev->vblank[crtc].queue,
1068 last != drm_vblank_count(dev, crtc),
1069 msecs_to_jiffies(100));
1070
1071 WARN_ON(ret == 0);
1072
1073 drm_vblank_put(dev, crtc);
1074}
1075EXPORT_SYMBOL(drm_wait_one_vblank);
1076
1077/**
1078 * drm_crtc_wait_one_vblank - wait for one vblank
1079 * @crtc: DRM crtc
1080 *
1081 * This waits for one vblank to pass on @crtc, using the irq driver interfaces.
1082 * It is a failure to call this when the vblank irq for @crtc is disabled, e.g.
1083 * due to lack of driver support or because the crtc is off.
1084 */
1085void drm_crtc_wait_one_vblank(struct drm_crtc *crtc)
1086{
1087 drm_wait_one_vblank(crtc->dev, drm_crtc_index(crtc));
1088}
1089EXPORT_SYMBOL(drm_crtc_wait_one_vblank);
1090
1091/**
Rob Clarkc6eefa12012-10-16 22:48:40 +00001092 * drm_vblank_off - disable vblank events on a CRTC
1093 * @dev: DRM device
1094 * @crtc: CRTC in question
1095 *
Daniel Vetterf5752b32014-05-08 16:41:51 +02001096 * Drivers can use this function to shut down the vblank interrupt handling when
1097 * disabling a crtc. This function ensures that the latest vblank frame count is
1098 * stored so that drm_vblank_on() can restore it again.
1099 *
1100 * Drivers must use this function when the hardware vblank counter can get
1101 * reset, e.g. when suspending.
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001102 *
1103 * This is the legacy version of drm_crtc_vblank_off().
Rob Clarkc6eefa12012-10-16 22:48:40 +00001104 */
Li Peng778c9022009-11-09 12:51:22 +08001105void drm_vblank_off(struct drm_device *dev, int crtc)
1106{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001107 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001108 struct drm_pending_vblank_event *e, *t;
1109 struct timeval now;
Li Peng778c9022009-11-09 12:51:22 +08001110 unsigned long irqflags;
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001111 unsigned int seq;
Li Peng778c9022009-11-09 12:51:22 +08001112
Rob Clarke6ae8682014-08-06 13:16:59 -04001113 if (WARN_ON(crtc >= dev->num_crtcs))
1114 return;
1115
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001116 spin_lock_irqsave(&dev->event_lock, irqflags);
1117
1118 spin_lock(&dev->vbl_lock);
Mario Kleiner27641c32010-10-23 04:20:23 +02001119 vblank_disable_and_save(dev, crtc);
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001120 wake_up(&vblank->queue);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001121
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001122 /*
1123 * Prevent subsequent drm_vblank_get() from re-enabling
1124 * the vblank interrupt by bumping the refcount.
1125 */
1126 if (!vblank->inmodeset) {
1127 atomic_inc(&vblank->refcount);
1128 vblank->inmodeset = 1;
1129 }
1130 spin_unlock(&dev->vbl_lock);
1131
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001132 /* Send any queued vblank events, lest the natives grow disquiet */
1133 seq = drm_vblank_count_and_time(dev, crtc, &now);
Imre Deake7783ba2012-11-02 13:30:50 +02001134
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001135 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
1136 if (e->pipe != crtc)
1137 continue;
1138 DRM_DEBUG("Sending premature vblank event on disable: \
1139 wanted %d, current %d\n",
1140 e->event.sequence, seq);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001141 list_del(&e->base.link);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001142 drm_vblank_put(dev, e->pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001143 send_vblank_event(dev, e, seq, &now);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001144 }
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001145 spin_unlock_irqrestore(&dev->event_lock, irqflags);
Li Peng778c9022009-11-09 12:51:22 +08001146}
1147EXPORT_SYMBOL(drm_vblank_off);
1148
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001149/**
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001150 * drm_crtc_vblank_off - disable vblank events on a CRTC
1151 * @crtc: CRTC in question
1152 *
1153 * Drivers can use this function to shut down the vblank interrupt handling when
1154 * disabling a crtc. This function ensures that the latest vblank frame count is
1155 * stored so that drm_vblank_on can restore it again.
1156 *
1157 * Drivers must use this function when the hardware vblank counter can get
1158 * reset, e.g. when suspending.
1159 *
1160 * This is the native kms version of drm_vblank_off().
1161 */
1162void drm_crtc_vblank_off(struct drm_crtc *crtc)
1163{
1164 drm_vblank_off(crtc->dev, drm_crtc_index(crtc));
1165}
1166EXPORT_SYMBOL(drm_crtc_vblank_off);
1167
1168/**
Ville Syrjäläf2752282014-02-19 21:29:49 +02001169 * drm_vblank_on - enable vblank events on a CRTC
1170 * @dev: DRM device
1171 * @crtc: CRTC in question
Daniel Vetterf5752b32014-05-08 16:41:51 +02001172 *
1173 * This functions restores the vblank interrupt state captured with
1174 * drm_vblank_off() again. Note that calls to drm_vblank_on() and
1175 * drm_vblank_off() can be unbalanced and so can also be unconditionaly called
1176 * in driver load code to reflect the current hardware state of the crtc.
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001177 *
1178 * This is the legacy version of drm_crtc_vblank_on().
Ville Syrjäläf2752282014-02-19 21:29:49 +02001179 */
1180void drm_vblank_on(struct drm_device *dev, int crtc)
1181{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001182 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Ville Syrjäläf2752282014-02-19 21:29:49 +02001183 unsigned long irqflags;
1184
Rob Clarke6ae8682014-08-06 13:16:59 -04001185 if (WARN_ON(crtc >= dev->num_crtcs))
1186 return;
1187
Ville Syrjäläf2752282014-02-19 21:29:49 +02001188 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Ville Syrjälä7ffd7a62014-08-06 14:49:44 +03001189 /* Drop our private "prevent drm_vblank_get" refcount */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001190 if (vblank->inmodeset) {
1191 atomic_dec(&vblank->refcount);
1192 vblank->inmodeset = 0;
Ville Syrjälä7ffd7a62014-08-06 14:49:44 +03001193 }
Ville Syrjäläf8ad0282014-08-06 14:49:49 +03001194
1195 /*
1196 * sample the current counter to avoid random jumps
1197 * when drm_vblank_enable() applies the diff
1198 *
1199 * -1 to make sure user will never see the same
1200 * vblank counter value before and after a modeset
1201 */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001202 vblank->last =
Ville Syrjäläf8ad0282014-08-06 14:49:49 +03001203 (dev->driver->get_vblank_counter(dev, crtc) - 1) &
1204 dev->max_vblank_count;
Ville Syrjäläcd19e522014-08-06 14:49:56 +03001205 /*
1206 * re-enable interrupts if there are users left, or the
1207 * user wishes vblank interrupts to be enabled all the time.
1208 */
1209 if (atomic_read(&vblank->refcount) != 0 ||
1210 (!dev->vblank_disable_immediate && drm_vblank_offdelay == 0))
Ville Syrjäläf2752282014-02-19 21:29:49 +02001211 WARN_ON(drm_vblank_enable(dev, crtc));
1212 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
1213}
1214EXPORT_SYMBOL(drm_vblank_on);
1215
1216/**
Daniel Vetter89dd6a42014-05-15 15:32:12 +02001217 * drm_crtc_vblank_on - enable vblank events on a CRTC
1218 * @crtc: CRTC in question
1219 *
1220 * This functions restores the vblank interrupt state captured with
1221 * drm_vblank_off() again. Note that calls to drm_vblank_on() and
1222 * drm_vblank_off() can be unbalanced and so can also be unconditionaly called
1223 * in driver load code to reflect the current hardware state of the crtc.
1224 *
1225 * This is the native kms version of drm_vblank_on().
1226 */
1227void drm_crtc_vblank_on(struct drm_crtc *crtc)
1228{
1229 drm_vblank_on(crtc->dev, drm_crtc_index(crtc));
1230}
1231EXPORT_SYMBOL(drm_crtc_vblank_on);
1232
1233/**
Dave Airlief453ba02008-11-07 14:05:41 -08001234 * drm_vblank_pre_modeset - account for vblanks across mode sets
1235 * @dev: DRM device
1236 * @crtc: CRTC in question
Dave Airlief453ba02008-11-07 14:05:41 -08001237 *
1238 * Account for vblank events across mode setting events, which will likely
1239 * reset the hardware frame counter.
Daniel Vetterf5752b32014-05-08 16:41:51 +02001240 *
1241 * This is done by grabbing a temporary vblank reference to ensure that the
1242 * vblank interrupt keeps running across the modeset sequence. With this the
1243 * software-side vblank frame counting will ensure that there are no jumps or
1244 * discontinuities.
1245 *
1246 * Unfortunately this approach is racy and also doesn't work when the vblank
1247 * interrupt stops running, e.g. across system suspend resume. It is therefore
1248 * highly recommended that drivers use the newer drm_vblank_off() and
1249 * drm_vblank_on() instead. drm_vblank_pre_modeset() only works correctly when
1250 * using "cooked" software vblank frame counters and not relying on any hardware
1251 * counters.
1252 *
1253 * Drivers must call drm_vblank_post_modeset() when re-enabling the same crtc
1254 * again.
Dave Airlief453ba02008-11-07 14:05:41 -08001255 */
1256void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
1257{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001258 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
1259
Huacai Chenb7ea85a2013-05-21 06:23:43 +00001260 /* vblank is not initialized (IRQ not installed ?), or has been freed */
Jerome Glissee77cef92010-01-07 15:39:13 +01001261 if (!dev->num_crtcs)
1262 return;
Rob Clarke6ae8682014-08-06 13:16:59 -04001263
1264 if (WARN_ON(crtc >= dev->num_crtcs))
1265 return;
1266
Dave Airlief453ba02008-11-07 14:05:41 -08001267 /*
1268 * To avoid all the problems that might happen if interrupts
1269 * were enabled/disabled around or between these calls, we just
1270 * have the kernel take a reference on the CRTC (just once though
1271 * to avoid corrupting the count if multiple, mismatch calls occur),
1272 * so that interrupts remain enabled in the interim.
1273 */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001274 if (!vblank->inmodeset) {
1275 vblank->inmodeset = 0x1;
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001276 if (drm_vblank_get(dev, crtc) == 0)
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001277 vblank->inmodeset |= 0x2;
Dave Airlief453ba02008-11-07 14:05:41 -08001278 }
1279}
1280EXPORT_SYMBOL(drm_vblank_pre_modeset);
1281
Daniel Vetterf5752b32014-05-08 16:41:51 +02001282/**
1283 * drm_vblank_post_modeset - undo drm_vblank_pre_modeset changes
1284 * @dev: DRM device
1285 * @crtc: CRTC in question
1286 *
1287 * This function again drops the temporary vblank reference acquired in
1288 * drm_vblank_pre_modeset.
1289 */
Dave Airlief453ba02008-11-07 14:05:41 -08001290void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
1291{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001292 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Dave Airlief453ba02008-11-07 14:05:41 -08001293 unsigned long irqflags;
1294
Huacai Chenb7ea85a2013-05-21 06:23:43 +00001295 /* vblank is not initialized (IRQ not installed ?), or has been freed */
1296 if (!dev->num_crtcs)
1297 return;
1298
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001299 if (vblank->inmodeset) {
Dave Airlief453ba02008-11-07 14:05:41 -08001300 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Ville Syrjäläba0bf122013-10-04 14:53:33 +03001301 dev->vblank_disable_allowed = true;
Dave Airlief453ba02008-11-07 14:05:41 -08001302 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001303
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001304 if (vblank->inmodeset & 0x2)
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001305 drm_vblank_put(dev, crtc);
1306
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001307 vblank->inmodeset = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001308 }
1309}
1310EXPORT_SYMBOL(drm_vblank_post_modeset);
1311
Daniel Vetterf5752b32014-05-08 16:41:51 +02001312/*
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001313 * drm_modeset_ctl - handle vblank event counter changes across mode switch
1314 * @DRM_IOCTL_ARGS: standard ioctl arguments
1315 *
1316 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
1317 * ioctls around modesetting so that any lost vblank events are accounted for.
1318 *
1319 * Generally the counter will reset across mode sets. If interrupts are
1320 * enabled around this call, we don't have to do anything since the counter
1321 * will have already been incremented.
1322 */
1323int drm_modeset_ctl(struct drm_device *dev, void *data,
1324 struct drm_file *file_priv)
1325{
1326 struct drm_modeset_ctl *modeset = data;
Dave Airlie19227562011-02-24 08:35:06 +10001327 unsigned int crtc;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001328
1329 /* If drm_vblank_init() hasn't been called yet, just no-op */
1330 if (!dev->num_crtcs)
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001331 return 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001332
Laurent Pinchart29935552012-05-30 00:58:09 +02001333 /* KMS drivers handle this internally */
1334 if (drm_core_check_feature(dev, DRIVER_MODESET))
1335 return 0;
1336
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001337 crtc = modeset->crtc;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001338 if (crtc >= dev->num_crtcs)
1339 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001340
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001341 switch (modeset->cmd) {
1342 case _DRM_PRE_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001343 drm_vblank_pre_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001344 break;
1345 case _DRM_POST_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001346 drm_vblank_post_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001347 break;
1348 default:
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001349 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001350 }
1351
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001352 return 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001353}
1354
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001355static int drm_queue_vblank_event(struct drm_device *dev, int pipe,
1356 union drm_wait_vblank *vblwait,
1357 struct drm_file *file_priv)
1358{
Ville Syrjäläffe7c732014-08-06 14:49:52 +03001359 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001360 struct drm_pending_vblank_event *e;
1361 struct timeval now;
1362 unsigned long flags;
1363 unsigned int seq;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001364 int ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001365
1366 e = kzalloc(sizeof *e, GFP_KERNEL);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001367 if (e == NULL) {
1368 ret = -ENOMEM;
1369 goto err_put;
1370 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001371
1372 e->pipe = pipe;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001373 e->base.pid = current->pid;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001374 e->event.base.type = DRM_EVENT_VBLANK;
1375 e->event.base.length = sizeof e->event;
1376 e->event.user_data = vblwait->request.signal;
1377 e->base.event = &e->event.base;
1378 e->base.file_priv = file_priv;
1379 e->base.destroy = (void (*) (struct drm_pending_event *)) kfree;
1380
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001381 spin_lock_irqsave(&dev->event_lock, flags);
1382
Ville Syrjäläffe7c732014-08-06 14:49:52 +03001383 /*
1384 * drm_vblank_off() might have been called after we called
1385 * drm_vblank_get(). drm_vblank_off() holds event_lock
1386 * around the vblank disable, so no need for further locking.
1387 * The reference from drm_vblank_get() protects against
1388 * vblank disable from another source.
1389 */
1390 if (!vblank->enabled) {
1391 ret = -EINVAL;
1392 goto err_unlock;
1393 }
1394
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001395 if (file_priv->event_space < sizeof e->event) {
Chris Wilsonea5d5522010-12-01 19:41:31 +00001396 ret = -EBUSY;
1397 goto err_unlock;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001398 }
1399
1400 file_priv->event_space -= sizeof e->event;
Mario Kleiner27641c32010-10-23 04:20:23 +02001401 seq = drm_vblank_count_and_time(dev, pipe, &now);
1402
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001403 if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) &&
1404 (seq - vblwait->request.sequence) <= (1 << 23)) {
1405 vblwait->request.sequence = seq + 1;
Jesse Barnes4a921642009-11-10 08:21:25 +00001406 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001407 }
1408
1409 DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n",
1410 vblwait->request.sequence, seq, pipe);
1411
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001412 trace_drm_vblank_event_queued(current->pid, pipe,
1413 vblwait->request.sequence);
1414
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001415 e->event.sequence = vblwait->request.sequence;
1416 if ((seq - vblwait->request.sequence) <= (1 << 23)) {
Dan Carpenter6f331622010-12-09 08:35:40 +03001417 drm_vblank_put(dev, pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001418 send_vblank_event(dev, e, seq, &now);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001419 vblwait->reply.sequence = seq;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001420 } else {
Ilija Hadzica6778e92011-10-31 13:11:57 -04001421 /* drm_handle_vblank_events will call drm_vblank_put */
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001422 list_add_tail(&e->base.link, &dev->vblank_event_list);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001423 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001424 }
1425
1426 spin_unlock_irqrestore(&dev->event_lock, flags);
1427
1428 return 0;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001429
1430err_unlock:
1431 spin_unlock_irqrestore(&dev->event_lock, flags);
1432 kfree(e);
1433err_put:
Dan Carpenter6f331622010-12-09 08:35:40 +03001434 drm_vblank_put(dev, pipe);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001435 return ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001436}
1437
Daniel Vetterf5752b32014-05-08 16:41:51 +02001438/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 * Wait for VBLANK.
1440 *
1441 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +10001442 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 * \param cmd command.
1444 * \param data user argument, pointing to a drm_wait_vblank structure.
1445 * \return zero on success or a negative number on failure.
1446 *
Eric Anholt30b23632009-01-27 21:19:41 -08001447 * This function enables the vblank interrupt on the pipe requested, then
1448 * sleeps waiting for the requested sequence number to occur, and drops
Daniel Vetterf5752b32014-05-08 16:41:51 +02001449 * the vblank interrupt refcount afterwards. (vblank IRQ disable follows that
Eric Anholt30b23632009-01-27 21:19:41 -08001450 * after a timeout with no further vblank waits scheduled).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001452int drm_wait_vblank(struct drm_device *dev, void *data,
1453 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001455 struct drm_vblank_crtc *vblank;
Eric Anholtc153f452007-09-03 12:06:45 +10001456 union drm_wait_vblank *vblwait = data;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001457 int ret;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001458 unsigned int flags, seq, crtc, high_crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Daniel Vetter49849792013-08-28 15:02:37 +02001460 if (!dev->irq_enabled)
1461 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Eric Anholt30b23632009-01-27 21:19:41 -08001463 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
1464 return -EINVAL;
1465
Eric Anholtc153f452007-09-03 12:06:45 +10001466 if (vblwait->request.type &
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001467 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1468 _DRM_VBLANK_HIGH_CRTC_MASK)) {
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001469 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001470 vblwait->request.type,
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001471 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1472 _DRM_VBLANK_HIGH_CRTC_MASK));
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001473 return -EINVAL;
1474 }
1475
Eric Anholtc153f452007-09-03 12:06:45 +10001476 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001477 high_crtc = (vblwait->request.type & _DRM_VBLANK_HIGH_CRTC_MASK);
1478 if (high_crtc)
1479 crtc = high_crtc >> _DRM_VBLANK_HIGH_CRTC_SHIFT;
1480 else
1481 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001482 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001483 return -EINVAL;
1484
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001485 vblank = &dev->vblank[crtc];
1486
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001487 ret = drm_vblank_get(dev, crtc);
1488 if (ret) {
Paul Rolland8d3457e2009-08-09 12:24:01 +10001489 DRM_DEBUG("failed to acquire vblank counter, %d\n", ret);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001490 return ret;
1491 }
1492 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001493
Eric Anholtc153f452007-09-03 12:06:45 +10001494 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +10001496 vblwait->request.sequence += seq;
1497 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 case _DRM_VBLANK_ABSOLUTE:
1499 break;
1500 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001501 ret = -EINVAL;
1502 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 }
1504
Ilija Hadzica6778e92011-10-31 13:11:57 -04001505 if (flags & _DRM_VBLANK_EVENT) {
1506 /* must hold on to the vblank ref until the event fires
1507 * drm_vblank_put will be called asynchronously
1508 */
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001509 return drm_queue_vblank_event(dev, crtc, vblwait, file_priv);
Ilija Hadzica6778e92011-10-31 13:11:57 -04001510 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001511
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001512 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +10001513 (seq - vblwait->request.sequence) <= (1<<23)) {
1514 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001515 }
1516
Eric Anholt30b23632009-01-27 21:19:41 -08001517 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
1518 vblwait->request.sequence, crtc);
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001519 vblank->last_wait = vblwait->request.sequence;
1520 DRM_WAIT_ON(ret, vblank->queue, 3 * HZ,
Eric Anholt30b23632009-01-27 21:19:41 -08001521 (((drm_vblank_count(dev, crtc) -
1522 vblwait->request.sequence) <= (1 << 23)) ||
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001523 !vblank->enabled ||
Eric Anholt30b23632009-01-27 21:19:41 -08001524 !dev->irq_enabled));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Eric Anholt30b23632009-01-27 21:19:41 -08001526 if (ret != -EINTR) {
1527 struct timeval now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Mario Kleiner27641c32010-10-23 04:20:23 +02001529 vblwait->reply.sequence = drm_vblank_count_and_time(dev, crtc, &now);
Eric Anholt30b23632009-01-27 21:19:41 -08001530 vblwait->reply.tval_sec = now.tv_sec;
1531 vblwait->reply.tval_usec = now.tv_usec;
Mario Kleiner27641c32010-10-23 04:20:23 +02001532
Eric Anholt30b23632009-01-27 21:19:41 -08001533 DRM_DEBUG("returning %d to client\n",
1534 vblwait->reply.sequence);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 } else {
Eric Anholt30b23632009-01-27 21:19:41 -08001536 DRM_DEBUG("vblank wait interrupted by signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
1538
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001539done:
1540 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 return ret;
1542}
1543
Sachin Kamatea7f7ab2012-08-01 17:15:31 +05301544static void drm_handle_vblank_events(struct drm_device *dev, int crtc)
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001545{
1546 struct drm_pending_vblank_event *e, *t;
1547 struct timeval now;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001548 unsigned int seq;
1549
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001550 assert_spin_locked(&dev->event_lock);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001551
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001552 seq = drm_vblank_count_and_time(dev, crtc, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001553
1554 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
1555 if (e->pipe != crtc)
1556 continue;
1557 if ((seq - e->event.sequence) > (1<<23))
1558 continue;
1559
1560 DRM_DEBUG("vblank event on %d, current %d\n",
1561 e->event.sequence, seq);
1562
Rob Clarkc6eefa12012-10-16 22:48:40 +00001563 list_del(&e->base.link);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001564 drm_vblank_put(dev, e->pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001565 send_vblank_event(dev, e, seq, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001566 }
1567
Jesse Barnesac2874b2010-07-01 16:47:31 -07001568 trace_drm_vblank_event(crtc, seq);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001569}
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001572 * drm_handle_vblank - handle a vblank event
1573 * @dev: DRM device
1574 * @crtc: where this event occurred
1575 *
1576 * Drivers should call this routine in their vblank interrupt handlers to
1577 * update the vblank counter and send any signals that may be pending.
1578 */
Chris Wilson78c6e172011-01-31 10:48:04 +00001579bool drm_handle_vblank(struct drm_device *dev, int crtc)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001580{
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001581 struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
Mario Kleiner27641c32010-10-23 04:20:23 +02001582 u32 vblcount;
1583 s64 diff_ns;
1584 struct timeval tvblank;
1585 unsigned long irqflags;
1586
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001587 if (!dev->num_crtcs)
Chris Wilson78c6e172011-01-31 10:48:04 +00001588 return false;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001589
Rob Clarke6ae8682014-08-06 13:16:59 -04001590 if (WARN_ON(crtc >= dev->num_crtcs))
1591 return false;
1592
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001593 spin_lock_irqsave(&dev->event_lock, irqflags);
1594
Mario Kleiner27641c32010-10-23 04:20:23 +02001595 /* Need timestamp lock to prevent concurrent execution with
1596 * vblank enable/disable, as this would cause inconsistent
1597 * or corrupted timestamps and vblank counts.
1598 */
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001599 spin_lock(&dev->vblank_time_lock);
Mario Kleiner27641c32010-10-23 04:20:23 +02001600
1601 /* Vblank irq handling disabled. Nothing to do. */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001602 if (!vblank->enabled) {
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001603 spin_unlock(&dev->vblank_time_lock);
1604 spin_unlock_irqrestore(&dev->event_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001605 return false;
Mario Kleiner27641c32010-10-23 04:20:23 +02001606 }
1607
1608 /* Fetch corresponding timestamp for this vblank interval from
1609 * driver and store it in proper slot of timestamp ringbuffer.
1610 */
1611
1612 /* Get current timestamp and count. */
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001613 vblcount = atomic_read(&vblank->count);
Mario Kleiner27641c32010-10-23 04:20:23 +02001614 drm_get_last_vbltimestamp(dev, crtc, &tvblank, DRM_CALLED_FROM_VBLIRQ);
1615
1616 /* Compute time difference to timestamp of last vblank */
1617 diff_ns = timeval_to_ns(&tvblank) -
1618 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
1619
1620 /* Update vblank timestamp and count if at least
1621 * DRM_REDUNDANT_VBLIRQ_THRESH_NS nanoseconds
1622 * difference between last stored timestamp and current
1623 * timestamp. A smaller difference means basically
1624 * identical timestamps. Happens if this vblank has
1625 * been already processed and this is a redundant call,
1626 * e.g., due to spurious vblank interrupts. We need to
1627 * ignore those for accounting.
1628 */
Mario Kleinerc4cc3832011-02-21 05:42:00 +01001629 if (abs64(diff_ns) > DRM_REDUNDANT_VBLIRQ_THRESH_NS) {
Mario Kleiner27641c32010-10-23 04:20:23 +02001630 /* Store new timestamp in ringbuffer. */
1631 vblanktimestamp(dev, crtc, vblcount + 1) = tvblank;
Mario Kleiner27641c32010-10-23 04:20:23 +02001632
1633 /* Increment cooked vblank count. This also atomically commits
1634 * the timestamp computed above.
1635 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001636 smp_mb__before_atomic();
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001637 atomic_inc(&vblank->count);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001638 smp_mb__after_atomic();
Mario Kleiner27641c32010-10-23 04:20:23 +02001639 } else {
1640 DRM_DEBUG("crtc %d: Redundant vblirq ignored. diff_ns = %d\n",
1641 crtc, (int) diff_ns);
1642 }
1643
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001644 spin_unlock(&dev->vblank_time_lock);
1645
Ville Syrjälä8a51d5b2014-08-06 14:49:50 +03001646 wake_up(&vblank->queue);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001647 drm_handle_vblank_events(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +02001648
Ville Syrjälä56cc2792014-08-06 14:49:51 +03001649 spin_unlock_irqrestore(&dev->event_lock, irqflags);
1650
Chris Wilson78c6e172011-01-31 10:48:04 +00001651 return true;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001652}
1653EXPORT_SYMBOL(drm_handle_vblank);