blob: 9be574fbcc2fbb1f24d906ed130afe4a209ccfae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * IRQ support
4 *
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
7 */
8
9/*
10 * Created: Fri Mar 19 14:30:16 1999 by faith@valinux.com
11 *
12 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files (the "Software"),
18 * to deal in the Software without restriction, including without limitation
19 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * and/or sell copies of the Software, and to permit persons to whom the
21 * Software is furnished to do so, subject to the following conditions:
22 *
23 * The above copyright notice and this permission notice (including the next
24 * paragraph) shall be included in all copies or substantial portions of the
25 * Software.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
30 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
31 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
32 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33 * OTHER DEALINGS IN THE SOFTWARE.
34 */
35
36#include "drmP.h"
Jesse Barnesac2874b2010-07-01 16:47:31 -070037#include "drm_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <linux/interrupt.h> /* For task queue support */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Dave Airlie28d52042009-09-21 14:33:58 +100042#include <linux/vgaarb.h>
Mario Kleiner27641c32010-10-23 04:20:23 +020043
44/* Access macro for slots in vblank timestamp ringbuffer. */
45#define vblanktimestamp(dev, crtc, count) ( \
46 (dev)->_vblank_time[(crtc) * DRM_VBLANKTIME_RBSIZE + \
47 ((count) % DRM_VBLANKTIME_RBSIZE)])
48
49/* Retry timestamp calculation up to 3 times to satisfy
50 * drm_timestamp_precision before giving up.
51 */
52#define DRM_TIMESTAMP_MAXRETRIES 3
53
54/* Threshold in nanoseconds for detection of redundant
55 * vblank irq in drm_handle_vblank(). 1 msec should be ok.
56 */
57#define DRM_REDUNDANT_VBLIRQ_THRESH_NS 1000000
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/**
60 * Get interrupt from bus id.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100061 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100063 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * \param cmd command.
65 * \param arg user argument, pointing to a drm_irq_busid structure.
66 * \return zero on success or a negative number on failure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100067 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * Finds the PCI device with the specified bus id and gets its IRQ number.
69 * This IOCTL is deprecated, and will now return EINVAL for any busid not equal
70 * to that of the device that this DRM instance attached to.
71 */
Eric Anholtc153f452007-09-03 12:06:45 +100072int drm_irq_by_busid(struct drm_device *dev, void *data,
73 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Eric Anholtc153f452007-09-03 12:06:45 +100075 struct drm_irq_busid *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Dave Airlie8410ea32010-12-15 03:16:38 +100077 if (!dev->driver->bus->irq_by_busid)
Jordan Crousedcdb1672010-05-27 13:40:25 -060078 return -EINVAL;
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
81 return -EINVAL;
82
Dave Airlie8410ea32010-12-15 03:16:38 +100083 return dev->driver->bus->irq_by_busid(dev, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Mario Kleiner27641c32010-10-23 04:20:23 +020086/*
87 * Clear vblank timestamp buffer for a crtc.
88 */
89static void clear_vblank_timestamps(struct drm_device *dev, int crtc)
90{
91 memset(&dev->_vblank_time[crtc * DRM_VBLANKTIME_RBSIZE], 0,
92 DRM_VBLANKTIME_RBSIZE * sizeof(struct timeval));
93}
94
95/*
96 * Disable vblank irq's on crtc, make sure that last vblank count
97 * of hardware and corresponding consistent software vblank counter
98 * are preserved, even if there are any spurious vblank irq's after
99 * disable.
100 */
101static void vblank_disable_and_save(struct drm_device *dev, int crtc)
102{
103 unsigned long irqflags;
104 u32 vblcount;
105 s64 diff_ns;
106 int vblrc;
107 struct timeval tvblank;
108
109 /* Prevent vblank irq processing while disabling vblank irqs,
110 * so no updates of timestamps or count can happen after we've
111 * disabled. Needed to prevent races in case of delayed irq's.
112 * Disable preemption, so vblank_time_lock is held as short as
113 * possible, even under a kernel with PREEMPT_RT patches.
114 */
115 preempt_disable();
116 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
117
118 dev->driver->disable_vblank(dev, crtc);
119 dev->vblank_enabled[crtc] = 0;
120
121 /* No further vblank irq's will be processed after
122 * this point. Get current hardware vblank count and
123 * vblank timestamp, repeat until they are consistent.
124 *
125 * FIXME: There is still a race condition here and in
126 * drm_update_vblank_count() which can cause off-by-one
127 * reinitialization of software vblank counter. If gpu
128 * vblank counter doesn't increment exactly at the leading
129 * edge of a vblank interval, then we can lose 1 count if
130 * we happen to execute between start of vblank and the
131 * delayed gpu counter increment.
132 */
133 do {
134 dev->last_vblank[crtc] = dev->driver->get_vblank_counter(dev, crtc);
135 vblrc = drm_get_last_vbltimestamp(dev, crtc, &tvblank, 0);
136 } while (dev->last_vblank[crtc] != dev->driver->get_vblank_counter(dev, crtc));
137
138 /* Compute time difference to stored timestamp of last vblank
139 * as updated by last invocation of drm_handle_vblank() in vblank irq.
140 */
141 vblcount = atomic_read(&dev->_vblank_count[crtc]);
142 diff_ns = timeval_to_ns(&tvblank) -
143 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
144
145 /* If there is at least 1 msec difference between the last stored
146 * timestamp and tvblank, then we are currently executing our
147 * disable inside a new vblank interval, the tvblank timestamp
148 * corresponds to this new vblank interval and the irq handler
149 * for this vblank didn't run yet and won't run due to our disable.
150 * Therefore we need to do the job of drm_handle_vblank() and
151 * increment the vblank counter by one to account for this vblank.
152 *
153 * Skip this step if there isn't any high precision timestamp
154 * available. In that case we can't account for this and just
155 * hope for the best.
156 */
Mario Kleinerbc215122011-02-21 05:42:01 +0100157 if ((vblrc > 0) && (abs64(diff_ns) > 1000000)) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200158 atomic_inc(&dev->_vblank_count[crtc]);
Mario Kleinerbc215122011-02-21 05:42:01 +0100159 smp_mb__after_atomic_inc();
160 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200161
162 /* Invalidate all timestamps while vblank irq's are off. */
163 clear_vblank_timestamps(dev, crtc);
164
165 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
166 preempt_enable();
167}
168
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700169static void vblank_disable_fn(unsigned long arg)
170{
171 struct drm_device *dev = (struct drm_device *)arg;
172 unsigned long irqflags;
173 int i;
174
175 if (!dev->vblank_disable_allowed)
176 return;
177
178 for (i = 0; i < dev->num_crtcs; i++) {
179 spin_lock_irqsave(&dev->vbl_lock, irqflags);
180 if (atomic_read(&dev->vblank_refcount[i]) == 0 &&
181 dev->vblank_enabled[i]) {
182 DRM_DEBUG("disabling vblank on crtc %d\n", i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200183 vblank_disable_and_save(dev, i);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700184 }
185 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
186 }
187}
188
Keith Packard52440212008-11-18 09:30:25 -0800189void drm_vblank_cleanup(struct drm_device *dev)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700190{
191 /* Bail if the driver didn't call drm_vblank_init() */
192 if (dev->num_crtcs == 0)
193 return;
194
195 del_timer(&dev->vblank_disable_timer);
196
197 vblank_disable_fn((unsigned long)dev);
198
Eric Anholt9a298b22009-03-24 12:23:04 -0700199 kfree(dev->vbl_queue);
200 kfree(dev->_vblank_count);
201 kfree(dev->vblank_refcount);
202 kfree(dev->vblank_enabled);
203 kfree(dev->last_vblank);
204 kfree(dev->last_vblank_wait);
205 kfree(dev->vblank_inmodeset);
Mario Kleiner27641c32010-10-23 04:20:23 +0200206 kfree(dev->_vblank_time);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700207
208 dev->num_crtcs = 0;
209}
Jerome Glissee77cef92010-01-07 15:39:13 +0100210EXPORT_SYMBOL(drm_vblank_cleanup);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700211
212int drm_vblank_init(struct drm_device *dev, int num_crtcs)
213{
214 int i, ret = -ENOMEM;
215
216 setup_timer(&dev->vblank_disable_timer, vblank_disable_fn,
217 (unsigned long)dev);
218 spin_lock_init(&dev->vbl_lock);
Mario Kleiner27641c32010-10-23 04:20:23 +0200219 spin_lock_init(&dev->vblank_time_lock);
220
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700221 dev->num_crtcs = num_crtcs;
222
Eric Anholt9a298b22009-03-24 12:23:04 -0700223 dev->vbl_queue = kmalloc(sizeof(wait_queue_head_t) * num_crtcs,
224 GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700225 if (!dev->vbl_queue)
226 goto err;
227
Eric Anholt9a298b22009-03-24 12:23:04 -0700228 dev->_vblank_count = kmalloc(sizeof(atomic_t) * num_crtcs, GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700229 if (!dev->_vblank_count)
230 goto err;
231
Eric Anholt9a298b22009-03-24 12:23:04 -0700232 dev->vblank_refcount = kmalloc(sizeof(atomic_t) * num_crtcs,
233 GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700234 if (!dev->vblank_refcount)
235 goto err;
236
Eric Anholt9a298b22009-03-24 12:23:04 -0700237 dev->vblank_enabled = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700238 if (!dev->vblank_enabled)
239 goto err;
240
Eric Anholt9a298b22009-03-24 12:23:04 -0700241 dev->last_vblank = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700242 if (!dev->last_vblank)
243 goto err;
244
Eric Anholt9a298b22009-03-24 12:23:04 -0700245 dev->last_vblank_wait = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL);
Eric Anholtfede5c92008-12-19 17:23:38 -0800246 if (!dev->last_vblank_wait)
247 goto err;
248
Eric Anholt9a298b22009-03-24 12:23:04 -0700249 dev->vblank_inmodeset = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700250 if (!dev->vblank_inmodeset)
251 goto err;
252
Mario Kleiner27641c32010-10-23 04:20:23 +0200253 dev->_vblank_time = kcalloc(num_crtcs * DRM_VBLANKTIME_RBSIZE,
254 sizeof(struct timeval), GFP_KERNEL);
255 if (!dev->_vblank_time)
256 goto err;
257
258 DRM_INFO("Supports vblank timestamp caching Rev 1 (10.10.2010).\n");
259
260 /* Driver specific high-precision vblank timestamping supported? */
261 if (dev->driver->get_vblank_timestamp)
262 DRM_INFO("Driver supports precise vblank timestamp query.\n");
263 else
264 DRM_INFO("No driver support for vblank timestamp query.\n");
265
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700266 /* Zero per-crtc vblank stuff */
267 for (i = 0; i < num_crtcs; i++) {
268 init_waitqueue_head(&dev->vbl_queue[i]);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700269 atomic_set(&dev->_vblank_count[i], 0);
270 atomic_set(&dev->vblank_refcount[i], 0);
271 }
272
273 dev->vblank_disable_allowed = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700274 return 0;
275
276err:
277 drm_vblank_cleanup(dev);
278 return ret;
279}
280EXPORT_SYMBOL(drm_vblank_init);
281
Dave Airlie28d52042009-09-21 14:33:58 +1000282static void drm_irq_vgaarb_nokms(void *cookie, bool state)
283{
284 struct drm_device *dev = cookie;
285
286 if (dev->driver->vgaarb_irq) {
287 dev->driver->vgaarb_irq(dev, state);
288 return;
289 }
290
291 if (!dev->irq_enabled)
292 return;
293
294 if (state)
295 dev->driver->irq_uninstall(dev);
296 else {
297 dev->driver->irq_preinstall(dev);
298 dev->driver->irq_postinstall(dev);
299 }
300}
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/**
303 * Install IRQ handler.
304 *
305 * \param dev DRM device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 *
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700307 * Initializes the IRQ related data. Installs the handler, calling the driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions
309 * before and after the installation.
310 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700311int drm_irq_install(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700313 int ret = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000314 unsigned long sh_flags = 0;
Dave Airlieb8da7de2009-06-02 16:50:35 +1000315 char *irqname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
318 return -EINVAL;
319
Jordan Crousedcdb1672010-05-27 13:40:25 -0600320 if (drm_dev_to_irq(dev) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return -EINVAL;
322
Dave Airlie30e2fb12006-02-02 19:37:46 +1100323 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 /* Driver must have been initialized */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000326 if (!dev->dev_private) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100327 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return -EINVAL;
329 }
330
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000331 if (dev->irq_enabled) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100332 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return -EBUSY;
334 }
335 dev->irq_enabled = 1;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100336 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Jordan Crousedcdb1672010-05-27 13:40:25 -0600338 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000340 /* Before installing handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 dev->driver->irq_preinstall(dev);
342
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000343 /* Install handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
Thomas Gleixner935f6e32006-07-01 19:29:34 -0700345 sh_flags = IRQF_SHARED;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000346
Dave Airlieb8da7de2009-06-02 16:50:35 +1000347 if (dev->devname)
348 irqname = dev->devname;
349 else
350 irqname = dev->driver->name;
351
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700352 ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler,
Dave Airlieb8da7de2009-06-02 16:50:35 +1000353 sh_flags, irqname, dev);
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700354
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000355 if (ret < 0) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100356 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100358 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return ret;
360 }
361
Dave Airlie28d52042009-09-21 14:33:58 +1000362 if (!drm_core_check_feature(dev, DRIVER_MODESET))
363 vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL);
364
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000365 /* After installing handler */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700366 ret = dev->driver->irq_postinstall(dev);
367 if (ret < 0) {
368 mutex_lock(&dev->struct_mutex);
369 dev->irq_enabled = 0;
370 mutex_unlock(&dev->struct_mutex);
Joonyoung Shime1c44ac2011-08-04 05:41:00 +0000371 if (!drm_core_check_feature(dev, DRIVER_MODESET))
372 vga_client_register(dev->pdev, NULL, NULL, NULL);
373 free_irq(drm_dev_to_irq(dev), dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700376 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700378EXPORT_SYMBOL(drm_irq_install);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380/**
381 * Uninstall the IRQ handler.
382 *
383 * \param dev DRM device.
384 *
385 * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq.
386 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200387int drm_irq_uninstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800389 unsigned long irqflags;
390 int irq_enabled, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
393 return -EINVAL;
394
Dave Airlie30e2fb12006-02-02 19:37:46 +1100395 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 irq_enabled = dev->irq_enabled;
397 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100398 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800400 /*
401 * Wake up any waiters so they don't hang.
402 */
403 spin_lock_irqsave(&dev->vbl_lock, irqflags);
404 for (i = 0; i < dev->num_crtcs; i++) {
405 DRM_WAKEUP(&dev->vbl_queue[i]);
406 dev->vblank_enabled[i] = 0;
Jesse Barnes14d200c2009-02-06 13:04:49 -0800407 dev->last_vblank[i] = dev->driver->get_vblank_counter(dev, i);
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800408 }
409 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
410
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000411 if (!irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return -EINVAL;
413
Jordan Crousedcdb1672010-05-27 13:40:25 -0600414 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Dave Airlie28d52042009-09-21 14:33:58 +1000416 if (!drm_core_check_feature(dev, DRIVER_MODESET))
417 vga_client_register(dev->pdev, NULL, NULL, NULL);
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 dev->driver->irq_uninstall(dev);
420
Jordan Crousedcdb1672010-05-27 13:40:25 -0600421 free_irq(drm_dev_to_irq(dev), dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 return 0;
424}
425EXPORT_SYMBOL(drm_irq_uninstall);
426
427/**
428 * IRQ control ioctl.
429 *
430 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000431 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * \param cmd command.
433 * \param arg user argument, pointing to a drm_control structure.
434 * \return zero on success or a negative number on failure.
435 *
436 * Calls irq_install() or irq_uninstall() according to \p arg.
437 */
Eric Anholtc153f452007-09-03 12:06:45 +1000438int drm_control(struct drm_device *dev, void *data,
439 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Eric Anholtc153f452007-09-03 12:06:45 +1000441 struct drm_control *ctl = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000442
Mario Kleiner27641c32010-10-23 04:20:23 +0200443 /* if we haven't irq we fallback for compatibility reasons -
444 * this used to be a separate function in drm_dma.h
445 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Eric Anholtc153f452007-09-03 12:06:45 +1000448 switch (ctl->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 case DRM_INST_HANDLER:
450 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
451 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800452 if (drm_core_check_feature(dev, DRIVER_MODESET))
453 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
Jordan Crousedcdb1672010-05-27 13:40:25 -0600455 ctl->irq != drm_dev_to_irq(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000457 return drm_irq_install(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 case DRM_UNINST_HANDLER:
459 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
460 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800461 if (drm_core_check_feature(dev, DRIVER_MODESET))
462 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000463 return drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 default:
465 return -EINVAL;
466 }
467}
468
469/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200470 * drm_calc_timestamping_constants - Calculate and
471 * store various constants which are later needed by
472 * vblank and swap-completion timestamping, e.g, by
473 * drm_calc_vbltimestamp_from_scanoutpos().
474 * They are derived from crtc's true scanout timing,
475 * so they take things like panel scaling or other
476 * adjustments into account.
477 *
478 * @crtc drm_crtc whose timestamp constants should be updated.
479 *
480 */
481void drm_calc_timestamping_constants(struct drm_crtc *crtc)
482{
483 s64 linedur_ns = 0, pixeldur_ns = 0, framedur_ns = 0;
484 u64 dotclock;
485
486 /* Dot clock in Hz: */
487 dotclock = (u64) crtc->hwmode.clock * 1000;
488
Mario Kleiner9be6f8a2011-02-21 05:42:02 +0100489 /* Fields of interlaced scanout modes are only halve a frame duration.
490 * Double the dotclock to get halve the frame-/line-/pixelduration.
491 */
492 if (crtc->hwmode.flags & DRM_MODE_FLAG_INTERLACE)
493 dotclock *= 2;
494
Mario Kleiner27641c32010-10-23 04:20:23 +0200495 /* Valid dotclock? */
496 if (dotclock > 0) {
497 /* Convert scanline length in pixels and video dot clock to
498 * line duration, frame duration and pixel duration in
499 * nanoseconds:
500 */
501 pixeldur_ns = (s64) div64_u64(1000000000, dotclock);
502 linedur_ns = (s64) div64_u64(((u64) crtc->hwmode.crtc_htotal *
503 1000000000), dotclock);
504 framedur_ns = (s64) crtc->hwmode.crtc_vtotal * linedur_ns;
505 } else
506 DRM_ERROR("crtc %d: Can't calculate constants, dotclock = 0!\n",
507 crtc->base.id);
508
509 crtc->pixeldur_ns = pixeldur_ns;
510 crtc->linedur_ns = linedur_ns;
511 crtc->framedur_ns = framedur_ns;
512
513 DRM_DEBUG("crtc %d: hwmode: htotal %d, vtotal %d, vdisplay %d\n",
514 crtc->base.id, crtc->hwmode.crtc_htotal,
515 crtc->hwmode.crtc_vtotal, crtc->hwmode.crtc_vdisplay);
516 DRM_DEBUG("crtc %d: clock %d kHz framedur %d linedur %d, pixeldur %d\n",
517 crtc->base.id, (int) dotclock/1000, (int) framedur_ns,
518 (int) linedur_ns, (int) pixeldur_ns);
519}
520EXPORT_SYMBOL(drm_calc_timestamping_constants);
521
522/**
523 * drm_calc_vbltimestamp_from_scanoutpos - helper routine for kms
524 * drivers. Implements calculation of exact vblank timestamps from
525 * given drm_display_mode timings and current video scanout position
526 * of a crtc. This can be called from within get_vblank_timestamp()
527 * implementation of a kms driver to implement the actual timestamping.
528 *
529 * Should return timestamps conforming to the OML_sync_control OpenML
530 * extension specification. The timestamp corresponds to the end of
531 * the vblank interval, aka start of scanout of topmost-leftmost display
532 * pixel in the following video frame.
533 *
534 * Requires support for optional dev->driver->get_scanout_position()
535 * in kms driver, plus a bit of setup code to provide a drm_display_mode
536 * that corresponds to the true scanout timing.
537 *
538 * The current implementation only handles standard video modes. It
539 * returns as no operation if a doublescan or interlaced video mode is
540 * active. Higher level code is expected to handle this.
541 *
542 * @dev: DRM device.
543 * @crtc: Which crtc's vblank timestamp to retrieve.
544 * @max_error: Desired maximum allowable error in timestamps (nanosecs).
545 * On return contains true maximum error of timestamp.
546 * @vblank_time: Pointer to struct timeval which should receive the timestamp.
547 * @flags: Flags to pass to driver:
548 * 0 = Default.
549 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler.
550 * @refcrtc: drm_crtc* of crtc which defines scanout timing.
551 *
552 * Returns negative value on error, failure or if not supported in current
553 * video mode:
554 *
555 * -EINVAL - Invalid crtc.
556 * -EAGAIN - Temporary unavailable, e.g., called before initial modeset.
557 * -ENOTSUPP - Function not supported in current display mode.
558 * -EIO - Failed, e.g., due to failed scanout position query.
559 *
560 * Returns or'ed positive status flags on success:
561 *
562 * DRM_VBLANKTIME_SCANOUTPOS_METHOD - Signal this method used for timestamping.
563 * DRM_VBLANKTIME_INVBL - Timestamp taken while scanout was in vblank interval.
564 *
565 */
566int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, int crtc,
567 int *max_error,
568 struct timeval *vblank_time,
569 unsigned flags,
570 struct drm_crtc *refcrtc)
571{
572 struct timeval stime, raw_time;
573 struct drm_display_mode *mode;
574 int vbl_status, vtotal, vdisplay;
575 int vpos, hpos, i;
576 s64 framedur_ns, linedur_ns, pixeldur_ns, delta_ns, duration_ns;
577 bool invbl;
578
579 if (crtc < 0 || crtc >= dev->num_crtcs) {
580 DRM_ERROR("Invalid crtc %d\n", crtc);
581 return -EINVAL;
582 }
583
584 /* Scanout position query not supported? Should not happen. */
585 if (!dev->driver->get_scanout_position) {
586 DRM_ERROR("Called from driver w/o get_scanout_position()!?\n");
587 return -EIO;
588 }
589
590 mode = &refcrtc->hwmode;
591 vtotal = mode->crtc_vtotal;
592 vdisplay = mode->crtc_vdisplay;
593
594 /* Durations of frames, lines, pixels in nanoseconds. */
595 framedur_ns = refcrtc->framedur_ns;
596 linedur_ns = refcrtc->linedur_ns;
597 pixeldur_ns = refcrtc->pixeldur_ns;
598
599 /* If mode timing undefined, just return as no-op:
600 * Happens during initial modesetting of a crtc.
601 */
602 if (vtotal <= 0 || vdisplay <= 0 || framedur_ns == 0) {
603 DRM_DEBUG("crtc %d: Noop due to uninitialized mode.\n", crtc);
604 return -EAGAIN;
605 }
606
Mario Kleiner27641c32010-10-23 04:20:23 +0200607 /* Get current scanout position with system timestamp.
608 * Repeat query up to DRM_TIMESTAMP_MAXRETRIES times
609 * if single query takes longer than max_error nanoseconds.
610 *
611 * This guarantees a tight bound on maximum error if
612 * code gets preempted or delayed for some reason.
613 */
614 for (i = 0; i < DRM_TIMESTAMP_MAXRETRIES; i++) {
615 /* Disable preemption to make it very likely to
616 * succeed in the first iteration even on PREEMPT_RT kernel.
617 */
618 preempt_disable();
619
620 /* Get system timestamp before query. */
621 do_gettimeofday(&stime);
622
623 /* Get vertical and horizontal scanout pos. vpos, hpos. */
624 vbl_status = dev->driver->get_scanout_position(dev, crtc, &vpos, &hpos);
625
626 /* Get system timestamp after query. */
627 do_gettimeofday(&raw_time);
628
629 preempt_enable();
630
631 /* Return as no-op if scanout query unsupported or failed. */
632 if (!(vbl_status & DRM_SCANOUTPOS_VALID)) {
633 DRM_DEBUG("crtc %d : scanoutpos query failed [%d].\n",
634 crtc, vbl_status);
635 return -EIO;
636 }
637
638 duration_ns = timeval_to_ns(&raw_time) - timeval_to_ns(&stime);
639
640 /* Accept result with < max_error nsecs timing uncertainty. */
641 if (duration_ns <= (s64) *max_error)
642 break;
643 }
644
645 /* Noisy system timing? */
646 if (i == DRM_TIMESTAMP_MAXRETRIES) {
647 DRM_DEBUG("crtc %d: Noisy timestamp %d us > %d us [%d reps].\n",
648 crtc, (int) duration_ns/1000, *max_error/1000, i);
649 }
650
651 /* Return upper bound of timestamp precision error. */
652 *max_error = (int) duration_ns;
653
654 /* Check if in vblank area:
655 * vpos is >=0 in video scanout area, but negative
656 * within vblank area, counting down the number of lines until
657 * start of scanout.
658 */
659 invbl = vbl_status & DRM_SCANOUTPOS_INVBL;
660
661 /* Convert scanout position into elapsed time at raw_time query
662 * since start of scanout at first display scanline. delta_ns
663 * can be negative if start of scanout hasn't happened yet.
664 */
665 delta_ns = (s64) vpos * linedur_ns + (s64) hpos * pixeldur_ns;
666
667 /* Is vpos outside nominal vblank area, but less than
668 * 1/100 of a frame height away from start of vblank?
669 * If so, assume this isn't a massively delayed vblank
670 * interrupt, but a vblank interrupt that fired a few
671 * microseconds before true start of vblank. Compensate
672 * by adding a full frame duration to the final timestamp.
673 * Happens, e.g., on ATI R500, R600.
674 *
675 * We only do this if DRM_CALLED_FROM_VBLIRQ.
676 */
677 if ((flags & DRM_CALLED_FROM_VBLIRQ) && !invbl &&
678 ((vdisplay - vpos) < vtotal / 100)) {
679 delta_ns = delta_ns - framedur_ns;
680
681 /* Signal this correction as "applied". */
682 vbl_status |= 0x8;
683 }
684
685 /* Subtract time delta from raw timestamp to get final
686 * vblank_time timestamp for end of vblank.
687 */
688 *vblank_time = ns_to_timeval(timeval_to_ns(&raw_time) - delta_ns);
689
Joe Perchesbbb0aef2011-04-17 20:35:52 -0700690 DRM_DEBUG("crtc %d : v %d p(%d,%d)@ %ld.%ld -> %ld.%ld [e %d us, %d rep]\n",
691 crtc, (int)vbl_status, hpos, vpos,
692 (long)raw_time.tv_sec, (long)raw_time.tv_usec,
693 (long)vblank_time->tv_sec, (long)vblank_time->tv_usec,
694 (int)duration_ns/1000, i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200695
696 vbl_status = DRM_VBLANKTIME_SCANOUTPOS_METHOD;
697 if (invbl)
698 vbl_status |= DRM_VBLANKTIME_INVBL;
699
700 return vbl_status;
701}
702EXPORT_SYMBOL(drm_calc_vbltimestamp_from_scanoutpos);
703
704/**
705 * drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent
706 * vblank interval.
707 *
708 * @dev: DRM device
709 * @crtc: which crtc's vblank timestamp to retrieve
710 * @tvblank: Pointer to target struct timeval which should receive the timestamp
711 * @flags: Flags to pass to driver:
712 * 0 = Default.
713 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler.
714 *
715 * Fetches the system timestamp corresponding to the time of the most recent
716 * vblank interval on specified crtc. May call into kms-driver to
717 * compute the timestamp with a high-precision GPU specific method.
718 *
719 * Returns zero if timestamp originates from uncorrected do_gettimeofday()
720 * call, i.e., it isn't very precisely locked to the true vblank.
721 *
722 * Returns non-zero if timestamp is considered to be very precise.
723 */
724u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
725 struct timeval *tvblank, unsigned flags)
726{
727 int ret = 0;
728
729 /* Define requested maximum error on timestamps (nanoseconds). */
730 int max_error = (int) drm_timestamp_precision * 1000;
731
732 /* Query driver if possible and precision timestamping enabled. */
733 if (dev->driver->get_vblank_timestamp && (max_error > 0)) {
734 ret = dev->driver->get_vblank_timestamp(dev, crtc, &max_error,
735 tvblank, flags);
736 if (ret > 0)
737 return (u32) ret;
738 }
739
740 /* GPU high precision timestamp query unsupported or failed.
741 * Return gettimeofday timestamp as best estimate.
742 */
743 do_gettimeofday(tvblank);
744
745 return 0;
746}
747EXPORT_SYMBOL(drm_get_last_vbltimestamp);
748
749/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700750 * drm_vblank_count - retrieve "cooked" vblank counter value
751 * @dev: DRM device
752 * @crtc: which counter to retrieve
753 *
754 * Fetches the "cooked" vblank count value that represents the number of
755 * vblank events since the system was booted, including lost events due to
756 * modesetting activity.
757 */
758u32 drm_vblank_count(struct drm_device *dev, int crtc)
759{
760 return atomic_read(&dev->_vblank_count[crtc]);
761}
762EXPORT_SYMBOL(drm_vblank_count);
763
764/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200765 * drm_vblank_count_and_time - retrieve "cooked" vblank counter value
766 * and the system timestamp corresponding to that vblank counter value.
767 *
768 * @dev: DRM device
769 * @crtc: which counter to retrieve
770 * @vblanktime: Pointer to struct timeval to receive the vblank timestamp.
771 *
772 * Fetches the "cooked" vblank count value that represents the number of
773 * vblank events since the system was booted, including lost events due to
774 * modesetting activity. Returns corresponding system timestamp of the time
775 * of the vblank interval that corresponds to the current value vblank counter
776 * value.
777 */
778u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
779 struct timeval *vblanktime)
780{
781 u32 cur_vblank;
782
783 /* Read timestamp from slot of _vblank_time ringbuffer
784 * that corresponds to current vblank count. Retry if
785 * count has incremented during readout. This works like
786 * a seqlock.
787 */
788 do {
789 cur_vblank = atomic_read(&dev->_vblank_count[crtc]);
790 *vblanktime = vblanktimestamp(dev, crtc, cur_vblank);
791 smp_rmb();
792 } while (cur_vblank != atomic_read(&dev->_vblank_count[crtc]));
793
794 return cur_vblank;
795}
796EXPORT_SYMBOL(drm_vblank_count_and_time);
797
798/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700799 * drm_update_vblank_count - update the master vblank counter
800 * @dev: DRM device
801 * @crtc: counter to update
802 *
803 * Call back into the driver to update the appropriate vblank counter
804 * (specified by @crtc). Deal with wraparound, if it occurred, and
805 * update the last read value so we can deal with wraparound on the next
806 * call if necessary.
807 *
808 * Only necessary when going from off->on, to account for frames we
809 * didn't get an interrupt for.
810 *
811 * Note: caller must hold dev->vbl_lock since this reads & writes
812 * device vblank fields.
813 */
814static void drm_update_vblank_count(struct drm_device *dev, int crtc)
815{
Mario Kleiner27641c32010-10-23 04:20:23 +0200816 u32 cur_vblank, diff, tslot, rc;
817 struct timeval t_vblank;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700818
819 /*
820 * Interrupts were disabled prior to this call, so deal with counter
821 * wrap if needed.
822 * NOTE! It's possible we lost a full dev->max_vblank_count events
823 * here if the register is small or we had vblank interrupts off for
824 * a long time.
Mario Kleiner27641c32010-10-23 04:20:23 +0200825 *
826 * We repeat the hardware vblank counter & timestamp query until
827 * we get consistent results. This to prevent races between gpu
828 * updating its hardware counter while we are retrieving the
829 * corresponding vblank timestamp.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700830 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200831 do {
832 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
833 rc = drm_get_last_vbltimestamp(dev, crtc, &t_vblank, 0);
834 } while (cur_vblank != dev->driver->get_vblank_counter(dev, crtc));
835
836 /* Deal with counter wrap */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700837 diff = cur_vblank - dev->last_vblank[crtc];
838 if (cur_vblank < dev->last_vblank[crtc]) {
839 diff += dev->max_vblank_count;
840
841 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
842 crtc, dev->last_vblank[crtc], cur_vblank, diff);
843 }
844
845 DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
846 crtc, diff);
847
Mario Kleiner27641c32010-10-23 04:20:23 +0200848 /* Reinitialize corresponding vblank timestamp if high-precision query
849 * available. Skip this step if query unsupported or failed. Will
850 * reinitialize delayed at next vblank interrupt in that case.
851 */
852 if (rc) {
853 tslot = atomic_read(&dev->_vblank_count[crtc]) + diff;
854 vblanktimestamp(dev, crtc, tslot) = t_vblank;
Mario Kleiner27641c32010-10-23 04:20:23 +0200855 }
856
Mario Kleinerbc215122011-02-21 05:42:01 +0100857 smp_mb__before_atomic_inc();
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700858 atomic_add(diff, &dev->_vblank_count[crtc]);
Mario Kleinerbc215122011-02-21 05:42:01 +0100859 smp_mb__after_atomic_inc();
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700860}
861
862/**
863 * drm_vblank_get - get a reference count on vblank events
864 * @dev: DRM device
865 * @crtc: which CRTC to own
866 *
867 * Acquire a reference count on vblank events to avoid having them disabled
868 * while in use.
869 *
870 * RETURNS
871 * Zero on success, nonzero on failure.
872 */
873int drm_vblank_get(struct drm_device *dev, int crtc)
874{
Mario Kleiner27641c32010-10-23 04:20:23 +0200875 unsigned long irqflags, irqflags2;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700876 int ret = 0;
877
878 spin_lock_irqsave(&dev->vbl_lock, irqflags);
879 /* Going from 0->1 means we have to enable interrupts again */
Li Peng778c9022009-11-09 12:51:22 +0800880 if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200881 /* Disable preemption while holding vblank_time_lock. Do
882 * it explicitely to guard against PREEMPT_RT kernel.
883 */
884 preempt_disable();
885 spin_lock_irqsave(&dev->vblank_time_lock, irqflags2);
Li Peng778c9022009-11-09 12:51:22 +0800886 if (!dev->vblank_enabled[crtc]) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200887 /* Enable vblank irqs under vblank_time_lock protection.
888 * All vblank count & timestamp updates are held off
889 * until we are done reinitializing master counter and
890 * timestamps. Filtercode in drm_handle_vblank() will
891 * prevent double-accounting of same vblank interval.
892 */
Li Peng778c9022009-11-09 12:51:22 +0800893 ret = dev->driver->enable_vblank(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +0200894 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n",
895 crtc, ret);
Li Peng778c9022009-11-09 12:51:22 +0800896 if (ret)
897 atomic_dec(&dev->vblank_refcount[crtc]);
898 else {
899 dev->vblank_enabled[crtc] = 1;
900 drm_update_vblank_count(dev, crtc);
901 }
902 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200903 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags2);
904 preempt_enable();
Li Peng778c9022009-11-09 12:51:22 +0800905 } else {
906 if (!dev->vblank_enabled[crtc]) {
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700907 atomic_dec(&dev->vblank_refcount[crtc]);
Li Peng778c9022009-11-09 12:51:22 +0800908 ret = -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700909 }
910 }
911 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
912
913 return ret;
914}
915EXPORT_SYMBOL(drm_vblank_get);
916
917/**
918 * drm_vblank_put - give up ownership of vblank events
919 * @dev: DRM device
920 * @crtc: which counter to give up
921 *
922 * Release ownership of a given vblank counter, turning off interrupts
Mario Kleiner27641c32010-10-23 04:20:23 +0200923 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700924 */
925void drm_vblank_put(struct drm_device *dev, int crtc)
926{
Mario Kleiner27641c32010-10-23 04:20:23 +0200927 BUG_ON(atomic_read(&dev->vblank_refcount[crtc]) == 0);
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000928
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700929 /* Last user schedules interrupt disable */
Mario Kleiner27641c32010-10-23 04:20:23 +0200930 if (atomic_dec_and_test(&dev->vblank_refcount[crtc]) &&
931 (drm_vblank_offdelay > 0))
932 mod_timer(&dev->vblank_disable_timer,
933 jiffies + ((drm_vblank_offdelay * DRM_HZ)/1000));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700934}
935EXPORT_SYMBOL(drm_vblank_put);
936
Li Peng778c9022009-11-09 12:51:22 +0800937void drm_vblank_off(struct drm_device *dev, int crtc)
938{
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000939 struct drm_pending_vblank_event *e, *t;
940 struct timeval now;
Li Peng778c9022009-11-09 12:51:22 +0800941 unsigned long irqflags;
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000942 unsigned int seq;
Li Peng778c9022009-11-09 12:51:22 +0800943
944 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Mario Kleiner27641c32010-10-23 04:20:23 +0200945 vblank_disable_and_save(dev, crtc);
Li Peng778c9022009-11-09 12:51:22 +0800946 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000947
948 /* Send any queued vblank events, lest the natives grow disquiet */
949 seq = drm_vblank_count_and_time(dev, crtc, &now);
950 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
951 if (e->pipe != crtc)
952 continue;
953 DRM_DEBUG("Sending premature vblank event on disable: \
954 wanted %d, current %d\n",
955 e->event.sequence, seq);
956
957 e->event.sequence = seq;
958 e->event.tv_sec = now.tv_sec;
959 e->event.tv_usec = now.tv_usec;
960 drm_vblank_put(dev, e->pipe);
961 list_move_tail(&e->base.link, &e->base.file_priv->event_list);
962 wake_up_interruptible(&e->base.file_priv->event_wait);
963 trace_drm_vblank_event_delivered(e->base.pid, e->pipe,
964 e->event.sequence);
965 }
966
Li Peng778c9022009-11-09 12:51:22 +0800967 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
968}
969EXPORT_SYMBOL(drm_vblank_off);
970
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700971/**
Dave Airlief453ba02008-11-07 14:05:41 -0800972 * drm_vblank_pre_modeset - account for vblanks across mode sets
973 * @dev: DRM device
974 * @crtc: CRTC in question
975 * @post: post or pre mode set?
976 *
977 * Account for vblank events across mode setting events, which will likely
978 * reset the hardware frame counter.
979 */
980void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
981{
Jerome Glissee77cef92010-01-07 15:39:13 +0100982 /* vblank is not initialized (IRQ not installed ?) */
983 if (!dev->num_crtcs)
984 return;
Dave Airlief453ba02008-11-07 14:05:41 -0800985 /*
986 * To avoid all the problems that might happen if interrupts
987 * were enabled/disabled around or between these calls, we just
988 * have the kernel take a reference on the CRTC (just once though
989 * to avoid corrupting the count if multiple, mismatch calls occur),
990 * so that interrupts remain enabled in the interim.
991 */
992 if (!dev->vblank_inmodeset[crtc]) {
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000993 dev->vblank_inmodeset[crtc] = 0x1;
994 if (drm_vblank_get(dev, crtc) == 0)
995 dev->vblank_inmodeset[crtc] |= 0x2;
Dave Airlief453ba02008-11-07 14:05:41 -0800996 }
997}
998EXPORT_SYMBOL(drm_vblank_pre_modeset);
999
1000void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
1001{
1002 unsigned long irqflags;
1003
1004 if (dev->vblank_inmodeset[crtc]) {
1005 spin_lock_irqsave(&dev->vbl_lock, irqflags);
1006 dev->vblank_disable_allowed = 1;
Dave Airlief453ba02008-11-07 14:05:41 -08001007 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001008
1009 if (dev->vblank_inmodeset[crtc] & 0x2)
1010 drm_vblank_put(dev, crtc);
1011
1012 dev->vblank_inmodeset[crtc] = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001013 }
1014}
1015EXPORT_SYMBOL(drm_vblank_post_modeset);
1016
1017/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001018 * drm_modeset_ctl - handle vblank event counter changes across mode switch
1019 * @DRM_IOCTL_ARGS: standard ioctl arguments
1020 *
1021 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
1022 * ioctls around modesetting so that any lost vblank events are accounted for.
1023 *
1024 * Generally the counter will reset across mode sets. If interrupts are
1025 * enabled around this call, we don't have to do anything since the counter
1026 * will have already been incremented.
1027 */
1028int drm_modeset_ctl(struct drm_device *dev, void *data,
1029 struct drm_file *file_priv)
1030{
1031 struct drm_modeset_ctl *modeset = data;
Dave Airlie19227562011-02-24 08:35:06 +10001032 int ret = 0;
1033 unsigned int crtc;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001034
1035 /* If drm_vblank_init() hasn't been called yet, just no-op */
1036 if (!dev->num_crtcs)
1037 goto out;
1038
1039 crtc = modeset->crtc;
1040 if (crtc >= dev->num_crtcs) {
1041 ret = -EINVAL;
1042 goto out;
1043 }
1044
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001045 switch (modeset->cmd) {
1046 case _DRM_PRE_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001047 drm_vblank_pre_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001048 break;
1049 case _DRM_POST_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001050 drm_vblank_post_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001051 break;
1052 default:
1053 ret = -EINVAL;
1054 break;
1055 }
1056
1057out:
1058 return ret;
1059}
1060
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001061static int drm_queue_vblank_event(struct drm_device *dev, int pipe,
1062 union drm_wait_vblank *vblwait,
1063 struct drm_file *file_priv)
1064{
1065 struct drm_pending_vblank_event *e;
1066 struct timeval now;
1067 unsigned long flags;
1068 unsigned int seq;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001069 int ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001070
1071 e = kzalloc(sizeof *e, GFP_KERNEL);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001072 if (e == NULL) {
1073 ret = -ENOMEM;
1074 goto err_put;
1075 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001076
1077 e->pipe = pipe;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001078 e->base.pid = current->pid;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001079 e->event.base.type = DRM_EVENT_VBLANK;
1080 e->event.base.length = sizeof e->event;
1081 e->event.user_data = vblwait->request.signal;
1082 e->base.event = &e->event.base;
1083 e->base.file_priv = file_priv;
1084 e->base.destroy = (void (*) (struct drm_pending_event *)) kfree;
1085
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001086 spin_lock_irqsave(&dev->event_lock, flags);
1087
1088 if (file_priv->event_space < sizeof e->event) {
Chris Wilsonea5d5522010-12-01 19:41:31 +00001089 ret = -EBUSY;
1090 goto err_unlock;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001091 }
1092
1093 file_priv->event_space -= sizeof e->event;
Mario Kleiner27641c32010-10-23 04:20:23 +02001094 seq = drm_vblank_count_and_time(dev, pipe, &now);
1095
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001096 if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) &&
1097 (seq - vblwait->request.sequence) <= (1 << 23)) {
1098 vblwait->request.sequence = seq + 1;
Jesse Barnes4a921642009-11-10 08:21:25 +00001099 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001100 }
1101
1102 DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n",
1103 vblwait->request.sequence, seq, pipe);
1104
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001105 trace_drm_vblank_event_queued(current->pid, pipe,
1106 vblwait->request.sequence);
1107
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001108 e->event.sequence = vblwait->request.sequence;
1109 if ((seq - vblwait->request.sequence) <= (1 << 23)) {
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001110 e->event.sequence = seq;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001111 e->event.tv_sec = now.tv_sec;
1112 e->event.tv_usec = now.tv_usec;
Dan Carpenter6f331622010-12-09 08:35:40 +03001113 drm_vblank_put(dev, pipe);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001114 list_add_tail(&e->base.link, &e->base.file_priv->event_list);
1115 wake_up_interruptible(&e->base.file_priv->event_wait);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001116 vblwait->reply.sequence = seq;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001117 trace_drm_vblank_event_delivered(current->pid, pipe,
1118 vblwait->request.sequence);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001119 } else {
1120 list_add_tail(&e->base.link, &dev->vblank_event_list);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001121 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001122 }
1123
1124 spin_unlock_irqrestore(&dev->event_lock, flags);
1125
1126 return 0;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001127
1128err_unlock:
1129 spin_unlock_irqrestore(&dev->event_lock, flags);
1130 kfree(e);
1131err_put:
Dan Carpenter6f331622010-12-09 08:35:40 +03001132 drm_vblank_put(dev, pipe);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001133 return ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001134}
1135
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001136/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 * Wait for VBLANK.
1138 *
1139 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +10001140 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 * \param cmd command.
1142 * \param data user argument, pointing to a drm_wait_vblank structure.
1143 * \return zero on success or a negative number on failure.
1144 *
Eric Anholt30b23632009-01-27 21:19:41 -08001145 * This function enables the vblank interrupt on the pipe requested, then
1146 * sleeps waiting for the requested sequence number to occur, and drops
1147 * the vblank interrupt refcount afterwards. (vblank irq disable follows that
1148 * after a timeout with no further vblank waits scheduled).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001150int drm_wait_vblank(struct drm_device *dev, void *data,
1151 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Eric Anholtc153f452007-09-03 12:06:45 +10001153 union drm_wait_vblank *vblwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 int ret = 0;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001155 unsigned int flags, seq, crtc, high_crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Jordan Crousedcdb1672010-05-27 13:40:25 -06001157 if ((!drm_dev_to_irq(dev)) || (!dev->irq_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 return -EINVAL;
1159
Eric Anholt30b23632009-01-27 21:19:41 -08001160 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
1161 return -EINVAL;
1162
Eric Anholtc153f452007-09-03 12:06:45 +10001163 if (vblwait->request.type &
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001164 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1165 _DRM_VBLANK_HIGH_CRTC_MASK)) {
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001166 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001167 vblwait->request.type,
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001168 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1169 _DRM_VBLANK_HIGH_CRTC_MASK));
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001170 return -EINVAL;
1171 }
1172
Eric Anholtc153f452007-09-03 12:06:45 +10001173 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001174 high_crtc = (vblwait->request.type & _DRM_VBLANK_HIGH_CRTC_MASK);
1175 if (high_crtc)
1176 crtc = high_crtc >> _DRM_VBLANK_HIGH_CRTC_SHIFT;
1177 else
1178 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001179 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001180 return -EINVAL;
1181
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001182 ret = drm_vblank_get(dev, crtc);
1183 if (ret) {
Paul Rolland8d3457e2009-08-09 12:24:01 +10001184 DRM_DEBUG("failed to acquire vblank counter, %d\n", ret);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001185 return ret;
1186 }
1187 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001188
Eric Anholtc153f452007-09-03 12:06:45 +10001189 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +10001191 vblwait->request.sequence += seq;
1192 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 case _DRM_VBLANK_ABSOLUTE:
1194 break;
1195 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001196 ret = -EINVAL;
1197 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001200 if (flags & _DRM_VBLANK_EVENT)
1201 return drm_queue_vblank_event(dev, crtc, vblwait, file_priv);
1202
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001203 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +10001204 (seq - vblwait->request.sequence) <= (1<<23)) {
1205 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001206 }
1207
Eric Anholt30b23632009-01-27 21:19:41 -08001208 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
1209 vblwait->request.sequence, crtc);
1210 dev->last_vblank_wait[crtc] = vblwait->request.sequence;
1211 DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ,
1212 (((drm_vblank_count(dev, crtc) -
1213 vblwait->request.sequence) <= (1 << 23)) ||
1214 !dev->irq_enabled));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Eric Anholt30b23632009-01-27 21:19:41 -08001216 if (ret != -EINTR) {
1217 struct timeval now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Mario Kleiner27641c32010-10-23 04:20:23 +02001219 vblwait->reply.sequence = drm_vblank_count_and_time(dev, crtc, &now);
Eric Anholt30b23632009-01-27 21:19:41 -08001220 vblwait->reply.tval_sec = now.tv_sec;
1221 vblwait->reply.tval_usec = now.tv_usec;
Mario Kleiner27641c32010-10-23 04:20:23 +02001222
Eric Anholt30b23632009-01-27 21:19:41 -08001223 DRM_DEBUG("returning %d to client\n",
1224 vblwait->reply.sequence);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 } else {
Eric Anholt30b23632009-01-27 21:19:41 -08001226 DRM_DEBUG("vblank wait interrupted by signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
1228
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001229done:
1230 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return ret;
1232}
1233
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001234void drm_handle_vblank_events(struct drm_device *dev, int crtc)
1235{
1236 struct drm_pending_vblank_event *e, *t;
1237 struct timeval now;
1238 unsigned long flags;
1239 unsigned int seq;
1240
Mario Kleiner27641c32010-10-23 04:20:23 +02001241 seq = drm_vblank_count_and_time(dev, crtc, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001242
1243 spin_lock_irqsave(&dev->event_lock, flags);
1244
1245 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
1246 if (e->pipe != crtc)
1247 continue;
1248 if ((seq - e->event.sequence) > (1<<23))
1249 continue;
1250
1251 DRM_DEBUG("vblank event on %d, current %d\n",
1252 e->event.sequence, seq);
1253
1254 e->event.sequence = seq;
1255 e->event.tv_sec = now.tv_sec;
1256 e->event.tv_usec = now.tv_usec;
1257 drm_vblank_put(dev, e->pipe);
1258 list_move_tail(&e->base.link, &e->base.file_priv->event_list);
1259 wake_up_interruptible(&e->base.file_priv->event_wait);
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001260 trace_drm_vblank_event_delivered(e->base.pid, e->pipe,
1261 e->event.sequence);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001262 }
1263
1264 spin_unlock_irqrestore(&dev->event_lock, flags);
Jesse Barnesac2874b2010-07-01 16:47:31 -07001265
1266 trace_drm_vblank_event(crtc, seq);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001267}
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001270 * drm_handle_vblank - handle a vblank event
1271 * @dev: DRM device
1272 * @crtc: where this event occurred
1273 *
1274 * Drivers should call this routine in their vblank interrupt handlers to
1275 * update the vblank counter and send any signals that may be pending.
1276 */
Chris Wilson78c6e172011-01-31 10:48:04 +00001277bool drm_handle_vblank(struct drm_device *dev, int crtc)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001278{
Mario Kleiner27641c32010-10-23 04:20:23 +02001279 u32 vblcount;
1280 s64 diff_ns;
1281 struct timeval tvblank;
1282 unsigned long irqflags;
1283
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001284 if (!dev->num_crtcs)
Chris Wilson78c6e172011-01-31 10:48:04 +00001285 return false;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001286
Mario Kleiner27641c32010-10-23 04:20:23 +02001287 /* Need timestamp lock to prevent concurrent execution with
1288 * vblank enable/disable, as this would cause inconsistent
1289 * or corrupted timestamps and vblank counts.
1290 */
1291 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
1292
1293 /* Vblank irq handling disabled. Nothing to do. */
1294 if (!dev->vblank_enabled[crtc]) {
1295 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001296 return false;
Mario Kleiner27641c32010-10-23 04:20:23 +02001297 }
1298
1299 /* Fetch corresponding timestamp for this vblank interval from
1300 * driver and store it in proper slot of timestamp ringbuffer.
1301 */
1302
1303 /* Get current timestamp and count. */
1304 vblcount = atomic_read(&dev->_vblank_count[crtc]);
1305 drm_get_last_vbltimestamp(dev, crtc, &tvblank, DRM_CALLED_FROM_VBLIRQ);
1306
1307 /* Compute time difference to timestamp of last vblank */
1308 diff_ns = timeval_to_ns(&tvblank) -
1309 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
1310
1311 /* Update vblank timestamp and count if at least
1312 * DRM_REDUNDANT_VBLIRQ_THRESH_NS nanoseconds
1313 * difference between last stored timestamp and current
1314 * timestamp. A smaller difference means basically
1315 * identical timestamps. Happens if this vblank has
1316 * been already processed and this is a redundant call,
1317 * e.g., due to spurious vblank interrupts. We need to
1318 * ignore those for accounting.
1319 */
Mario Kleinerc4cc3832011-02-21 05:42:00 +01001320 if (abs64(diff_ns) > DRM_REDUNDANT_VBLIRQ_THRESH_NS) {
Mario Kleiner27641c32010-10-23 04:20:23 +02001321 /* Store new timestamp in ringbuffer. */
1322 vblanktimestamp(dev, crtc, vblcount + 1) = tvblank;
Mario Kleiner27641c32010-10-23 04:20:23 +02001323
1324 /* Increment cooked vblank count. This also atomically commits
1325 * the timestamp computed above.
1326 */
Mario Kleinerbc215122011-02-21 05:42:01 +01001327 smp_mb__before_atomic_inc();
Mario Kleiner27641c32010-10-23 04:20:23 +02001328 atomic_inc(&dev->_vblank_count[crtc]);
Mario Kleinerbc215122011-02-21 05:42:01 +01001329 smp_mb__after_atomic_inc();
Mario Kleiner27641c32010-10-23 04:20:23 +02001330 } else {
1331 DRM_DEBUG("crtc %d: Redundant vblirq ignored. diff_ns = %d\n",
1332 crtc, (int) diff_ns);
1333 }
1334
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001335 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001336 drm_handle_vblank_events(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +02001337
1338 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001339 return true;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001340}
1341EXPORT_SYMBOL(drm_handle_vblank);