blob: 4d3760c63964c466097a0675566ebde9990e776a [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>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040043#include <linux/export.h>
Mario Kleiner27641c32010-10-23 04:20:23 +020044
45/* Access macro for slots in vblank timestamp ringbuffer. */
46#define vblanktimestamp(dev, crtc, count) ( \
47 (dev)->_vblank_time[(crtc) * DRM_VBLANKTIME_RBSIZE + \
48 ((count) % DRM_VBLANKTIME_RBSIZE)])
49
50/* Retry timestamp calculation up to 3 times to satisfy
51 * drm_timestamp_precision before giving up.
52 */
53#define DRM_TIMESTAMP_MAXRETRIES 3
54
55/* Threshold in nanoseconds for detection of redundant
56 * vblank irq in drm_handle_vblank(). 1 msec should be ok.
57 */
58#define DRM_REDUNDANT_VBLIRQ_THRESH_NS 1000000
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/**
61 * Get interrupt from bus id.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100062 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100064 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 * \param cmd command.
66 * \param arg user argument, pointing to a drm_irq_busid structure.
67 * \return zero on success or a negative number on failure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100068 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 * Finds the PCI device with the specified bus id and gets its IRQ number.
70 * This IOCTL is deprecated, and will now return EINVAL for any busid not equal
71 * to that of the device that this DRM instance attached to.
72 */
Eric Anholtc153f452007-09-03 12:06:45 +100073int drm_irq_by_busid(struct drm_device *dev, void *data,
74 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Eric Anholtc153f452007-09-03 12:06:45 +100076 struct drm_irq_busid *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Dave Airlie8410ea32010-12-15 03:16:38 +100078 if (!dev->driver->bus->irq_by_busid)
Jordan Crousedcdb1672010-05-27 13:40:25 -060079 return -EINVAL;
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
82 return -EINVAL;
83
Dave Airlie8410ea32010-12-15 03:16:38 +100084 return dev->driver->bus->irq_by_busid(dev, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Mario Kleiner27641c32010-10-23 04:20:23 +020087/*
88 * Clear vblank timestamp buffer for a crtc.
89 */
90static void clear_vblank_timestamps(struct drm_device *dev, int crtc)
91{
92 memset(&dev->_vblank_time[crtc * DRM_VBLANKTIME_RBSIZE], 0,
93 DRM_VBLANKTIME_RBSIZE * sizeof(struct timeval));
94}
95
96/*
97 * Disable vblank irq's on crtc, make sure that last vblank count
98 * of hardware and corresponding consistent software vblank counter
99 * are preserved, even if there are any spurious vblank irq's after
100 * disable.
101 */
102static void vblank_disable_and_save(struct drm_device *dev, int crtc)
103{
104 unsigned long irqflags;
105 u32 vblcount;
106 s64 diff_ns;
107 int vblrc;
108 struct timeval tvblank;
109
110 /* Prevent vblank irq processing while disabling vblank irqs,
111 * so no updates of timestamps or count can happen after we've
112 * disabled. Needed to prevent races in case of delayed irq's.
113 * Disable preemption, so vblank_time_lock is held as short as
114 * possible, even under a kernel with PREEMPT_RT patches.
115 */
116 preempt_disable();
117 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
118
119 dev->driver->disable_vblank(dev, crtc);
120 dev->vblank_enabled[crtc] = 0;
121
122 /* No further vblank irq's will be processed after
123 * this point. Get current hardware vblank count and
124 * vblank timestamp, repeat until they are consistent.
125 *
126 * FIXME: There is still a race condition here and in
127 * drm_update_vblank_count() which can cause off-by-one
128 * reinitialization of software vblank counter. If gpu
129 * vblank counter doesn't increment exactly at the leading
130 * edge of a vblank interval, then we can lose 1 count if
131 * we happen to execute between start of vblank and the
132 * delayed gpu counter increment.
133 */
134 do {
135 dev->last_vblank[crtc] = dev->driver->get_vblank_counter(dev, crtc);
136 vblrc = drm_get_last_vbltimestamp(dev, crtc, &tvblank, 0);
137 } while (dev->last_vblank[crtc] != dev->driver->get_vblank_counter(dev, crtc));
138
139 /* Compute time difference to stored timestamp of last vblank
140 * as updated by last invocation of drm_handle_vblank() in vblank irq.
141 */
142 vblcount = atomic_read(&dev->_vblank_count[crtc]);
143 diff_ns = timeval_to_ns(&tvblank) -
144 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
145
146 /* If there is at least 1 msec difference between the last stored
147 * timestamp and tvblank, then we are currently executing our
148 * disable inside a new vblank interval, the tvblank timestamp
149 * corresponds to this new vblank interval and the irq handler
150 * for this vblank didn't run yet and won't run due to our disable.
151 * Therefore we need to do the job of drm_handle_vblank() and
152 * increment the vblank counter by one to account for this vblank.
153 *
154 * Skip this step if there isn't any high precision timestamp
155 * available. In that case we can't account for this and just
156 * hope for the best.
157 */
Mario Kleinerbc215122011-02-21 05:42:01 +0100158 if ((vblrc > 0) && (abs64(diff_ns) > 1000000)) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200159 atomic_inc(&dev->_vblank_count[crtc]);
Mario Kleinerbc215122011-02-21 05:42:01 +0100160 smp_mb__after_atomic_inc();
161 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200162
163 /* Invalidate all timestamps while vblank irq's are off. */
164 clear_vblank_timestamps(dev, crtc);
165
166 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
167 preempt_enable();
168}
169
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700170static void vblank_disable_fn(unsigned long arg)
171{
172 struct drm_device *dev = (struct drm_device *)arg;
173 unsigned long irqflags;
174 int i;
175
176 if (!dev->vblank_disable_allowed)
177 return;
178
179 for (i = 0; i < dev->num_crtcs; i++) {
180 spin_lock_irqsave(&dev->vbl_lock, irqflags);
181 if (atomic_read(&dev->vblank_refcount[i]) == 0 &&
182 dev->vblank_enabled[i]) {
183 DRM_DEBUG("disabling vblank on crtc %d\n", i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200184 vblank_disable_and_save(dev, i);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700185 }
186 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
187 }
188}
189
Keith Packard52440212008-11-18 09:30:25 -0800190void drm_vblank_cleanup(struct drm_device *dev)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700191{
192 /* Bail if the driver didn't call drm_vblank_init() */
193 if (dev->num_crtcs == 0)
194 return;
195
196 del_timer(&dev->vblank_disable_timer);
197
198 vblank_disable_fn((unsigned long)dev);
199
Eric Anholt9a298b22009-03-24 12:23:04 -0700200 kfree(dev->vbl_queue);
201 kfree(dev->_vblank_count);
202 kfree(dev->vblank_refcount);
203 kfree(dev->vblank_enabled);
204 kfree(dev->last_vblank);
205 kfree(dev->last_vblank_wait);
206 kfree(dev->vblank_inmodeset);
Mario Kleiner27641c32010-10-23 04:20:23 +0200207 kfree(dev->_vblank_time);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700208
209 dev->num_crtcs = 0;
210}
Jerome Glissee77cef92010-01-07 15:39:13 +0100211EXPORT_SYMBOL(drm_vblank_cleanup);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700212
213int drm_vblank_init(struct drm_device *dev, int num_crtcs)
214{
215 int i, ret = -ENOMEM;
216
217 setup_timer(&dev->vblank_disable_timer, vblank_disable_fn,
218 (unsigned long)dev);
219 spin_lock_init(&dev->vbl_lock);
Mario Kleiner27641c32010-10-23 04:20:23 +0200220 spin_lock_init(&dev->vblank_time_lock);
221
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700222 dev->num_crtcs = num_crtcs;
223
Eric Anholt9a298b22009-03-24 12:23:04 -0700224 dev->vbl_queue = kmalloc(sizeof(wait_queue_head_t) * num_crtcs,
225 GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700226 if (!dev->vbl_queue)
227 goto err;
228
Eric Anholt9a298b22009-03-24 12:23:04 -0700229 dev->_vblank_count = kmalloc(sizeof(atomic_t) * num_crtcs, GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700230 if (!dev->_vblank_count)
231 goto err;
232
Eric Anholt9a298b22009-03-24 12:23:04 -0700233 dev->vblank_refcount = kmalloc(sizeof(atomic_t) * num_crtcs,
234 GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700235 if (!dev->vblank_refcount)
236 goto err;
237
Eric Anholt9a298b22009-03-24 12:23:04 -0700238 dev->vblank_enabled = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700239 if (!dev->vblank_enabled)
240 goto err;
241
Eric Anholt9a298b22009-03-24 12:23:04 -0700242 dev->last_vblank = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700243 if (!dev->last_vblank)
244 goto err;
245
Eric Anholt9a298b22009-03-24 12:23:04 -0700246 dev->last_vblank_wait = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL);
Eric Anholtfede5c92008-12-19 17:23:38 -0800247 if (!dev->last_vblank_wait)
248 goto err;
249
Eric Anholt9a298b22009-03-24 12:23:04 -0700250 dev->vblank_inmodeset = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700251 if (!dev->vblank_inmodeset)
252 goto err;
253
Mario Kleiner27641c32010-10-23 04:20:23 +0200254 dev->_vblank_time = kcalloc(num_crtcs * DRM_VBLANKTIME_RBSIZE,
255 sizeof(struct timeval), GFP_KERNEL);
256 if (!dev->_vblank_time)
257 goto err;
258
259 DRM_INFO("Supports vblank timestamp caching Rev 1 (10.10.2010).\n");
260
261 /* Driver specific high-precision vblank timestamping supported? */
262 if (dev->driver->get_vblank_timestamp)
263 DRM_INFO("Driver supports precise vblank timestamp query.\n");
264 else
265 DRM_INFO("No driver support for vblank timestamp query.\n");
266
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700267 /* Zero per-crtc vblank stuff */
268 for (i = 0; i < num_crtcs; i++) {
269 init_waitqueue_head(&dev->vbl_queue[i]);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700270 atomic_set(&dev->_vblank_count[i], 0);
271 atomic_set(&dev->vblank_refcount[i], 0);
272 }
273
274 dev->vblank_disable_allowed = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700275 return 0;
276
277err:
278 drm_vblank_cleanup(dev);
279 return ret;
280}
281EXPORT_SYMBOL(drm_vblank_init);
282
Dave Airlie28d52042009-09-21 14:33:58 +1000283static void drm_irq_vgaarb_nokms(void *cookie, bool state)
284{
285 struct drm_device *dev = cookie;
286
287 if (dev->driver->vgaarb_irq) {
288 dev->driver->vgaarb_irq(dev, state);
289 return;
290 }
291
292 if (!dev->irq_enabled)
293 return;
294
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000295 if (state) {
296 if (dev->driver->irq_uninstall)
297 dev->driver->irq_uninstall(dev);
298 } else {
299 if (dev->driver->irq_preinstall)
300 dev->driver->irq_preinstall(dev);
301 if (dev->driver->irq_postinstall)
302 dev->driver->irq_postinstall(dev);
Dave Airlie28d52042009-09-21 14:33:58 +1000303 }
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/**
307 * Install IRQ handler.
308 *
309 * \param dev DRM device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 *
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700311 * Initializes the IRQ related data. Installs the handler, calling the driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions
313 * before and after the installation.
314 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700315int drm_irq_install(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700317 int ret = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000318 unsigned long sh_flags = 0;
Dave Airlieb8da7de2009-06-02 16:50:35 +1000319 char *irqname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
322 return -EINVAL;
323
Jordan Crousedcdb1672010-05-27 13:40:25 -0600324 if (drm_dev_to_irq(dev) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return -EINVAL;
326
Dave Airlie30e2fb12006-02-02 19:37:46 +1100327 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 /* Driver must have been initialized */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000330 if (!dev->dev_private) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100331 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return -EINVAL;
333 }
334
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000335 if (dev->irq_enabled) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100336 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return -EBUSY;
338 }
339 dev->irq_enabled = 1;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100340 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Jordan Crousedcdb1672010-05-27 13:40:25 -0600342 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000344 /* Before installing handler */
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000345 if (dev->driver->irq_preinstall)
346 dev->driver->irq_preinstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000348 /* Install handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
Thomas Gleixner935f6e32006-07-01 19:29:34 -0700350 sh_flags = IRQF_SHARED;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000351
Dave Airlieb8da7de2009-06-02 16:50:35 +1000352 if (dev->devname)
353 irqname = dev->devname;
354 else
355 irqname = dev->driver->name;
356
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700357 ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler,
Dave Airlieb8da7de2009-06-02 16:50:35 +1000358 sh_flags, irqname, dev);
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700359
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000360 if (ret < 0) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100361 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100363 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return ret;
365 }
366
Dave Airlie28d52042009-09-21 14:33:58 +1000367 if (!drm_core_check_feature(dev, DRIVER_MODESET))
368 vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL);
369
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000370 /* After installing handler */
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000371 if (dev->driver->irq_postinstall)
372 ret = dev->driver->irq_postinstall(dev);
373
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700374 if (ret < 0) {
375 mutex_lock(&dev->struct_mutex);
376 dev->irq_enabled = 0;
377 mutex_unlock(&dev->struct_mutex);
Joonyoung Shime1c44ac2011-08-04 05:41:00 +0000378 if (!drm_core_check_feature(dev, DRIVER_MODESET))
379 vga_client_register(dev->pdev, NULL, NULL, NULL);
380 free_irq(drm_dev_to_irq(dev), dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700383 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700385EXPORT_SYMBOL(drm_irq_install);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387/**
388 * Uninstall the IRQ handler.
389 *
390 * \param dev DRM device.
391 *
392 * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq.
393 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200394int drm_irq_uninstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800396 unsigned long irqflags;
397 int irq_enabled, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
400 return -EINVAL;
401
Dave Airlie30e2fb12006-02-02 19:37:46 +1100402 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 irq_enabled = dev->irq_enabled;
404 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100405 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800407 /*
408 * Wake up any waiters so they don't hang.
409 */
Ben Skeggsbde48892011-07-04 12:52:27 +1000410 if (dev->num_crtcs) {
411 spin_lock_irqsave(&dev->vbl_lock, irqflags);
412 for (i = 0; i < dev->num_crtcs; i++) {
413 DRM_WAKEUP(&dev->vbl_queue[i]);
414 dev->vblank_enabled[i] = 0;
415 dev->last_vblank[i] =
416 dev->driver->get_vblank_counter(dev, i);
417 }
418 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800419 }
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800420
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000421 if (!irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return -EINVAL;
423
Jordan Crousedcdb1672010-05-27 13:40:25 -0600424 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Dave Airlie28d52042009-09-21 14:33:58 +1000426 if (!drm_core_check_feature(dev, DRIVER_MODESET))
427 vga_client_register(dev->pdev, NULL, NULL, NULL);
428
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000429 if (dev->driver->irq_uninstall)
430 dev->driver->irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Jordan Crousedcdb1672010-05-27 13:40:25 -0600432 free_irq(drm_dev_to_irq(dev), dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 return 0;
435}
436EXPORT_SYMBOL(drm_irq_uninstall);
437
438/**
439 * IRQ control ioctl.
440 *
441 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000442 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * \param cmd command.
444 * \param arg user argument, pointing to a drm_control structure.
445 * \return zero on success or a negative number on failure.
446 *
447 * Calls irq_install() or irq_uninstall() according to \p arg.
448 */
Eric Anholtc153f452007-09-03 12:06:45 +1000449int drm_control(struct drm_device *dev, void *data,
450 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Eric Anholtc153f452007-09-03 12:06:45 +1000452 struct drm_control *ctl = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000453
Mario Kleiner27641c32010-10-23 04:20:23 +0200454 /* if we haven't irq we fallback for compatibility reasons -
455 * this used to be a separate function in drm_dma.h
456 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Eric Anholtc153f452007-09-03 12:06:45 +1000459 switch (ctl->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 case DRM_INST_HANDLER:
461 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
462 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800463 if (drm_core_check_feature(dev, DRIVER_MODESET))
464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
Jordan Crousedcdb1672010-05-27 13:40:25 -0600466 ctl->irq != drm_dev_to_irq(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000468 return drm_irq_install(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 case DRM_UNINST_HANDLER:
470 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
471 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800472 if (drm_core_check_feature(dev, DRIVER_MODESET))
473 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000474 return drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 default:
476 return -EINVAL;
477 }
478}
479
480/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200481 * drm_calc_timestamping_constants - Calculate and
482 * store various constants which are later needed by
483 * vblank and swap-completion timestamping, e.g, by
484 * drm_calc_vbltimestamp_from_scanoutpos().
485 * They are derived from crtc's true scanout timing,
486 * so they take things like panel scaling or other
487 * adjustments into account.
488 *
489 * @crtc drm_crtc whose timestamp constants should be updated.
490 *
491 */
492void drm_calc_timestamping_constants(struct drm_crtc *crtc)
493{
494 s64 linedur_ns = 0, pixeldur_ns = 0, framedur_ns = 0;
495 u64 dotclock;
496
497 /* Dot clock in Hz: */
498 dotclock = (u64) crtc->hwmode.clock * 1000;
499
Mario Kleiner9be6f8a2011-02-21 05:42:02 +0100500 /* Fields of interlaced scanout modes are only halve a frame duration.
501 * Double the dotclock to get halve the frame-/line-/pixelduration.
502 */
503 if (crtc->hwmode.flags & DRM_MODE_FLAG_INTERLACE)
504 dotclock *= 2;
505
Mario Kleiner27641c32010-10-23 04:20:23 +0200506 /* Valid dotclock? */
507 if (dotclock > 0) {
508 /* Convert scanline length in pixels and video dot clock to
509 * line duration, frame duration and pixel duration in
510 * nanoseconds:
511 */
512 pixeldur_ns = (s64) div64_u64(1000000000, dotclock);
513 linedur_ns = (s64) div64_u64(((u64) crtc->hwmode.crtc_htotal *
514 1000000000), dotclock);
515 framedur_ns = (s64) crtc->hwmode.crtc_vtotal * linedur_ns;
516 } else
517 DRM_ERROR("crtc %d: Can't calculate constants, dotclock = 0!\n",
518 crtc->base.id);
519
520 crtc->pixeldur_ns = pixeldur_ns;
521 crtc->linedur_ns = linedur_ns;
522 crtc->framedur_ns = framedur_ns;
523
524 DRM_DEBUG("crtc %d: hwmode: htotal %d, vtotal %d, vdisplay %d\n",
525 crtc->base.id, crtc->hwmode.crtc_htotal,
526 crtc->hwmode.crtc_vtotal, crtc->hwmode.crtc_vdisplay);
527 DRM_DEBUG("crtc %d: clock %d kHz framedur %d linedur %d, pixeldur %d\n",
528 crtc->base.id, (int) dotclock/1000, (int) framedur_ns,
529 (int) linedur_ns, (int) pixeldur_ns);
530}
531EXPORT_SYMBOL(drm_calc_timestamping_constants);
532
533/**
534 * drm_calc_vbltimestamp_from_scanoutpos - helper routine for kms
535 * drivers. Implements calculation of exact vblank timestamps from
536 * given drm_display_mode timings and current video scanout position
537 * of a crtc. This can be called from within get_vblank_timestamp()
538 * implementation of a kms driver to implement the actual timestamping.
539 *
540 * Should return timestamps conforming to the OML_sync_control OpenML
541 * extension specification. The timestamp corresponds to the end of
542 * the vblank interval, aka start of scanout of topmost-leftmost display
543 * pixel in the following video frame.
544 *
545 * Requires support for optional dev->driver->get_scanout_position()
546 * in kms driver, plus a bit of setup code to provide a drm_display_mode
547 * that corresponds to the true scanout timing.
548 *
549 * The current implementation only handles standard video modes. It
550 * returns as no operation if a doublescan or interlaced video mode is
551 * active. Higher level code is expected to handle this.
552 *
553 * @dev: DRM device.
554 * @crtc: Which crtc's vblank timestamp to retrieve.
555 * @max_error: Desired maximum allowable error in timestamps (nanosecs).
556 * On return contains true maximum error of timestamp.
557 * @vblank_time: Pointer to struct timeval which should receive the timestamp.
558 * @flags: Flags to pass to driver:
559 * 0 = Default.
560 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler.
561 * @refcrtc: drm_crtc* of crtc which defines scanout timing.
562 *
563 * Returns negative value on error, failure or if not supported in current
564 * video mode:
565 *
566 * -EINVAL - Invalid crtc.
567 * -EAGAIN - Temporary unavailable, e.g., called before initial modeset.
568 * -ENOTSUPP - Function not supported in current display mode.
569 * -EIO - Failed, e.g., due to failed scanout position query.
570 *
571 * Returns or'ed positive status flags on success:
572 *
573 * DRM_VBLANKTIME_SCANOUTPOS_METHOD - Signal this method used for timestamping.
574 * DRM_VBLANKTIME_INVBL - Timestamp taken while scanout was in vblank interval.
575 *
576 */
577int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, int crtc,
578 int *max_error,
579 struct timeval *vblank_time,
580 unsigned flags,
581 struct drm_crtc *refcrtc)
582{
583 struct timeval stime, raw_time;
584 struct drm_display_mode *mode;
585 int vbl_status, vtotal, vdisplay;
586 int vpos, hpos, i;
587 s64 framedur_ns, linedur_ns, pixeldur_ns, delta_ns, duration_ns;
588 bool invbl;
589
590 if (crtc < 0 || crtc >= dev->num_crtcs) {
591 DRM_ERROR("Invalid crtc %d\n", crtc);
592 return -EINVAL;
593 }
594
595 /* Scanout position query not supported? Should not happen. */
596 if (!dev->driver->get_scanout_position) {
597 DRM_ERROR("Called from driver w/o get_scanout_position()!?\n");
598 return -EIO;
599 }
600
601 mode = &refcrtc->hwmode;
602 vtotal = mode->crtc_vtotal;
603 vdisplay = mode->crtc_vdisplay;
604
605 /* Durations of frames, lines, pixels in nanoseconds. */
606 framedur_ns = refcrtc->framedur_ns;
607 linedur_ns = refcrtc->linedur_ns;
608 pixeldur_ns = refcrtc->pixeldur_ns;
609
610 /* If mode timing undefined, just return as no-op:
611 * Happens during initial modesetting of a crtc.
612 */
613 if (vtotal <= 0 || vdisplay <= 0 || framedur_ns == 0) {
614 DRM_DEBUG("crtc %d: Noop due to uninitialized mode.\n", crtc);
615 return -EAGAIN;
616 }
617
Mario Kleiner27641c32010-10-23 04:20:23 +0200618 /* Get current scanout position with system timestamp.
619 * Repeat query up to DRM_TIMESTAMP_MAXRETRIES times
620 * if single query takes longer than max_error nanoseconds.
621 *
622 * This guarantees a tight bound on maximum error if
623 * code gets preempted or delayed for some reason.
624 */
625 for (i = 0; i < DRM_TIMESTAMP_MAXRETRIES; i++) {
626 /* Disable preemption to make it very likely to
627 * succeed in the first iteration even on PREEMPT_RT kernel.
628 */
629 preempt_disable();
630
631 /* Get system timestamp before query. */
632 do_gettimeofday(&stime);
633
634 /* Get vertical and horizontal scanout pos. vpos, hpos. */
635 vbl_status = dev->driver->get_scanout_position(dev, crtc, &vpos, &hpos);
636
637 /* Get system timestamp after query. */
638 do_gettimeofday(&raw_time);
639
640 preempt_enable();
641
642 /* Return as no-op if scanout query unsupported or failed. */
643 if (!(vbl_status & DRM_SCANOUTPOS_VALID)) {
644 DRM_DEBUG("crtc %d : scanoutpos query failed [%d].\n",
645 crtc, vbl_status);
646 return -EIO;
647 }
648
649 duration_ns = timeval_to_ns(&raw_time) - timeval_to_ns(&stime);
650
651 /* Accept result with < max_error nsecs timing uncertainty. */
652 if (duration_ns <= (s64) *max_error)
653 break;
654 }
655
656 /* Noisy system timing? */
657 if (i == DRM_TIMESTAMP_MAXRETRIES) {
658 DRM_DEBUG("crtc %d: Noisy timestamp %d us > %d us [%d reps].\n",
659 crtc, (int) duration_ns/1000, *max_error/1000, i);
660 }
661
662 /* Return upper bound of timestamp precision error. */
663 *max_error = (int) duration_ns;
664
665 /* Check if in vblank area:
666 * vpos is >=0 in video scanout area, but negative
667 * within vblank area, counting down the number of lines until
668 * start of scanout.
669 */
670 invbl = vbl_status & DRM_SCANOUTPOS_INVBL;
671
672 /* Convert scanout position into elapsed time at raw_time query
673 * since start of scanout at first display scanline. delta_ns
674 * can be negative if start of scanout hasn't happened yet.
675 */
676 delta_ns = (s64) vpos * linedur_ns + (s64) hpos * pixeldur_ns;
677
678 /* Is vpos outside nominal vblank area, but less than
679 * 1/100 of a frame height away from start of vblank?
680 * If so, assume this isn't a massively delayed vblank
681 * interrupt, but a vblank interrupt that fired a few
682 * microseconds before true start of vblank. Compensate
683 * by adding a full frame duration to the final timestamp.
684 * Happens, e.g., on ATI R500, R600.
685 *
686 * We only do this if DRM_CALLED_FROM_VBLIRQ.
687 */
688 if ((flags & DRM_CALLED_FROM_VBLIRQ) && !invbl &&
689 ((vdisplay - vpos) < vtotal / 100)) {
690 delta_ns = delta_ns - framedur_ns;
691
692 /* Signal this correction as "applied". */
693 vbl_status |= 0x8;
694 }
695
696 /* Subtract time delta from raw timestamp to get final
697 * vblank_time timestamp for end of vblank.
698 */
699 *vblank_time = ns_to_timeval(timeval_to_ns(&raw_time) - delta_ns);
700
Joe Perchesbbb0aef2011-04-17 20:35:52 -0700701 DRM_DEBUG("crtc %d : v %d p(%d,%d)@ %ld.%ld -> %ld.%ld [e %d us, %d rep]\n",
702 crtc, (int)vbl_status, hpos, vpos,
703 (long)raw_time.tv_sec, (long)raw_time.tv_usec,
704 (long)vblank_time->tv_sec, (long)vblank_time->tv_usec,
705 (int)duration_ns/1000, i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200706
707 vbl_status = DRM_VBLANKTIME_SCANOUTPOS_METHOD;
708 if (invbl)
709 vbl_status |= DRM_VBLANKTIME_INVBL;
710
711 return vbl_status;
712}
713EXPORT_SYMBOL(drm_calc_vbltimestamp_from_scanoutpos);
714
715/**
716 * drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent
717 * vblank interval.
718 *
719 * @dev: DRM device
720 * @crtc: which crtc's vblank timestamp to retrieve
721 * @tvblank: Pointer to target struct timeval which should receive the timestamp
722 * @flags: Flags to pass to driver:
723 * 0 = Default.
724 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler.
725 *
726 * Fetches the system timestamp corresponding to the time of the most recent
727 * vblank interval on specified crtc. May call into kms-driver to
728 * compute the timestamp with a high-precision GPU specific method.
729 *
730 * Returns zero if timestamp originates from uncorrected do_gettimeofday()
731 * call, i.e., it isn't very precisely locked to the true vblank.
732 *
733 * Returns non-zero if timestamp is considered to be very precise.
734 */
735u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
736 struct timeval *tvblank, unsigned flags)
737{
738 int ret = 0;
739
740 /* Define requested maximum error on timestamps (nanoseconds). */
741 int max_error = (int) drm_timestamp_precision * 1000;
742
743 /* Query driver if possible and precision timestamping enabled. */
744 if (dev->driver->get_vblank_timestamp && (max_error > 0)) {
745 ret = dev->driver->get_vblank_timestamp(dev, crtc, &max_error,
746 tvblank, flags);
747 if (ret > 0)
748 return (u32) ret;
749 }
750
751 /* GPU high precision timestamp query unsupported or failed.
752 * Return gettimeofday timestamp as best estimate.
753 */
754 do_gettimeofday(tvblank);
755
756 return 0;
757}
758EXPORT_SYMBOL(drm_get_last_vbltimestamp);
759
760/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700761 * drm_vblank_count - retrieve "cooked" vblank counter value
762 * @dev: DRM device
763 * @crtc: which counter to retrieve
764 *
765 * Fetches the "cooked" vblank count value that represents the number of
766 * vblank events since the system was booted, including lost events due to
767 * modesetting activity.
768 */
769u32 drm_vblank_count(struct drm_device *dev, int crtc)
770{
771 return atomic_read(&dev->_vblank_count[crtc]);
772}
773EXPORT_SYMBOL(drm_vblank_count);
774
775/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200776 * drm_vblank_count_and_time - retrieve "cooked" vblank counter value
777 * and the system timestamp corresponding to that vblank counter value.
778 *
779 * @dev: DRM device
780 * @crtc: which counter to retrieve
781 * @vblanktime: Pointer to struct timeval to receive the vblank timestamp.
782 *
783 * Fetches the "cooked" vblank count value that represents the number of
784 * vblank events since the system was booted, including lost events due to
785 * modesetting activity. Returns corresponding system timestamp of the time
786 * of the vblank interval that corresponds to the current value vblank counter
787 * value.
788 */
789u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
790 struct timeval *vblanktime)
791{
792 u32 cur_vblank;
793
794 /* Read timestamp from slot of _vblank_time ringbuffer
795 * that corresponds to current vblank count. Retry if
796 * count has incremented during readout. This works like
797 * a seqlock.
798 */
799 do {
800 cur_vblank = atomic_read(&dev->_vblank_count[crtc]);
801 *vblanktime = vblanktimestamp(dev, crtc, cur_vblank);
802 smp_rmb();
803 } while (cur_vblank != atomic_read(&dev->_vblank_count[crtc]));
804
805 return cur_vblank;
806}
807EXPORT_SYMBOL(drm_vblank_count_and_time);
808
809/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700810 * drm_update_vblank_count - update the master vblank counter
811 * @dev: DRM device
812 * @crtc: counter to update
813 *
814 * Call back into the driver to update the appropriate vblank counter
815 * (specified by @crtc). Deal with wraparound, if it occurred, and
816 * update the last read value so we can deal with wraparound on the next
817 * call if necessary.
818 *
819 * Only necessary when going from off->on, to account for frames we
820 * didn't get an interrupt for.
821 *
822 * Note: caller must hold dev->vbl_lock since this reads & writes
823 * device vblank fields.
824 */
825static void drm_update_vblank_count(struct drm_device *dev, int crtc)
826{
Mario Kleiner27641c32010-10-23 04:20:23 +0200827 u32 cur_vblank, diff, tslot, rc;
828 struct timeval t_vblank;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700829
830 /*
831 * Interrupts were disabled prior to this call, so deal with counter
832 * wrap if needed.
833 * NOTE! It's possible we lost a full dev->max_vblank_count events
834 * here if the register is small or we had vblank interrupts off for
835 * a long time.
Mario Kleiner27641c32010-10-23 04:20:23 +0200836 *
837 * We repeat the hardware vblank counter & timestamp query until
838 * we get consistent results. This to prevent races between gpu
839 * updating its hardware counter while we are retrieving the
840 * corresponding vblank timestamp.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700841 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200842 do {
843 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
844 rc = drm_get_last_vbltimestamp(dev, crtc, &t_vblank, 0);
845 } while (cur_vblank != dev->driver->get_vblank_counter(dev, crtc));
846
847 /* Deal with counter wrap */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700848 diff = cur_vblank - dev->last_vblank[crtc];
849 if (cur_vblank < dev->last_vblank[crtc]) {
850 diff += dev->max_vblank_count;
851
852 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
853 crtc, dev->last_vblank[crtc], cur_vblank, diff);
854 }
855
856 DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
857 crtc, diff);
858
Mario Kleiner27641c32010-10-23 04:20:23 +0200859 /* Reinitialize corresponding vblank timestamp if high-precision query
860 * available. Skip this step if query unsupported or failed. Will
861 * reinitialize delayed at next vblank interrupt in that case.
862 */
863 if (rc) {
864 tslot = atomic_read(&dev->_vblank_count[crtc]) + diff;
865 vblanktimestamp(dev, crtc, tslot) = t_vblank;
Mario Kleiner27641c32010-10-23 04:20:23 +0200866 }
867
Mario Kleinerbc215122011-02-21 05:42:01 +0100868 smp_mb__before_atomic_inc();
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700869 atomic_add(diff, &dev->_vblank_count[crtc]);
Mario Kleinerbc215122011-02-21 05:42:01 +0100870 smp_mb__after_atomic_inc();
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700871}
872
873/**
874 * drm_vblank_get - get a reference count on vblank events
875 * @dev: DRM device
876 * @crtc: which CRTC to own
877 *
878 * Acquire a reference count on vblank events to avoid having them disabled
879 * while in use.
880 *
881 * RETURNS
882 * Zero on success, nonzero on failure.
883 */
884int drm_vblank_get(struct drm_device *dev, int crtc)
885{
Mario Kleiner27641c32010-10-23 04:20:23 +0200886 unsigned long irqflags, irqflags2;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700887 int ret = 0;
888
889 spin_lock_irqsave(&dev->vbl_lock, irqflags);
890 /* Going from 0->1 means we have to enable interrupts again */
Li Peng778c9022009-11-09 12:51:22 +0800891 if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200892 /* Disable preemption while holding vblank_time_lock. Do
893 * it explicitely to guard against PREEMPT_RT kernel.
894 */
895 preempt_disable();
896 spin_lock_irqsave(&dev->vblank_time_lock, irqflags2);
Li Peng778c9022009-11-09 12:51:22 +0800897 if (!dev->vblank_enabled[crtc]) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200898 /* Enable vblank irqs under vblank_time_lock protection.
899 * All vblank count & timestamp updates are held off
900 * until we are done reinitializing master counter and
901 * timestamps. Filtercode in drm_handle_vblank() will
902 * prevent double-accounting of same vblank interval.
903 */
Li Peng778c9022009-11-09 12:51:22 +0800904 ret = dev->driver->enable_vblank(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +0200905 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n",
906 crtc, ret);
Li Peng778c9022009-11-09 12:51:22 +0800907 if (ret)
908 atomic_dec(&dev->vblank_refcount[crtc]);
909 else {
910 dev->vblank_enabled[crtc] = 1;
911 drm_update_vblank_count(dev, crtc);
912 }
913 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200914 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags2);
915 preempt_enable();
Li Peng778c9022009-11-09 12:51:22 +0800916 } else {
917 if (!dev->vblank_enabled[crtc]) {
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700918 atomic_dec(&dev->vblank_refcount[crtc]);
Li Peng778c9022009-11-09 12:51:22 +0800919 ret = -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700920 }
921 }
922 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
923
924 return ret;
925}
926EXPORT_SYMBOL(drm_vblank_get);
927
928/**
929 * drm_vblank_put - give up ownership of vblank events
930 * @dev: DRM device
931 * @crtc: which counter to give up
932 *
933 * Release ownership of a given vblank counter, turning off interrupts
Mario Kleiner27641c32010-10-23 04:20:23 +0200934 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700935 */
936void drm_vblank_put(struct drm_device *dev, int crtc)
937{
Mario Kleiner27641c32010-10-23 04:20:23 +0200938 BUG_ON(atomic_read(&dev->vblank_refcount[crtc]) == 0);
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000939
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700940 /* Last user schedules interrupt disable */
Mario Kleiner27641c32010-10-23 04:20:23 +0200941 if (atomic_dec_and_test(&dev->vblank_refcount[crtc]) &&
942 (drm_vblank_offdelay > 0))
943 mod_timer(&dev->vblank_disable_timer,
944 jiffies + ((drm_vblank_offdelay * DRM_HZ)/1000));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700945}
946EXPORT_SYMBOL(drm_vblank_put);
947
Li Peng778c9022009-11-09 12:51:22 +0800948void drm_vblank_off(struct drm_device *dev, int crtc)
949{
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000950 struct drm_pending_vblank_event *e, *t;
951 struct timeval now;
Li Peng778c9022009-11-09 12:51:22 +0800952 unsigned long irqflags;
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000953 unsigned int seq;
Li Peng778c9022009-11-09 12:51:22 +0800954
955 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Mario Kleiner27641c32010-10-23 04:20:23 +0200956 vblank_disable_and_save(dev, crtc);
Li Peng778c9022009-11-09 12:51:22 +0800957 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000958
959 /* Send any queued vblank events, lest the natives grow disquiet */
960 seq = drm_vblank_count_and_time(dev, crtc, &now);
961 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
962 if (e->pipe != crtc)
963 continue;
964 DRM_DEBUG("Sending premature vblank event on disable: \
965 wanted %d, current %d\n",
966 e->event.sequence, seq);
967
968 e->event.sequence = seq;
969 e->event.tv_sec = now.tv_sec;
970 e->event.tv_usec = now.tv_usec;
971 drm_vblank_put(dev, e->pipe);
972 list_move_tail(&e->base.link, &e->base.file_priv->event_list);
973 wake_up_interruptible(&e->base.file_priv->event_wait);
974 trace_drm_vblank_event_delivered(e->base.pid, e->pipe,
975 e->event.sequence);
976 }
977
Li Peng778c9022009-11-09 12:51:22 +0800978 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
979}
980EXPORT_SYMBOL(drm_vblank_off);
981
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700982/**
Dave Airlief453ba02008-11-07 14:05:41 -0800983 * drm_vblank_pre_modeset - account for vblanks across mode sets
984 * @dev: DRM device
985 * @crtc: CRTC in question
986 * @post: post or pre mode set?
987 *
988 * Account for vblank events across mode setting events, which will likely
989 * reset the hardware frame counter.
990 */
991void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
992{
Jerome Glissee77cef92010-01-07 15:39:13 +0100993 /* vblank is not initialized (IRQ not installed ?) */
994 if (!dev->num_crtcs)
995 return;
Dave Airlief453ba02008-11-07 14:05:41 -0800996 /*
997 * To avoid all the problems that might happen if interrupts
998 * were enabled/disabled around or between these calls, we just
999 * have the kernel take a reference on the CRTC (just once though
1000 * to avoid corrupting the count if multiple, mismatch calls occur),
1001 * so that interrupts remain enabled in the interim.
1002 */
1003 if (!dev->vblank_inmodeset[crtc]) {
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001004 dev->vblank_inmodeset[crtc] = 0x1;
1005 if (drm_vblank_get(dev, crtc) == 0)
1006 dev->vblank_inmodeset[crtc] |= 0x2;
Dave Airlief453ba02008-11-07 14:05:41 -08001007 }
1008}
1009EXPORT_SYMBOL(drm_vblank_pre_modeset);
1010
1011void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
1012{
1013 unsigned long irqflags;
1014
1015 if (dev->vblank_inmodeset[crtc]) {
1016 spin_lock_irqsave(&dev->vbl_lock, irqflags);
1017 dev->vblank_disable_allowed = 1;
Dave Airlief453ba02008-11-07 14:05:41 -08001018 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001019
1020 if (dev->vblank_inmodeset[crtc] & 0x2)
1021 drm_vblank_put(dev, crtc);
1022
1023 dev->vblank_inmodeset[crtc] = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001024 }
1025}
1026EXPORT_SYMBOL(drm_vblank_post_modeset);
1027
1028/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001029 * drm_modeset_ctl - handle vblank event counter changes across mode switch
1030 * @DRM_IOCTL_ARGS: standard ioctl arguments
1031 *
1032 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
1033 * ioctls around modesetting so that any lost vblank events are accounted for.
1034 *
1035 * Generally the counter will reset across mode sets. If interrupts are
1036 * enabled around this call, we don't have to do anything since the counter
1037 * will have already been incremented.
1038 */
1039int drm_modeset_ctl(struct drm_device *dev, void *data,
1040 struct drm_file *file_priv)
1041{
1042 struct drm_modeset_ctl *modeset = data;
Dave Airlie19227562011-02-24 08:35:06 +10001043 int ret = 0;
1044 unsigned int crtc;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001045
1046 /* If drm_vblank_init() hasn't been called yet, just no-op */
1047 if (!dev->num_crtcs)
1048 goto out;
1049
1050 crtc = modeset->crtc;
1051 if (crtc >= dev->num_crtcs) {
1052 ret = -EINVAL;
1053 goto out;
1054 }
1055
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001056 switch (modeset->cmd) {
1057 case _DRM_PRE_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001058 drm_vblank_pre_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001059 break;
1060 case _DRM_POST_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001061 drm_vblank_post_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001062 break;
1063 default:
1064 ret = -EINVAL;
1065 break;
1066 }
1067
1068out:
1069 return ret;
1070}
1071
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001072static int drm_queue_vblank_event(struct drm_device *dev, int pipe,
1073 union drm_wait_vblank *vblwait,
1074 struct drm_file *file_priv)
1075{
1076 struct drm_pending_vblank_event *e;
1077 struct timeval now;
1078 unsigned long flags;
1079 unsigned int seq;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001080 int ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001081
1082 e = kzalloc(sizeof *e, GFP_KERNEL);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001083 if (e == NULL) {
1084 ret = -ENOMEM;
1085 goto err_put;
1086 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001087
1088 e->pipe = pipe;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001089 e->base.pid = current->pid;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001090 e->event.base.type = DRM_EVENT_VBLANK;
1091 e->event.base.length = sizeof e->event;
1092 e->event.user_data = vblwait->request.signal;
1093 e->base.event = &e->event.base;
1094 e->base.file_priv = file_priv;
1095 e->base.destroy = (void (*) (struct drm_pending_event *)) kfree;
1096
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001097 spin_lock_irqsave(&dev->event_lock, flags);
1098
1099 if (file_priv->event_space < sizeof e->event) {
Chris Wilsonea5d5522010-12-01 19:41:31 +00001100 ret = -EBUSY;
1101 goto err_unlock;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001102 }
1103
1104 file_priv->event_space -= sizeof e->event;
Mario Kleiner27641c32010-10-23 04:20:23 +02001105 seq = drm_vblank_count_and_time(dev, pipe, &now);
1106
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001107 if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) &&
1108 (seq - vblwait->request.sequence) <= (1 << 23)) {
1109 vblwait->request.sequence = seq + 1;
Jesse Barnes4a921642009-11-10 08:21:25 +00001110 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001111 }
1112
1113 DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n",
1114 vblwait->request.sequence, seq, pipe);
1115
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001116 trace_drm_vblank_event_queued(current->pid, pipe,
1117 vblwait->request.sequence);
1118
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001119 e->event.sequence = vblwait->request.sequence;
1120 if ((seq - vblwait->request.sequence) <= (1 << 23)) {
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001121 e->event.sequence = seq;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001122 e->event.tv_sec = now.tv_sec;
1123 e->event.tv_usec = now.tv_usec;
Dan Carpenter6f331622010-12-09 08:35:40 +03001124 drm_vblank_put(dev, pipe);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001125 list_add_tail(&e->base.link, &e->base.file_priv->event_list);
1126 wake_up_interruptible(&e->base.file_priv->event_wait);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001127 vblwait->reply.sequence = seq;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001128 trace_drm_vblank_event_delivered(current->pid, pipe,
1129 vblwait->request.sequence);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001130 } else {
1131 list_add_tail(&e->base.link, &dev->vblank_event_list);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001132 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001133 }
1134
1135 spin_unlock_irqrestore(&dev->event_lock, flags);
1136
1137 return 0;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001138
1139err_unlock:
1140 spin_unlock_irqrestore(&dev->event_lock, flags);
1141 kfree(e);
1142err_put:
Dan Carpenter6f331622010-12-09 08:35:40 +03001143 drm_vblank_put(dev, pipe);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001144 return ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001145}
1146
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001147/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 * Wait for VBLANK.
1149 *
1150 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +10001151 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 * \param cmd command.
1153 * \param data user argument, pointing to a drm_wait_vblank structure.
1154 * \return zero on success or a negative number on failure.
1155 *
Eric Anholt30b23632009-01-27 21:19:41 -08001156 * This function enables the vblank interrupt on the pipe requested, then
1157 * sleeps waiting for the requested sequence number to occur, and drops
1158 * the vblank interrupt refcount afterwards. (vblank irq disable follows that
1159 * after a timeout with no further vblank waits scheduled).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001161int drm_wait_vblank(struct drm_device *dev, void *data,
1162 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Eric Anholtc153f452007-09-03 12:06:45 +10001164 union drm_wait_vblank *vblwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 int ret = 0;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001166 unsigned int flags, seq, crtc, high_crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Jordan Crousedcdb1672010-05-27 13:40:25 -06001168 if ((!drm_dev_to_irq(dev)) || (!dev->irq_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 return -EINVAL;
1170
Eric Anholt30b23632009-01-27 21:19:41 -08001171 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
1172 return -EINVAL;
1173
Eric Anholtc153f452007-09-03 12:06:45 +10001174 if (vblwait->request.type &
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001175 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1176 _DRM_VBLANK_HIGH_CRTC_MASK)) {
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001177 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001178 vblwait->request.type,
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001179 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1180 _DRM_VBLANK_HIGH_CRTC_MASK));
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001181 return -EINVAL;
1182 }
1183
Eric Anholtc153f452007-09-03 12:06:45 +10001184 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001185 high_crtc = (vblwait->request.type & _DRM_VBLANK_HIGH_CRTC_MASK);
1186 if (high_crtc)
1187 crtc = high_crtc >> _DRM_VBLANK_HIGH_CRTC_SHIFT;
1188 else
1189 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001190 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001191 return -EINVAL;
1192
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001193 ret = drm_vblank_get(dev, crtc);
1194 if (ret) {
Paul Rolland8d3457e2009-08-09 12:24:01 +10001195 DRM_DEBUG("failed to acquire vblank counter, %d\n", ret);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001196 return ret;
1197 }
1198 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001199
Eric Anholtc153f452007-09-03 12:06:45 +10001200 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +10001202 vblwait->request.sequence += seq;
1203 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 case _DRM_VBLANK_ABSOLUTE:
1205 break;
1206 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001207 ret = -EINVAL;
1208 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
1210
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001211 if (flags & _DRM_VBLANK_EVENT)
1212 return drm_queue_vblank_event(dev, crtc, vblwait, file_priv);
1213
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001214 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +10001215 (seq - vblwait->request.sequence) <= (1<<23)) {
1216 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001217 }
1218
Eric Anholt30b23632009-01-27 21:19:41 -08001219 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
1220 vblwait->request.sequence, crtc);
1221 dev->last_vblank_wait[crtc] = vblwait->request.sequence;
1222 DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ,
1223 (((drm_vblank_count(dev, crtc) -
1224 vblwait->request.sequence) <= (1 << 23)) ||
1225 !dev->irq_enabled));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Eric Anholt30b23632009-01-27 21:19:41 -08001227 if (ret != -EINTR) {
1228 struct timeval now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Mario Kleiner27641c32010-10-23 04:20:23 +02001230 vblwait->reply.sequence = drm_vblank_count_and_time(dev, crtc, &now);
Eric Anholt30b23632009-01-27 21:19:41 -08001231 vblwait->reply.tval_sec = now.tv_sec;
1232 vblwait->reply.tval_usec = now.tv_usec;
Mario Kleiner27641c32010-10-23 04:20:23 +02001233
Eric Anholt30b23632009-01-27 21:19:41 -08001234 DRM_DEBUG("returning %d to client\n",
1235 vblwait->reply.sequence);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 } else {
Eric Anholt30b23632009-01-27 21:19:41 -08001237 DRM_DEBUG("vblank wait interrupted by signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001240done:
1241 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return ret;
1243}
1244
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001245void drm_handle_vblank_events(struct drm_device *dev, int crtc)
1246{
1247 struct drm_pending_vblank_event *e, *t;
1248 struct timeval now;
1249 unsigned long flags;
1250 unsigned int seq;
1251
Mario Kleiner27641c32010-10-23 04:20:23 +02001252 seq = drm_vblank_count_and_time(dev, crtc, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001253
1254 spin_lock_irqsave(&dev->event_lock, flags);
1255
1256 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
1257 if (e->pipe != crtc)
1258 continue;
1259 if ((seq - e->event.sequence) > (1<<23))
1260 continue;
1261
1262 DRM_DEBUG("vblank event on %d, current %d\n",
1263 e->event.sequence, seq);
1264
1265 e->event.sequence = seq;
1266 e->event.tv_sec = now.tv_sec;
1267 e->event.tv_usec = now.tv_usec;
1268 drm_vblank_put(dev, e->pipe);
1269 list_move_tail(&e->base.link, &e->base.file_priv->event_list);
1270 wake_up_interruptible(&e->base.file_priv->event_wait);
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001271 trace_drm_vblank_event_delivered(e->base.pid, e->pipe,
1272 e->event.sequence);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001273 }
1274
1275 spin_unlock_irqrestore(&dev->event_lock, flags);
Jesse Barnesac2874b2010-07-01 16:47:31 -07001276
1277 trace_drm_vblank_event(crtc, seq);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001278}
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001281 * drm_handle_vblank - handle a vblank event
1282 * @dev: DRM device
1283 * @crtc: where this event occurred
1284 *
1285 * Drivers should call this routine in their vblank interrupt handlers to
1286 * update the vblank counter and send any signals that may be pending.
1287 */
Chris Wilson78c6e172011-01-31 10:48:04 +00001288bool drm_handle_vblank(struct drm_device *dev, int crtc)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001289{
Mario Kleiner27641c32010-10-23 04:20:23 +02001290 u32 vblcount;
1291 s64 diff_ns;
1292 struct timeval tvblank;
1293 unsigned long irqflags;
1294
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001295 if (!dev->num_crtcs)
Chris Wilson78c6e172011-01-31 10:48:04 +00001296 return false;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001297
Mario Kleiner27641c32010-10-23 04:20:23 +02001298 /* Need timestamp lock to prevent concurrent execution with
1299 * vblank enable/disable, as this would cause inconsistent
1300 * or corrupted timestamps and vblank counts.
1301 */
1302 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
1303
1304 /* Vblank irq handling disabled. Nothing to do. */
1305 if (!dev->vblank_enabled[crtc]) {
1306 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001307 return false;
Mario Kleiner27641c32010-10-23 04:20:23 +02001308 }
1309
1310 /* Fetch corresponding timestamp for this vblank interval from
1311 * driver and store it in proper slot of timestamp ringbuffer.
1312 */
1313
1314 /* Get current timestamp and count. */
1315 vblcount = atomic_read(&dev->_vblank_count[crtc]);
1316 drm_get_last_vbltimestamp(dev, crtc, &tvblank, DRM_CALLED_FROM_VBLIRQ);
1317
1318 /* Compute time difference to timestamp of last vblank */
1319 diff_ns = timeval_to_ns(&tvblank) -
1320 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
1321
1322 /* Update vblank timestamp and count if at least
1323 * DRM_REDUNDANT_VBLIRQ_THRESH_NS nanoseconds
1324 * difference between last stored timestamp and current
1325 * timestamp. A smaller difference means basically
1326 * identical timestamps. Happens if this vblank has
1327 * been already processed and this is a redundant call,
1328 * e.g., due to spurious vblank interrupts. We need to
1329 * ignore those for accounting.
1330 */
Mario Kleinerc4cc3832011-02-21 05:42:00 +01001331 if (abs64(diff_ns) > DRM_REDUNDANT_VBLIRQ_THRESH_NS) {
Mario Kleiner27641c32010-10-23 04:20:23 +02001332 /* Store new timestamp in ringbuffer. */
1333 vblanktimestamp(dev, crtc, vblcount + 1) = tvblank;
Mario Kleiner27641c32010-10-23 04:20:23 +02001334
1335 /* Increment cooked vblank count. This also atomically commits
1336 * the timestamp computed above.
1337 */
Mario Kleinerbc215122011-02-21 05:42:01 +01001338 smp_mb__before_atomic_inc();
Mario Kleiner27641c32010-10-23 04:20:23 +02001339 atomic_inc(&dev->_vblank_count[crtc]);
Mario Kleinerbc215122011-02-21 05:42:01 +01001340 smp_mb__after_atomic_inc();
Mario Kleiner27641c32010-10-23 04:20:23 +02001341 } else {
1342 DRM_DEBUG("crtc %d: Redundant vblirq ignored. diff_ns = %d\n",
1343 crtc, (int) diff_ns);
1344 }
1345
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001346 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001347 drm_handle_vblank_events(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +02001348
1349 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001350 return true;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001351}
1352EXPORT_SYMBOL(drm_handle_vblank);