blob: 81b4c84449a410b729bfb2dde70660f3c44bea10 [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
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/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;
Egbert Eich0355cf32012-10-13 11:36:14 +0000109 int count = DRM_TIMESTAMP_MAXRETRIES;
Mario Kleiner27641c32010-10-23 04:20:23 +0200110
111 /* Prevent vblank irq processing while disabling vblank irqs,
112 * so no updates of timestamps or count can happen after we've
113 * disabled. Needed to prevent races in case of delayed irq's.
Mario Kleiner27641c32010-10-23 04:20:23 +0200114 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200115 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
116
117 dev->driver->disable_vblank(dev, crtc);
118 dev->vblank_enabled[crtc] = 0;
119
120 /* No further vblank irq's will be processed after
121 * this point. Get current hardware vblank count and
122 * vblank timestamp, repeat until they are consistent.
123 *
124 * FIXME: There is still a race condition here and in
125 * drm_update_vblank_count() which can cause off-by-one
126 * reinitialization of software vblank counter. If gpu
127 * vblank counter doesn't increment exactly at the leading
128 * edge of a vblank interval, then we can lose 1 count if
129 * we happen to execute between start of vblank and the
130 * delayed gpu counter increment.
131 */
132 do {
133 dev->last_vblank[crtc] = dev->driver->get_vblank_counter(dev, crtc);
134 vblrc = drm_get_last_vbltimestamp(dev, crtc, &tvblank, 0);
Egbert Eich0355cf32012-10-13 11:36:14 +0000135 } while (dev->last_vblank[crtc] != dev->driver->get_vblank_counter(dev, crtc) && (--count) && vblrc);
136
137 if (!count)
138 vblrc = 0;
Mario Kleiner27641c32010-10-23 04:20:23 +0200139
140 /* Compute time difference to stored timestamp of last vblank
141 * as updated by last invocation of drm_handle_vblank() in vblank irq.
142 */
143 vblcount = atomic_read(&dev->_vblank_count[crtc]);
144 diff_ns = timeval_to_ns(&tvblank) -
145 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
146
147 /* If there is at least 1 msec difference between the last stored
148 * timestamp and tvblank, then we are currently executing our
149 * disable inside a new vblank interval, the tvblank timestamp
150 * corresponds to this new vblank interval and the irq handler
151 * for this vblank didn't run yet and won't run due to our disable.
152 * Therefore we need to do the job of drm_handle_vblank() and
153 * increment the vblank counter by one to account for this vblank.
154 *
155 * Skip this step if there isn't any high precision timestamp
156 * available. In that case we can't account for this and just
157 * hope for the best.
158 */
Mario Kleinerbc215122011-02-21 05:42:01 +0100159 if ((vblrc > 0) && (abs64(diff_ns) > 1000000)) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200160 atomic_inc(&dev->_vblank_count[crtc]);
Mario Kleinerbc215122011-02-21 05:42:01 +0100161 smp_mb__after_atomic_inc();
162 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200163
164 /* Invalidate all timestamps while vblank irq's are off. */
165 clear_vblank_timestamps(dev, crtc);
166
167 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Mario Kleiner27641c32010-10-23 04:20:23 +0200168}
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
Laurent Pinchart7eb3b2c2012-05-17 13:27:19 +0200196 del_timer_sync(&dev->vblank_disable_timer);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700197
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
Ville Syrjäläba0bf122013-10-04 14:53:33 +0300274 dev->vblank_disable_allowed = false;
275
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700276 return 0;
277
278err:
279 drm_vblank_cleanup(dev);
280 return ret;
281}
282EXPORT_SYMBOL(drm_vblank_init);
283
Dave Airlie28d52042009-09-21 14:33:58 +1000284static void drm_irq_vgaarb_nokms(void *cookie, bool state)
285{
286 struct drm_device *dev = cookie;
287
288 if (dev->driver->vgaarb_irq) {
289 dev->driver->vgaarb_irq(dev, state);
290 return;
291 }
292
293 if (!dev->irq_enabled)
294 return;
295
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000296 if (state) {
297 if (dev->driver->irq_uninstall)
298 dev->driver->irq_uninstall(dev);
299 } else {
300 if (dev->driver->irq_preinstall)
301 dev->driver->irq_preinstall(dev);
302 if (dev->driver->irq_postinstall)
303 dev->driver->irq_postinstall(dev);
Dave Airlie28d52042009-09-21 14:33:58 +1000304 }
305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/**
308 * Install IRQ handler.
309 *
310 * \param dev DRM device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 *
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700312 * Initializes the IRQ related data. Installs the handler, calling the driver
Sascha Hauer884a53e2012-02-29 09:06:21 +0100313 * \c irq_preinstall() and \c irq_postinstall() functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 * before and after the installation.
315 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700316int drm_irq_install(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200318 int ret;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000319 unsigned long sh_flags = 0;
Dave Airlieb8da7de2009-06-02 16:50:35 +1000320 char *irqname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
323 return -EINVAL;
324
Jordan Crousedcdb1672010-05-27 13:40:25 -0600325 if (drm_dev_to_irq(dev) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return -EINVAL;
327
Dave Airlie30e2fb12006-02-02 19:37:46 +1100328 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 /* Driver must have been initialized */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000331 if (!dev->dev_private) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100332 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return -EINVAL;
334 }
335
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000336 if (dev->irq_enabled) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100337 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return -EBUSY;
339 }
340 dev->irq_enabled = 1;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100341 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Jordan Crousedcdb1672010-05-27 13:40:25 -0600343 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000345 /* Before installing handler */
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000346 if (dev->driver->irq_preinstall)
347 dev->driver->irq_preinstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000349 /* Install handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
Thomas Gleixner935f6e32006-07-01 19:29:34 -0700351 sh_flags = IRQF_SHARED;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000352
Dave Airlieb8da7de2009-06-02 16:50:35 +1000353 if (dev->devname)
354 irqname = dev->devname;
355 else
356 irqname = dev->driver->name;
357
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700358 ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler,
Dave Airlieb8da7de2009-06-02 16:50:35 +1000359 sh_flags, irqname, dev);
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700360
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000361 if (ret < 0) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100362 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100364 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return ret;
366 }
367
Dave Airlie28d52042009-09-21 14:33:58 +1000368 if (!drm_core_check_feature(dev, DRIVER_MODESET))
369 vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL);
370
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000371 /* After installing handler */
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000372 if (dev->driver->irq_postinstall)
373 ret = dev->driver->irq_postinstall(dev);
374
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700375 if (ret < 0) {
376 mutex_lock(&dev->struct_mutex);
377 dev->irq_enabled = 0;
378 mutex_unlock(&dev->struct_mutex);
Joonyoung Shime1c44ac2011-08-04 05:41:00 +0000379 if (!drm_core_check_feature(dev, DRIVER_MODESET))
380 vga_client_register(dev->pdev, NULL, NULL, NULL);
381 free_irq(drm_dev_to_irq(dev), dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700384 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700386EXPORT_SYMBOL(drm_irq_install);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388/**
389 * Uninstall the IRQ handler.
390 *
391 * \param dev DRM device.
392 *
Sascha Hauer884a53e2012-02-29 09:06:21 +0100393 * Calls the driver's \c irq_uninstall() function, and stops the irq.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200395int drm_irq_uninstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800397 unsigned long irqflags;
398 int irq_enabled, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
401 return -EINVAL;
402
Dave Airlie30e2fb12006-02-02 19:37:46 +1100403 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 irq_enabled = dev->irq_enabled;
405 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100406 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800408 /*
409 * Wake up any waiters so they don't hang.
410 */
Ben Skeggsbde48892011-07-04 12:52:27 +1000411 if (dev->num_crtcs) {
412 spin_lock_irqsave(&dev->vbl_lock, irqflags);
413 for (i = 0; i < dev->num_crtcs; i++) {
414 DRM_WAKEUP(&dev->vbl_queue[i]);
415 dev->vblank_enabled[i] = 0;
416 dev->last_vblank[i] =
417 dev->driver->get_vblank_counter(dev, i);
418 }
419 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800420 }
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800421
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000422 if (!irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return -EINVAL;
424
Jordan Crousedcdb1672010-05-27 13:40:25 -0600425 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Dave Airlie28d52042009-09-21 14:33:58 +1000427 if (!drm_core_check_feature(dev, DRIVER_MODESET))
428 vga_client_register(dev->pdev, NULL, NULL, NULL);
429
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000430 if (dev->driver->irq_uninstall)
431 dev->driver->irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Jordan Crousedcdb1672010-05-27 13:40:25 -0600433 free_irq(drm_dev_to_irq(dev), dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 return 0;
436}
437EXPORT_SYMBOL(drm_irq_uninstall);
438
439/**
440 * IRQ control ioctl.
441 *
442 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000443 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 * \param cmd command.
445 * \param arg user argument, pointing to a drm_control structure.
446 * \return zero on success or a negative number on failure.
447 *
448 * Calls irq_install() or irq_uninstall() according to \p arg.
449 */
Eric Anholtc153f452007-09-03 12:06:45 +1000450int drm_control(struct drm_device *dev, void *data,
451 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Eric Anholtc153f452007-09-03 12:06:45 +1000453 struct drm_control *ctl = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000454
Mario Kleiner27641c32010-10-23 04:20:23 +0200455 /* if we haven't irq we fallback for compatibility reasons -
456 * this used to be a separate function in drm_dma.h
457 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Eric Anholtc153f452007-09-03 12:06:45 +1000460 switch (ctl->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 case DRM_INST_HANDLER:
462 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
463 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800464 if (drm_core_check_feature(dev, DRIVER_MODESET))
465 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
Jordan Crousedcdb1672010-05-27 13:40:25 -0600467 ctl->irq != drm_dev_to_irq(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000469 return drm_irq_install(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 case DRM_UNINST_HANDLER:
471 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
472 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800473 if (drm_core_check_feature(dev, DRIVER_MODESET))
474 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000475 return drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 default:
477 return -EINVAL;
478 }
479}
480
481/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200482 * drm_calc_timestamping_constants - Calculate and
483 * store various constants which are later needed by
484 * vblank and swap-completion timestamping, e.g, by
485 * drm_calc_vbltimestamp_from_scanoutpos().
486 * They are derived from crtc's true scanout timing,
487 * so they take things like panel scaling or other
488 * adjustments into account.
489 *
490 * @crtc drm_crtc whose timestamp constants should be updated.
491 *
492 */
493void drm_calc_timestamping_constants(struct drm_crtc *crtc)
494{
495 s64 linedur_ns = 0, pixeldur_ns = 0, framedur_ns = 0;
496 u64 dotclock;
497
498 /* Dot clock in Hz: */
499 dotclock = (u64) crtc->hwmode.clock * 1000;
500
Mario Kleiner9be6f8a2011-02-21 05:42:02 +0100501 /* Fields of interlaced scanout modes are only halve a frame duration.
502 * Double the dotclock to get halve the frame-/line-/pixelduration.
503 */
504 if (crtc->hwmode.flags & DRM_MODE_FLAG_INTERLACE)
505 dotclock *= 2;
506
Mario Kleiner27641c32010-10-23 04:20:23 +0200507 /* Valid dotclock? */
508 if (dotclock > 0) {
Daniel Kurtz85a7ce62012-12-27 01:01:46 +0000509 int frame_size;
Mario Kleiner27641c32010-10-23 04:20:23 +0200510 /* Convert scanline length in pixels and video dot clock to
511 * line duration, frame duration and pixel duration in
512 * nanoseconds:
513 */
514 pixeldur_ns = (s64) div64_u64(1000000000, dotclock);
515 linedur_ns = (s64) div64_u64(((u64) crtc->hwmode.crtc_htotal *
516 1000000000), dotclock);
Daniel Kurtz85a7ce62012-12-27 01:01:46 +0000517 frame_size = crtc->hwmode.crtc_htotal *
518 crtc->hwmode.crtc_vtotal;
519 framedur_ns = (s64) div64_u64((u64) frame_size * 1000000000,
520 dotclock);
Mario Kleiner27641c32010-10-23 04:20:23 +0200521 } else
522 DRM_ERROR("crtc %d: Can't calculate constants, dotclock = 0!\n",
523 crtc->base.id);
524
525 crtc->pixeldur_ns = pixeldur_ns;
526 crtc->linedur_ns = linedur_ns;
527 crtc->framedur_ns = framedur_ns;
528
529 DRM_DEBUG("crtc %d: hwmode: htotal %d, vtotal %d, vdisplay %d\n",
530 crtc->base.id, crtc->hwmode.crtc_htotal,
531 crtc->hwmode.crtc_vtotal, crtc->hwmode.crtc_vdisplay);
532 DRM_DEBUG("crtc %d: clock %d kHz framedur %d linedur %d, pixeldur %d\n",
533 crtc->base.id, (int) dotclock/1000, (int) framedur_ns,
534 (int) linedur_ns, (int) pixeldur_ns);
535}
536EXPORT_SYMBOL(drm_calc_timestamping_constants);
537
538/**
539 * drm_calc_vbltimestamp_from_scanoutpos - helper routine for kms
540 * drivers. Implements calculation of exact vblank timestamps from
541 * given drm_display_mode timings and current video scanout position
542 * of a crtc. This can be called from within get_vblank_timestamp()
543 * implementation of a kms driver to implement the actual timestamping.
544 *
545 * Should return timestamps conforming to the OML_sync_control OpenML
546 * extension specification. The timestamp corresponds to the end of
547 * the vblank interval, aka start of scanout of topmost-leftmost display
548 * pixel in the following video frame.
549 *
550 * Requires support for optional dev->driver->get_scanout_position()
551 * in kms driver, plus a bit of setup code to provide a drm_display_mode
552 * that corresponds to the true scanout timing.
553 *
554 * The current implementation only handles standard video modes. It
555 * returns as no operation if a doublescan or interlaced video mode is
556 * active. Higher level code is expected to handle this.
557 *
558 * @dev: DRM device.
559 * @crtc: Which crtc's vblank timestamp to retrieve.
560 * @max_error: Desired maximum allowable error in timestamps (nanosecs).
561 * On return contains true maximum error of timestamp.
562 * @vblank_time: Pointer to struct timeval which should receive the timestamp.
563 * @flags: Flags to pass to driver:
564 * 0 = Default.
565 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler.
566 * @refcrtc: drm_crtc* of crtc which defines scanout timing.
567 *
568 * Returns negative value on error, failure or if not supported in current
569 * video mode:
570 *
571 * -EINVAL - Invalid crtc.
572 * -EAGAIN - Temporary unavailable, e.g., called before initial modeset.
573 * -ENOTSUPP - Function not supported in current display mode.
574 * -EIO - Failed, e.g., due to failed scanout position query.
575 *
576 * Returns or'ed positive status flags on success:
577 *
578 * DRM_VBLANKTIME_SCANOUTPOS_METHOD - Signal this method used for timestamping.
579 * DRM_VBLANKTIME_INVBL - Timestamp taken while scanout was in vblank interval.
580 *
581 */
582int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, int crtc,
583 int *max_error,
584 struct timeval *vblank_time,
585 unsigned flags,
586 struct drm_crtc *refcrtc)
587{
Imre Deake62f2f52012-10-23 18:53:25 +0000588 ktime_t stime, etime, mono_time_offset;
589 struct timeval tv_etime;
Mario Kleiner27641c32010-10-23 04:20:23 +0200590 struct drm_display_mode *mode;
591 int vbl_status, vtotal, vdisplay;
592 int vpos, hpos, i;
593 s64 framedur_ns, linedur_ns, pixeldur_ns, delta_ns, duration_ns;
594 bool invbl;
595
596 if (crtc < 0 || crtc >= dev->num_crtcs) {
597 DRM_ERROR("Invalid crtc %d\n", crtc);
598 return -EINVAL;
599 }
600
601 /* Scanout position query not supported? Should not happen. */
602 if (!dev->driver->get_scanout_position) {
603 DRM_ERROR("Called from driver w/o get_scanout_position()!?\n");
604 return -EIO;
605 }
606
607 mode = &refcrtc->hwmode;
608 vtotal = mode->crtc_vtotal;
609 vdisplay = mode->crtc_vdisplay;
610
611 /* Durations of frames, lines, pixels in nanoseconds. */
612 framedur_ns = refcrtc->framedur_ns;
613 linedur_ns = refcrtc->linedur_ns;
614 pixeldur_ns = refcrtc->pixeldur_ns;
615
616 /* If mode timing undefined, just return as no-op:
617 * Happens during initial modesetting of a crtc.
618 */
619 if (vtotal <= 0 || vdisplay <= 0 || framedur_ns == 0) {
620 DRM_DEBUG("crtc %d: Noop due to uninitialized mode.\n", crtc);
621 return -EAGAIN;
622 }
623
Mario Kleiner27641c32010-10-23 04:20:23 +0200624 /* Get current scanout position with system timestamp.
625 * Repeat query up to DRM_TIMESTAMP_MAXRETRIES times
626 * if single query takes longer than max_error nanoseconds.
627 *
628 * This guarantees a tight bound on maximum error if
629 * code gets preempted or delayed for some reason.
630 */
631 for (i = 0; i < DRM_TIMESTAMP_MAXRETRIES; i++) {
632 /* Disable preemption to make it very likely to
633 * succeed in the first iteration even on PREEMPT_RT kernel.
634 */
635 preempt_disable();
636
637 /* Get system timestamp before query. */
Imre Deake62f2f52012-10-23 18:53:25 +0000638 stime = ktime_get();
Mario Kleiner27641c32010-10-23 04:20:23 +0200639
640 /* Get vertical and horizontal scanout pos. vpos, hpos. */
641 vbl_status = dev->driver->get_scanout_position(dev, crtc, &vpos, &hpos);
642
643 /* Get system timestamp after query. */
Imre Deake62f2f52012-10-23 18:53:25 +0000644 etime = ktime_get();
Imre Deakc61eef72012-10-23 18:53:26 +0000645 if (!drm_timestamp_monotonic)
646 mono_time_offset = ktime_get_monotonic_offset();
Mario Kleiner27641c32010-10-23 04:20:23 +0200647
648 preempt_enable();
649
650 /* Return as no-op if scanout query unsupported or failed. */
651 if (!(vbl_status & DRM_SCANOUTPOS_VALID)) {
652 DRM_DEBUG("crtc %d : scanoutpos query failed [%d].\n",
653 crtc, vbl_status);
654 return -EIO;
655 }
656
Imre Deake62f2f52012-10-23 18:53:25 +0000657 duration_ns = ktime_to_ns(etime) - ktime_to_ns(stime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200658
659 /* Accept result with < max_error nsecs timing uncertainty. */
660 if (duration_ns <= (s64) *max_error)
661 break;
662 }
663
664 /* Noisy system timing? */
665 if (i == DRM_TIMESTAMP_MAXRETRIES) {
666 DRM_DEBUG("crtc %d: Noisy timestamp %d us > %d us [%d reps].\n",
667 crtc, (int) duration_ns/1000, *max_error/1000, i);
668 }
669
670 /* Return upper bound of timestamp precision error. */
671 *max_error = (int) duration_ns;
672
673 /* Check if in vblank area:
674 * vpos is >=0 in video scanout area, but negative
675 * within vblank area, counting down the number of lines until
676 * start of scanout.
677 */
678 invbl = vbl_status & DRM_SCANOUTPOS_INVBL;
679
680 /* Convert scanout position into elapsed time at raw_time query
681 * since start of scanout at first display scanline. delta_ns
682 * can be negative if start of scanout hasn't happened yet.
683 */
684 delta_ns = (s64) vpos * linedur_ns + (s64) hpos * pixeldur_ns;
685
686 /* Is vpos outside nominal vblank area, but less than
687 * 1/100 of a frame height away from start of vblank?
688 * If so, assume this isn't a massively delayed vblank
689 * interrupt, but a vblank interrupt that fired a few
690 * microseconds before true start of vblank. Compensate
691 * by adding a full frame duration to the final timestamp.
692 * Happens, e.g., on ATI R500, R600.
693 *
694 * We only do this if DRM_CALLED_FROM_VBLIRQ.
695 */
696 if ((flags & DRM_CALLED_FROM_VBLIRQ) && !invbl &&
697 ((vdisplay - vpos) < vtotal / 100)) {
698 delta_ns = delta_ns - framedur_ns;
699
700 /* Signal this correction as "applied". */
701 vbl_status |= 0x8;
702 }
703
Imre Deakc61eef72012-10-23 18:53:26 +0000704 if (!drm_timestamp_monotonic)
705 etime = ktime_sub(etime, mono_time_offset);
706
Imre Deake62f2f52012-10-23 18:53:25 +0000707 /* save this only for debugging purposes */
708 tv_etime = ktime_to_timeval(etime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200709 /* Subtract time delta from raw timestamp to get final
710 * vblank_time timestamp for end of vblank.
711 */
Michel Dänzere91abf82013-06-12 11:58:44 +0200712 if (delta_ns < 0)
713 etime = ktime_add_ns(etime, -delta_ns);
714 else
715 etime = ktime_sub_ns(etime, delta_ns);
Imre Deake62f2f52012-10-23 18:53:25 +0000716 *vblank_time = ktime_to_timeval(etime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200717
Joe Perchesbbb0aef2011-04-17 20:35:52 -0700718 DRM_DEBUG("crtc %d : v %d p(%d,%d)@ %ld.%ld -> %ld.%ld [e %d us, %d rep]\n",
719 crtc, (int)vbl_status, hpos, vpos,
Imre Deake62f2f52012-10-23 18:53:25 +0000720 (long)tv_etime.tv_sec, (long)tv_etime.tv_usec,
Joe Perchesbbb0aef2011-04-17 20:35:52 -0700721 (long)vblank_time->tv_sec, (long)vblank_time->tv_usec,
722 (int)duration_ns/1000, i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200723
724 vbl_status = DRM_VBLANKTIME_SCANOUTPOS_METHOD;
725 if (invbl)
726 vbl_status |= DRM_VBLANKTIME_INVBL;
727
728 return vbl_status;
729}
730EXPORT_SYMBOL(drm_calc_vbltimestamp_from_scanoutpos);
731
Imre Deakc61eef72012-10-23 18:53:26 +0000732static struct timeval get_drm_timestamp(void)
733{
734 ktime_t now;
735
736 now = ktime_get();
737 if (!drm_timestamp_monotonic)
738 now = ktime_sub(now, ktime_get_monotonic_offset());
739
740 return ktime_to_timeval(now);
741}
742
Mario Kleiner27641c32010-10-23 04:20:23 +0200743/**
744 * drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent
745 * vblank interval.
746 *
747 * @dev: DRM device
748 * @crtc: which crtc's vblank timestamp to retrieve
749 * @tvblank: Pointer to target struct timeval which should receive the timestamp
750 * @flags: Flags to pass to driver:
751 * 0 = Default.
752 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler.
753 *
754 * Fetches the system timestamp corresponding to the time of the most recent
755 * vblank interval on specified crtc. May call into kms-driver to
756 * compute the timestamp with a high-precision GPU specific method.
757 *
758 * Returns zero if timestamp originates from uncorrected do_gettimeofday()
759 * call, i.e., it isn't very precisely locked to the true vblank.
760 *
761 * Returns non-zero if timestamp is considered to be very precise.
762 */
763u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
764 struct timeval *tvblank, unsigned flags)
765{
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200766 int ret;
Mario Kleiner27641c32010-10-23 04:20:23 +0200767
768 /* Define requested maximum error on timestamps (nanoseconds). */
769 int max_error = (int) drm_timestamp_precision * 1000;
770
771 /* Query driver if possible and precision timestamping enabled. */
772 if (dev->driver->get_vblank_timestamp && (max_error > 0)) {
773 ret = dev->driver->get_vblank_timestamp(dev, crtc, &max_error,
774 tvblank, flags);
775 if (ret > 0)
776 return (u32) ret;
777 }
778
779 /* GPU high precision timestamp query unsupported or failed.
Imre Deakc61eef72012-10-23 18:53:26 +0000780 * Return current monotonic/gettimeofday timestamp as best estimate.
Mario Kleiner27641c32010-10-23 04:20:23 +0200781 */
Imre Deakc61eef72012-10-23 18:53:26 +0000782 *tvblank = get_drm_timestamp();
Mario Kleiner27641c32010-10-23 04:20:23 +0200783
784 return 0;
785}
786EXPORT_SYMBOL(drm_get_last_vbltimestamp);
787
788/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700789 * drm_vblank_count - retrieve "cooked" vblank counter value
790 * @dev: DRM device
791 * @crtc: which counter to retrieve
792 *
793 * Fetches the "cooked" vblank count value that represents the number of
794 * vblank events since the system was booted, including lost events due to
795 * modesetting activity.
796 */
797u32 drm_vblank_count(struct drm_device *dev, int crtc)
798{
799 return atomic_read(&dev->_vblank_count[crtc]);
800}
801EXPORT_SYMBOL(drm_vblank_count);
802
803/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200804 * drm_vblank_count_and_time - retrieve "cooked" vblank counter value
805 * and the system timestamp corresponding to that vblank counter value.
806 *
807 * @dev: DRM device
808 * @crtc: which counter to retrieve
809 * @vblanktime: Pointer to struct timeval to receive the vblank timestamp.
810 *
811 * Fetches the "cooked" vblank count value that represents the number of
812 * vblank events since the system was booted, including lost events due to
813 * modesetting activity. Returns corresponding system timestamp of the time
814 * of the vblank interval that corresponds to the current value vblank counter
815 * value.
816 */
817u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
818 struct timeval *vblanktime)
819{
820 u32 cur_vblank;
821
822 /* Read timestamp from slot of _vblank_time ringbuffer
823 * that corresponds to current vblank count. Retry if
824 * count has incremented during readout. This works like
825 * a seqlock.
826 */
827 do {
828 cur_vblank = atomic_read(&dev->_vblank_count[crtc]);
829 *vblanktime = vblanktimestamp(dev, crtc, cur_vblank);
830 smp_rmb();
831 } while (cur_vblank != atomic_read(&dev->_vblank_count[crtc]));
832
833 return cur_vblank;
834}
835EXPORT_SYMBOL(drm_vblank_count_and_time);
836
Rob Clarkc6eefa12012-10-16 22:48:40 +0000837static void send_vblank_event(struct drm_device *dev,
838 struct drm_pending_vblank_event *e,
839 unsigned long seq, struct timeval *now)
840{
841 WARN_ON_SMP(!spin_is_locked(&dev->event_lock));
842 e->event.sequence = seq;
843 e->event.tv_sec = now->tv_sec;
844 e->event.tv_usec = now->tv_usec;
845
846 list_add_tail(&e->base.link,
847 &e->base.file_priv->event_list);
848 wake_up_interruptible(&e->base.file_priv->event_wait);
849 trace_drm_vblank_event_delivered(e->base.pid, e->pipe,
850 e->event.sequence);
851}
852
853/**
854 * drm_send_vblank_event - helper to send vblank event after pageflip
855 * @dev: DRM device
856 * @crtc: CRTC in question
857 * @e: the event to send
858 *
859 * Updates sequence # and timestamp on event, and sends it to userspace.
860 * Caller must hold event lock.
861 */
862void drm_send_vblank_event(struct drm_device *dev, int crtc,
863 struct drm_pending_vblank_event *e)
864{
865 struct timeval now;
866 unsigned int seq;
867 if (crtc >= 0) {
868 seq = drm_vblank_count_and_time(dev, crtc, &now);
869 } else {
870 seq = 0;
Imre Deakc61eef72012-10-23 18:53:26 +0000871
872 now = get_drm_timestamp();
Rob Clarkc6eefa12012-10-16 22:48:40 +0000873 }
Rob Clark21a245d2012-12-10 10:49:46 -0600874 e->pipe = crtc;
Rob Clarkc6eefa12012-10-16 22:48:40 +0000875 send_vblank_event(dev, e, seq, &now);
876}
877EXPORT_SYMBOL(drm_send_vblank_event);
878
Mario Kleiner27641c32010-10-23 04:20:23 +0200879/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700880 * drm_update_vblank_count - update the master vblank counter
881 * @dev: DRM device
882 * @crtc: counter to update
883 *
884 * Call back into the driver to update the appropriate vblank counter
885 * (specified by @crtc). Deal with wraparound, if it occurred, and
886 * update the last read value so we can deal with wraparound on the next
887 * call if necessary.
888 *
889 * Only necessary when going from off->on, to account for frames we
890 * didn't get an interrupt for.
891 *
892 * Note: caller must hold dev->vbl_lock since this reads & writes
893 * device vblank fields.
894 */
895static void drm_update_vblank_count(struct drm_device *dev, int crtc)
896{
Mario Kleiner27641c32010-10-23 04:20:23 +0200897 u32 cur_vblank, diff, tslot, rc;
898 struct timeval t_vblank;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700899
900 /*
901 * Interrupts were disabled prior to this call, so deal with counter
902 * wrap if needed.
903 * NOTE! It's possible we lost a full dev->max_vblank_count events
904 * here if the register is small or we had vblank interrupts off for
905 * a long time.
Mario Kleiner27641c32010-10-23 04:20:23 +0200906 *
907 * We repeat the hardware vblank counter & timestamp query until
908 * we get consistent results. This to prevent races between gpu
909 * updating its hardware counter while we are retrieving the
910 * corresponding vblank timestamp.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700911 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200912 do {
913 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
914 rc = drm_get_last_vbltimestamp(dev, crtc, &t_vblank, 0);
915 } while (cur_vblank != dev->driver->get_vblank_counter(dev, crtc));
916
917 /* Deal with counter wrap */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700918 diff = cur_vblank - dev->last_vblank[crtc];
919 if (cur_vblank < dev->last_vblank[crtc]) {
920 diff += dev->max_vblank_count;
921
922 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
923 crtc, dev->last_vblank[crtc], cur_vblank, diff);
924 }
925
926 DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
927 crtc, diff);
928
Mario Kleiner27641c32010-10-23 04:20:23 +0200929 /* Reinitialize corresponding vblank timestamp if high-precision query
930 * available. Skip this step if query unsupported or failed. Will
931 * reinitialize delayed at next vblank interrupt in that case.
932 */
933 if (rc) {
934 tslot = atomic_read(&dev->_vblank_count[crtc]) + diff;
935 vblanktimestamp(dev, crtc, tslot) = t_vblank;
Mario Kleiner27641c32010-10-23 04:20:23 +0200936 }
937
Mario Kleinerbc215122011-02-21 05:42:01 +0100938 smp_mb__before_atomic_inc();
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700939 atomic_add(diff, &dev->_vblank_count[crtc]);
Mario Kleinerbc215122011-02-21 05:42:01 +0100940 smp_mb__after_atomic_inc();
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700941}
942
943/**
944 * drm_vblank_get - get a reference count on vblank events
945 * @dev: DRM device
946 * @crtc: which CRTC to own
947 *
948 * Acquire a reference count on vblank events to avoid having them disabled
949 * while in use.
950 *
951 * RETURNS
952 * Zero on success, nonzero on failure.
953 */
954int drm_vblank_get(struct drm_device *dev, int crtc)
955{
Mario Kleiner27641c32010-10-23 04:20:23 +0200956 unsigned long irqflags, irqflags2;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700957 int ret = 0;
958
959 spin_lock_irqsave(&dev->vbl_lock, irqflags);
960 /* Going from 0->1 means we have to enable interrupts again */
Li Peng778c9022009-11-09 12:51:22 +0800961 if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200962 spin_lock_irqsave(&dev->vblank_time_lock, irqflags2);
Li Peng778c9022009-11-09 12:51:22 +0800963 if (!dev->vblank_enabled[crtc]) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200964 /* Enable vblank irqs under vblank_time_lock protection.
965 * All vblank count & timestamp updates are held off
966 * until we are done reinitializing master counter and
967 * timestamps. Filtercode in drm_handle_vblank() will
968 * prevent double-accounting of same vblank interval.
969 */
Li Peng778c9022009-11-09 12:51:22 +0800970 ret = dev->driver->enable_vblank(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +0200971 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n",
972 crtc, ret);
Li Peng778c9022009-11-09 12:51:22 +0800973 if (ret)
974 atomic_dec(&dev->vblank_refcount[crtc]);
975 else {
976 dev->vblank_enabled[crtc] = 1;
977 drm_update_vblank_count(dev, crtc);
978 }
979 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200980 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags2);
Li Peng778c9022009-11-09 12:51:22 +0800981 } else {
982 if (!dev->vblank_enabled[crtc]) {
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700983 atomic_dec(&dev->vblank_refcount[crtc]);
Li Peng778c9022009-11-09 12:51:22 +0800984 ret = -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700985 }
986 }
987 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
988
989 return ret;
990}
991EXPORT_SYMBOL(drm_vblank_get);
992
993/**
994 * drm_vblank_put - give up ownership of vblank events
995 * @dev: DRM device
996 * @crtc: which counter to give up
997 *
998 * Release ownership of a given vblank counter, turning off interrupts
Mario Kleiner27641c32010-10-23 04:20:23 +0200999 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001000 */
1001void drm_vblank_put(struct drm_device *dev, int crtc)
1002{
Mario Kleiner27641c32010-10-23 04:20:23 +02001003 BUG_ON(atomic_read(&dev->vblank_refcount[crtc]) == 0);
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001004
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001005 /* Last user schedules interrupt disable */
Mario Kleiner27641c32010-10-23 04:20:23 +02001006 if (atomic_dec_and_test(&dev->vblank_refcount[crtc]) &&
1007 (drm_vblank_offdelay > 0))
1008 mod_timer(&dev->vblank_disable_timer,
1009 jiffies + ((drm_vblank_offdelay * DRM_HZ)/1000));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001010}
1011EXPORT_SYMBOL(drm_vblank_put);
1012
Rob Clarkc6eefa12012-10-16 22:48:40 +00001013/**
1014 * drm_vblank_off - disable vblank events on a CRTC
1015 * @dev: DRM device
1016 * @crtc: CRTC in question
1017 *
1018 * Caller must hold event lock.
1019 */
Li Peng778c9022009-11-09 12:51:22 +08001020void drm_vblank_off(struct drm_device *dev, int crtc)
1021{
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001022 struct drm_pending_vblank_event *e, *t;
1023 struct timeval now;
Li Peng778c9022009-11-09 12:51:22 +08001024 unsigned long irqflags;
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001025 unsigned int seq;
Li Peng778c9022009-11-09 12:51:22 +08001026
1027 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Mario Kleiner27641c32010-10-23 04:20:23 +02001028 vblank_disable_and_save(dev, crtc);
Li Peng778c9022009-11-09 12:51:22 +08001029 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001030
1031 /* Send any queued vblank events, lest the natives grow disquiet */
1032 seq = drm_vblank_count_and_time(dev, crtc, &now);
Imre Deake7783ba2012-11-02 13:30:50 +02001033
1034 spin_lock(&dev->event_lock);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001035 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
1036 if (e->pipe != crtc)
1037 continue;
1038 DRM_DEBUG("Sending premature vblank event on disable: \
1039 wanted %d, current %d\n",
1040 e->event.sequence, seq);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001041 list_del(&e->base.link);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001042 drm_vblank_put(dev, e->pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001043 send_vblank_event(dev, e, seq, &now);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001044 }
Imre Deake7783ba2012-11-02 13:30:50 +02001045 spin_unlock(&dev->event_lock);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +10001046
Li Peng778c9022009-11-09 12:51:22 +08001047 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
1048}
1049EXPORT_SYMBOL(drm_vblank_off);
1050
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001051/**
Dave Airlief453ba02008-11-07 14:05:41 -08001052 * drm_vblank_pre_modeset - account for vblanks across mode sets
1053 * @dev: DRM device
1054 * @crtc: CRTC in question
Dave Airlief453ba02008-11-07 14:05:41 -08001055 *
1056 * Account for vblank events across mode setting events, which will likely
1057 * reset the hardware frame counter.
1058 */
1059void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
1060{
Huacai Chenb7ea85a42013-05-21 06:23:43 +00001061 /* vblank is not initialized (IRQ not installed ?), or has been freed */
Jerome Glissee77cef92010-01-07 15:39:13 +01001062 if (!dev->num_crtcs)
1063 return;
Dave Airlief453ba02008-11-07 14:05:41 -08001064 /*
1065 * To avoid all the problems that might happen if interrupts
1066 * were enabled/disabled around or between these calls, we just
1067 * have the kernel take a reference on the CRTC (just once though
1068 * to avoid corrupting the count if multiple, mismatch calls occur),
1069 * so that interrupts remain enabled in the interim.
1070 */
1071 if (!dev->vblank_inmodeset[crtc]) {
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001072 dev->vblank_inmodeset[crtc] = 0x1;
1073 if (drm_vblank_get(dev, crtc) == 0)
1074 dev->vblank_inmodeset[crtc] |= 0x2;
Dave Airlief453ba02008-11-07 14:05:41 -08001075 }
1076}
1077EXPORT_SYMBOL(drm_vblank_pre_modeset);
1078
1079void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
1080{
1081 unsigned long irqflags;
1082
Huacai Chenb7ea85a42013-05-21 06:23:43 +00001083 /* vblank is not initialized (IRQ not installed ?), or has been freed */
1084 if (!dev->num_crtcs)
1085 return;
1086
Dave Airlief453ba02008-11-07 14:05:41 -08001087 if (dev->vblank_inmodeset[crtc]) {
1088 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Ville Syrjäläba0bf122013-10-04 14:53:33 +03001089 dev->vblank_disable_allowed = true;
Dave Airlief453ba02008-11-07 14:05:41 -08001090 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Chris Wilsonb3f5e732009-02-19 14:48:22 +00001091
1092 if (dev->vblank_inmodeset[crtc] & 0x2)
1093 drm_vblank_put(dev, crtc);
1094
1095 dev->vblank_inmodeset[crtc] = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001096 }
1097}
1098EXPORT_SYMBOL(drm_vblank_post_modeset);
1099
1100/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001101 * drm_modeset_ctl - handle vblank event counter changes across mode switch
1102 * @DRM_IOCTL_ARGS: standard ioctl arguments
1103 *
1104 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
1105 * ioctls around modesetting so that any lost vblank events are accounted for.
1106 *
1107 * Generally the counter will reset across mode sets. If interrupts are
1108 * enabled around this call, we don't have to do anything since the counter
1109 * will have already been incremented.
1110 */
1111int drm_modeset_ctl(struct drm_device *dev, void *data,
1112 struct drm_file *file_priv)
1113{
1114 struct drm_modeset_ctl *modeset = data;
Dave Airlie19227562011-02-24 08:35:06 +10001115 unsigned int crtc;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001116
1117 /* If drm_vblank_init() hasn't been called yet, just no-op */
1118 if (!dev->num_crtcs)
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001119 return 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001120
Laurent Pinchart29935552012-05-30 00:58:09 +02001121 /* KMS drivers handle this internally */
1122 if (drm_core_check_feature(dev, DRIVER_MODESET))
1123 return 0;
1124
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001125 crtc = modeset->crtc;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001126 if (crtc >= dev->num_crtcs)
1127 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001128
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001129 switch (modeset->cmd) {
1130 case _DRM_PRE_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001131 drm_vblank_pre_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001132 break;
1133 case _DRM_POST_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001134 drm_vblank_post_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001135 break;
1136 default:
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001137 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001138 }
1139
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001140 return 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001141}
1142
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001143static int drm_queue_vblank_event(struct drm_device *dev, int pipe,
1144 union drm_wait_vblank *vblwait,
1145 struct drm_file *file_priv)
1146{
1147 struct drm_pending_vblank_event *e;
1148 struct timeval now;
1149 unsigned long flags;
1150 unsigned int seq;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001151 int ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001152
1153 e = kzalloc(sizeof *e, GFP_KERNEL);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001154 if (e == NULL) {
1155 ret = -ENOMEM;
1156 goto err_put;
1157 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001158
1159 e->pipe = pipe;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001160 e->base.pid = current->pid;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001161 e->event.base.type = DRM_EVENT_VBLANK;
1162 e->event.base.length = sizeof e->event;
1163 e->event.user_data = vblwait->request.signal;
1164 e->base.event = &e->event.base;
1165 e->base.file_priv = file_priv;
1166 e->base.destroy = (void (*) (struct drm_pending_event *)) kfree;
1167
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001168 spin_lock_irqsave(&dev->event_lock, flags);
1169
1170 if (file_priv->event_space < sizeof e->event) {
Chris Wilsonea5d5522010-12-01 19:41:31 +00001171 ret = -EBUSY;
1172 goto err_unlock;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001173 }
1174
1175 file_priv->event_space -= sizeof e->event;
Mario Kleiner27641c32010-10-23 04:20:23 +02001176 seq = drm_vblank_count_and_time(dev, pipe, &now);
1177
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001178 if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) &&
1179 (seq - vblwait->request.sequence) <= (1 << 23)) {
1180 vblwait->request.sequence = seq + 1;
Jesse Barnes4a921642009-11-10 08:21:25 +00001181 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001182 }
1183
1184 DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n",
1185 vblwait->request.sequence, seq, pipe);
1186
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001187 trace_drm_vblank_event_queued(current->pid, pipe,
1188 vblwait->request.sequence);
1189
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001190 e->event.sequence = vblwait->request.sequence;
1191 if ((seq - vblwait->request.sequence) <= (1 << 23)) {
Dan Carpenter6f331622010-12-09 08:35:40 +03001192 drm_vblank_put(dev, pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001193 send_vblank_event(dev, e, seq, &now);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001194 vblwait->reply.sequence = seq;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001195 } else {
Ilija Hadzica6778e92011-10-31 13:11:57 -04001196 /* drm_handle_vblank_events will call drm_vblank_put */
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001197 list_add_tail(&e->base.link, &dev->vblank_event_list);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001198 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001199 }
1200
1201 spin_unlock_irqrestore(&dev->event_lock, flags);
1202
1203 return 0;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001204
1205err_unlock:
1206 spin_unlock_irqrestore(&dev->event_lock, flags);
1207 kfree(e);
1208err_put:
Dan Carpenter6f331622010-12-09 08:35:40 +03001209 drm_vblank_put(dev, pipe);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001210 return ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001211}
1212
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001213/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 * Wait for VBLANK.
1215 *
1216 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +10001217 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 * \param cmd command.
1219 * \param data user argument, pointing to a drm_wait_vblank structure.
1220 * \return zero on success or a negative number on failure.
1221 *
Eric Anholt30b23632009-01-27 21:19:41 -08001222 * This function enables the vblank interrupt on the pipe requested, then
1223 * sleeps waiting for the requested sequence number to occur, and drops
1224 * the vblank interrupt refcount afterwards. (vblank irq disable follows that
1225 * after a timeout with no further vblank waits scheduled).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001227int drm_wait_vblank(struct drm_device *dev, void *data,
1228 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Eric Anholtc153f452007-09-03 12:06:45 +10001230 union drm_wait_vblank *vblwait = data;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001231 int ret;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001232 unsigned int flags, seq, crtc, high_crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Thierry Reding03f65092013-01-14 16:05:56 +00001234 if (drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
1235 if ((!drm_dev_to_irq(dev)) || (!dev->irq_enabled))
1236 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Eric Anholt30b23632009-01-27 21:19:41 -08001238 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
1239 return -EINVAL;
1240
Eric Anholtc153f452007-09-03 12:06:45 +10001241 if (vblwait->request.type &
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001242 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1243 _DRM_VBLANK_HIGH_CRTC_MASK)) {
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001244 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001245 vblwait->request.type,
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001246 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1247 _DRM_VBLANK_HIGH_CRTC_MASK));
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001248 return -EINVAL;
1249 }
1250
Eric Anholtc153f452007-09-03 12:06:45 +10001251 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001252 high_crtc = (vblwait->request.type & _DRM_VBLANK_HIGH_CRTC_MASK);
1253 if (high_crtc)
1254 crtc = high_crtc >> _DRM_VBLANK_HIGH_CRTC_SHIFT;
1255 else
1256 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001257 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001258 return -EINVAL;
1259
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001260 ret = drm_vblank_get(dev, crtc);
1261 if (ret) {
Paul Rolland8d3457e2009-08-09 12:24:01 +10001262 DRM_DEBUG("failed to acquire vblank counter, %d\n", ret);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001263 return ret;
1264 }
1265 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001266
Eric Anholtc153f452007-09-03 12:06:45 +10001267 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +10001269 vblwait->request.sequence += seq;
1270 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 case _DRM_VBLANK_ABSOLUTE:
1272 break;
1273 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001274 ret = -EINVAL;
1275 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
Ilija Hadzica6778e92011-10-31 13:11:57 -04001278 if (flags & _DRM_VBLANK_EVENT) {
1279 /* must hold on to the vblank ref until the event fires
1280 * drm_vblank_put will be called asynchronously
1281 */
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001282 return drm_queue_vblank_event(dev, crtc, vblwait, file_priv);
Ilija Hadzica6778e92011-10-31 13:11:57 -04001283 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001284
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001285 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +10001286 (seq - vblwait->request.sequence) <= (1<<23)) {
1287 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001288 }
1289
Eric Anholt30b23632009-01-27 21:19:41 -08001290 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
1291 vblwait->request.sequence, crtc);
1292 dev->last_vblank_wait[crtc] = vblwait->request.sequence;
1293 DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ,
1294 (((drm_vblank_count(dev, crtc) -
1295 vblwait->request.sequence) <= (1 << 23)) ||
1296 !dev->irq_enabled));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Eric Anholt30b23632009-01-27 21:19:41 -08001298 if (ret != -EINTR) {
1299 struct timeval now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Mario Kleiner27641c32010-10-23 04:20:23 +02001301 vblwait->reply.sequence = drm_vblank_count_and_time(dev, crtc, &now);
Eric Anholt30b23632009-01-27 21:19:41 -08001302 vblwait->reply.tval_sec = now.tv_sec;
1303 vblwait->reply.tval_usec = now.tv_usec;
Mario Kleiner27641c32010-10-23 04:20:23 +02001304
Eric Anholt30b23632009-01-27 21:19:41 -08001305 DRM_DEBUG("returning %d to client\n",
1306 vblwait->reply.sequence);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 } else {
Eric Anholt30b23632009-01-27 21:19:41 -08001308 DRM_DEBUG("vblank wait interrupted by signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
1310
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001311done:
1312 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return ret;
1314}
1315
Sachin Kamatea7f7ab2012-08-01 17:15:31 +05301316static void drm_handle_vblank_events(struct drm_device *dev, int crtc)
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001317{
1318 struct drm_pending_vblank_event *e, *t;
1319 struct timeval now;
1320 unsigned long flags;
1321 unsigned int seq;
1322
Mario Kleiner27641c32010-10-23 04:20:23 +02001323 seq = drm_vblank_count_and_time(dev, crtc, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001324
1325 spin_lock_irqsave(&dev->event_lock, flags);
1326
1327 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
1328 if (e->pipe != crtc)
1329 continue;
1330 if ((seq - e->event.sequence) > (1<<23))
1331 continue;
1332
1333 DRM_DEBUG("vblank event on %d, current %d\n",
1334 e->event.sequence, seq);
1335
Rob Clarkc6eefa12012-10-16 22:48:40 +00001336 list_del(&e->base.link);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001337 drm_vblank_put(dev, e->pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001338 send_vblank_event(dev, e, seq, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001339 }
1340
1341 spin_unlock_irqrestore(&dev->event_lock, flags);
Jesse Barnesac2874b2010-07-01 16:47:31 -07001342
1343 trace_drm_vblank_event(crtc, seq);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001344}
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001347 * drm_handle_vblank - handle a vblank event
1348 * @dev: DRM device
1349 * @crtc: where this event occurred
1350 *
1351 * Drivers should call this routine in their vblank interrupt handlers to
1352 * update the vblank counter and send any signals that may be pending.
1353 */
Chris Wilson78c6e172011-01-31 10:48:04 +00001354bool drm_handle_vblank(struct drm_device *dev, int crtc)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001355{
Mario Kleiner27641c32010-10-23 04:20:23 +02001356 u32 vblcount;
1357 s64 diff_ns;
1358 struct timeval tvblank;
1359 unsigned long irqflags;
1360
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001361 if (!dev->num_crtcs)
Chris Wilson78c6e172011-01-31 10:48:04 +00001362 return false;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001363
Mario Kleiner27641c32010-10-23 04:20:23 +02001364 /* Need timestamp lock to prevent concurrent execution with
1365 * vblank enable/disable, as this would cause inconsistent
1366 * or corrupted timestamps and vblank counts.
1367 */
1368 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
1369
1370 /* Vblank irq handling disabled. Nothing to do. */
1371 if (!dev->vblank_enabled[crtc]) {
1372 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001373 return false;
Mario Kleiner27641c32010-10-23 04:20:23 +02001374 }
1375
1376 /* Fetch corresponding timestamp for this vblank interval from
1377 * driver and store it in proper slot of timestamp ringbuffer.
1378 */
1379
1380 /* Get current timestamp and count. */
1381 vblcount = atomic_read(&dev->_vblank_count[crtc]);
1382 drm_get_last_vbltimestamp(dev, crtc, &tvblank, DRM_CALLED_FROM_VBLIRQ);
1383
1384 /* Compute time difference to timestamp of last vblank */
1385 diff_ns = timeval_to_ns(&tvblank) -
1386 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
1387
1388 /* Update vblank timestamp and count if at least
1389 * DRM_REDUNDANT_VBLIRQ_THRESH_NS nanoseconds
1390 * difference between last stored timestamp and current
1391 * timestamp. A smaller difference means basically
1392 * identical timestamps. Happens if this vblank has
1393 * been already processed and this is a redundant call,
1394 * e.g., due to spurious vblank interrupts. We need to
1395 * ignore those for accounting.
1396 */
Mario Kleinerc4cc3832011-02-21 05:42:00 +01001397 if (abs64(diff_ns) > DRM_REDUNDANT_VBLIRQ_THRESH_NS) {
Mario Kleiner27641c32010-10-23 04:20:23 +02001398 /* Store new timestamp in ringbuffer. */
1399 vblanktimestamp(dev, crtc, vblcount + 1) = tvblank;
Mario Kleiner27641c32010-10-23 04:20:23 +02001400
1401 /* Increment cooked vblank count. This also atomically commits
1402 * the timestamp computed above.
1403 */
Mario Kleinerbc215122011-02-21 05:42:01 +01001404 smp_mb__before_atomic_inc();
Mario Kleiner27641c32010-10-23 04:20:23 +02001405 atomic_inc(&dev->_vblank_count[crtc]);
Mario Kleinerbc215122011-02-21 05:42:01 +01001406 smp_mb__after_atomic_inc();
Mario Kleiner27641c32010-10-23 04:20:23 +02001407 } else {
1408 DRM_DEBUG("crtc %d: Redundant vblirq ignored. diff_ns = %d\n",
1409 crtc, (int) diff_ns);
1410 }
1411
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001412 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001413 drm_handle_vblank_events(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +02001414
1415 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001416 return true;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001417}
1418EXPORT_SYMBOL(drm_handle_vblank);