blob: 580f9ed2dca6a0a66998472f932e11fc662e2578 [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. */
Ville Syrjälä5380e922013-10-04 14:53:36 +030046#define vblanktimestamp(dev, crtc, count) \
47 ((dev)->vblank[crtc].time[(count) % DRM_VBLANKTIME_RBSIZE])
Mario Kleiner27641c32010-10-23 04:20:23 +020048
49/* Retry timestamp calculation up to 3 times to satisfy
50 * drm_timestamp_precision before giving up.
51 */
52#define DRM_TIMESTAMP_MAXRETRIES 3
53
54/* Threshold in nanoseconds for detection of redundant
55 * vblank irq in drm_handle_vblank(). 1 msec should be ok.
56 */
57#define DRM_REDUNDANT_VBLIRQ_THRESH_NS 1000000
58
Mario Kleiner27641c32010-10-23 04:20:23 +020059/*
60 * Clear vblank timestamp buffer for a crtc.
61 */
62static void clear_vblank_timestamps(struct drm_device *dev, int crtc)
63{
Ville Syrjälä5380e922013-10-04 14:53:36 +030064 memset(dev->vblank[crtc].time, 0, sizeof(dev->vblank[crtc].time));
Mario Kleiner27641c32010-10-23 04:20:23 +020065}
66
67/*
68 * Disable vblank irq's on crtc, make sure that last vblank count
69 * of hardware and corresponding consistent software vblank counter
70 * are preserved, even if there are any spurious vblank irq's after
71 * disable.
72 */
73static void vblank_disable_and_save(struct drm_device *dev, int crtc)
74{
75 unsigned long irqflags;
76 u32 vblcount;
77 s64 diff_ns;
78 int vblrc;
79 struct timeval tvblank;
Egbert Eich0355cf32012-10-13 11:36:14 +000080 int count = DRM_TIMESTAMP_MAXRETRIES;
Mario Kleiner27641c32010-10-23 04:20:23 +020081
82 /* Prevent vblank irq processing while disabling vblank irqs,
83 * so no updates of timestamps or count can happen after we've
84 * disabled. Needed to prevent races in case of delayed irq's.
Mario Kleiner27641c32010-10-23 04:20:23 +020085 */
Mario Kleiner27641c32010-10-23 04:20:23 +020086 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
87
88 dev->driver->disable_vblank(dev, crtc);
Ville Syrjälä5380e922013-10-04 14:53:36 +030089 dev->vblank[crtc].enabled = false;
Mario Kleiner27641c32010-10-23 04:20:23 +020090
91 /* No further vblank irq's will be processed after
92 * this point. Get current hardware vblank count and
93 * vblank timestamp, repeat until they are consistent.
94 *
95 * FIXME: There is still a race condition here and in
96 * drm_update_vblank_count() which can cause off-by-one
97 * reinitialization of software vblank counter. If gpu
98 * vblank counter doesn't increment exactly at the leading
99 * edge of a vblank interval, then we can lose 1 count if
100 * we happen to execute between start of vblank and the
101 * delayed gpu counter increment.
102 */
103 do {
Ville Syrjälä5380e922013-10-04 14:53:36 +0300104 dev->vblank[crtc].last = dev->driver->get_vblank_counter(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +0200105 vblrc = drm_get_last_vbltimestamp(dev, crtc, &tvblank, 0);
Ville Syrjälä5380e922013-10-04 14:53:36 +0300106 } while (dev->vblank[crtc].last != dev->driver->get_vblank_counter(dev, crtc) && (--count) && vblrc);
Egbert Eich0355cf32012-10-13 11:36:14 +0000107
108 if (!count)
109 vblrc = 0;
Mario Kleiner27641c32010-10-23 04:20:23 +0200110
111 /* Compute time difference to stored timestamp of last vblank
112 * as updated by last invocation of drm_handle_vblank() in vblank irq.
113 */
Ville Syrjälä5380e922013-10-04 14:53:36 +0300114 vblcount = atomic_read(&dev->vblank[crtc].count);
Mario Kleiner27641c32010-10-23 04:20:23 +0200115 diff_ns = timeval_to_ns(&tvblank) -
116 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
117
118 /* If there is at least 1 msec difference between the last stored
119 * timestamp and tvblank, then we are currently executing our
120 * disable inside a new vblank interval, the tvblank timestamp
121 * corresponds to this new vblank interval and the irq handler
122 * for this vblank didn't run yet and won't run due to our disable.
123 * Therefore we need to do the job of drm_handle_vblank() and
124 * increment the vblank counter by one to account for this vblank.
125 *
126 * Skip this step if there isn't any high precision timestamp
127 * available. In that case we can't account for this and just
128 * hope for the best.
129 */
Mario Kleinerbc215122011-02-21 05:42:01 +0100130 if ((vblrc > 0) && (abs64(diff_ns) > 1000000)) {
Ville Syrjälä5380e922013-10-04 14:53:36 +0300131 atomic_inc(&dev->vblank[crtc].count);
Mario Kleinerbc215122011-02-21 05:42:01 +0100132 smp_mb__after_atomic_inc();
133 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200134
135 /* Invalidate all timestamps while vblank irq's are off. */
136 clear_vblank_timestamps(dev, crtc);
137
138 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Mario Kleiner27641c32010-10-23 04:20:23 +0200139}
140
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700141static void vblank_disable_fn(unsigned long arg)
142{
143 struct drm_device *dev = (struct drm_device *)arg;
144 unsigned long irqflags;
145 int i;
146
147 if (!dev->vblank_disable_allowed)
148 return;
149
150 for (i = 0; i < dev->num_crtcs; i++) {
151 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Ville Syrjälä5380e922013-10-04 14:53:36 +0300152 if (atomic_read(&dev->vblank[i].refcount) == 0 &&
153 dev->vblank[i].enabled) {
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700154 DRM_DEBUG("disabling vblank on crtc %d\n", i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200155 vblank_disable_and_save(dev, i);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700156 }
157 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
158 }
159}
160
Keith Packard52440212008-11-18 09:30:25 -0800161void drm_vblank_cleanup(struct drm_device *dev)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700162{
163 /* Bail if the driver didn't call drm_vblank_init() */
164 if (dev->num_crtcs == 0)
165 return;
166
Laurent Pinchart7eb3b2c2012-05-17 13:27:19 +0200167 del_timer_sync(&dev->vblank_disable_timer);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700168
169 vblank_disable_fn((unsigned long)dev);
170
Ville Syrjälä5380e922013-10-04 14:53:36 +0300171 kfree(dev->vblank);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700172
173 dev->num_crtcs = 0;
174}
Jerome Glissee77cef92010-01-07 15:39:13 +0100175EXPORT_SYMBOL(drm_vblank_cleanup);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700176
177int drm_vblank_init(struct drm_device *dev, int num_crtcs)
178{
179 int i, ret = -ENOMEM;
180
181 setup_timer(&dev->vblank_disable_timer, vblank_disable_fn,
182 (unsigned long)dev);
183 spin_lock_init(&dev->vbl_lock);
Mario Kleiner27641c32010-10-23 04:20:23 +0200184 spin_lock_init(&dev->vblank_time_lock);
185
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700186 dev->num_crtcs = num_crtcs;
187
Ville Syrjälä5380e922013-10-04 14:53:36 +0300188 dev->vblank = kcalloc(num_crtcs, sizeof(*dev->vblank), GFP_KERNEL);
189 if (!dev->vblank)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700190 goto err;
191
Ville Syrjälä5380e922013-10-04 14:53:36 +0300192 for (i = 0; i < num_crtcs; i++)
193 init_waitqueue_head(&dev->vblank[i].queue);
Mario Kleiner27641c32010-10-23 04:20:23 +0200194
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100195 DRM_INFO("Supports vblank timestamp caching Rev 2 (21.10.2013).\n");
Mario Kleiner27641c32010-10-23 04:20:23 +0200196
197 /* Driver specific high-precision vblank timestamping supported? */
198 if (dev->driver->get_vblank_timestamp)
199 DRM_INFO("Driver supports precise vblank timestamp query.\n");
200 else
201 DRM_INFO("No driver support for vblank timestamp query.\n");
202
Ville Syrjäläba0bf122013-10-04 14:53:33 +0300203 dev->vblank_disable_allowed = false;
204
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700205 return 0;
206
207err:
208 drm_vblank_cleanup(dev);
209 return ret;
210}
211EXPORT_SYMBOL(drm_vblank_init);
212
Dave Airlie28d52042009-09-21 14:33:58 +1000213static void drm_irq_vgaarb_nokms(void *cookie, bool state)
214{
215 struct drm_device *dev = cookie;
216
217 if (dev->driver->vgaarb_irq) {
218 dev->driver->vgaarb_irq(dev, state);
219 return;
220 }
221
222 if (!dev->irq_enabled)
223 return;
224
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000225 if (state) {
226 if (dev->driver->irq_uninstall)
227 dev->driver->irq_uninstall(dev);
228 } else {
229 if (dev->driver->irq_preinstall)
230 dev->driver->irq_preinstall(dev);
231 if (dev->driver->irq_postinstall)
232 dev->driver->irq_postinstall(dev);
Dave Airlie28d52042009-09-21 14:33:58 +1000233 }
234}
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/**
237 * Install IRQ handler.
238 *
239 * \param dev DRM device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 *
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700241 * Initializes the IRQ related data. Installs the handler, calling the driver
Sascha Hauer884a53e2012-02-29 09:06:21 +0100242 * \c irq_preinstall() and \c irq_postinstall() functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 * before and after the installation.
244 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700245int drm_irq_install(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200247 int ret;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000248 unsigned long sh_flags = 0;
Dave Airlieb8da7de2009-06-02 16:50:35 +1000249 char *irqname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
252 return -EINVAL;
253
Jordan Crousedcdb1672010-05-27 13:40:25 -0600254 if (drm_dev_to_irq(dev) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return -EINVAL;
256
Dave Airlie30e2fb12006-02-02 19:37:46 +1100257 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /* Driver must have been initialized */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000260 if (!dev->dev_private) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100261 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return -EINVAL;
263 }
264
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000265 if (dev->irq_enabled) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100266 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return -EBUSY;
268 }
Ville Syrjälä44238432013-10-04 14:53:37 +0300269 dev->irq_enabled = true;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100270 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Jordan Crousedcdb1672010-05-27 13:40:25 -0600272 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000274 /* Before installing handler */
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000275 if (dev->driver->irq_preinstall)
276 dev->driver->irq_preinstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000278 /* Install handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
Thomas Gleixner935f6e32006-07-01 19:29:34 -0700280 sh_flags = IRQF_SHARED;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000281
Dave Airlieb8da7de2009-06-02 16:50:35 +1000282 if (dev->devname)
283 irqname = dev->devname;
284 else
285 irqname = dev->driver->name;
286
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700287 ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler,
Dave Airlieb8da7de2009-06-02 16:50:35 +1000288 sh_flags, irqname, dev);
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700289
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000290 if (ret < 0) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100291 mutex_lock(&dev->struct_mutex);
Ville Syrjälä44238432013-10-04 14:53:37 +0300292 dev->irq_enabled = false;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100293 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return ret;
295 }
296
Dave Airlie28d52042009-09-21 14:33:58 +1000297 if (!drm_core_check_feature(dev, DRIVER_MODESET))
298 vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL);
299
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000300 /* After installing handler */
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000301 if (dev->driver->irq_postinstall)
302 ret = dev->driver->irq_postinstall(dev);
303
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700304 if (ret < 0) {
305 mutex_lock(&dev->struct_mutex);
Ville Syrjälä44238432013-10-04 14:53:37 +0300306 dev->irq_enabled = false;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700307 mutex_unlock(&dev->struct_mutex);
Joonyoung Shime1c44ac2011-08-04 05:41:00 +0000308 if (!drm_core_check_feature(dev, DRIVER_MODESET))
309 vga_client_register(dev->pdev, NULL, NULL, NULL);
310 free_irq(drm_dev_to_irq(dev), dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700313 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700315EXPORT_SYMBOL(drm_irq_install);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317/**
318 * Uninstall the IRQ handler.
319 *
320 * \param dev DRM device.
321 *
Sascha Hauer884a53e2012-02-29 09:06:21 +0100322 * Calls the driver's \c irq_uninstall() function, and stops the irq.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200324int drm_irq_uninstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800326 unsigned long irqflags;
Ville Syrjälä44238432013-10-04 14:53:37 +0300327 bool irq_enabled;
328 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
331 return -EINVAL;
332
Dave Airlie30e2fb12006-02-02 19:37:46 +1100333 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 irq_enabled = dev->irq_enabled;
Ville Syrjälä44238432013-10-04 14:53:37 +0300335 dev->irq_enabled = false;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100336 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800338 /*
339 * Wake up any waiters so they don't hang.
340 */
Ben Skeggsbde48892011-07-04 12:52:27 +1000341 if (dev->num_crtcs) {
342 spin_lock_irqsave(&dev->vbl_lock, irqflags);
343 for (i = 0; i < dev->num_crtcs; i++) {
Daniel Vetter57ed0f72013-12-11 11:34:43 +0100344 wake_up(&dev->vblank[i].queue);
Ville Syrjälä5380e922013-10-04 14:53:36 +0300345 dev->vblank[i].enabled = false;
346 dev->vblank[i].last =
Ben Skeggsbde48892011-07-04 12:52:27 +1000347 dev->driver->get_vblank_counter(dev, i);
348 }
349 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800350 }
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800351
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000352 if (!irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return -EINVAL;
354
Jordan Crousedcdb1672010-05-27 13:40:25 -0600355 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Dave Airlie28d52042009-09-21 14:33:58 +1000357 if (!drm_core_check_feature(dev, DRIVER_MODESET))
358 vga_client_register(dev->pdev, NULL, NULL, NULL);
359
Joonyoung Shim5037f8a2011-08-04 05:41:01 +0000360 if (dev->driver->irq_uninstall)
361 dev->driver->irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Jordan Crousedcdb1672010-05-27 13:40:25 -0600363 free_irq(drm_dev_to_irq(dev), dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 return 0;
366}
367EXPORT_SYMBOL(drm_irq_uninstall);
368
369/**
370 * IRQ control ioctl.
371 *
372 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000373 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * \param cmd command.
375 * \param arg user argument, pointing to a drm_control structure.
376 * \return zero on success or a negative number on failure.
377 *
378 * Calls irq_install() or irq_uninstall() according to \p arg.
379 */
Eric Anholtc153f452007-09-03 12:06:45 +1000380int drm_control(struct drm_device *dev, void *data,
381 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Eric Anholtc153f452007-09-03 12:06:45 +1000383 struct drm_control *ctl = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000384
Mario Kleiner27641c32010-10-23 04:20:23 +0200385 /* if we haven't irq we fallback for compatibility reasons -
386 * this used to be a separate function in drm_dma.h
387 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Daniel Vetter22471cf2013-11-03 20:02:50 +0100389 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
390 return 0;
391 if (drm_core_check_feature(dev, DRIVER_MODESET))
392 return 0;
393 /* UMS was only ever support on pci devices. */
394 if (WARN_ON(!dev->pdev))
395 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Eric Anholtc153f452007-09-03 12:06:45 +1000397 switch (ctl->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 case DRM_INST_HANDLER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
Jordan Crousedcdb1672010-05-27 13:40:25 -0600400 ctl->irq != drm_dev_to_irq(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000402 return drm_irq_install(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 case DRM_UNINST_HANDLER:
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000404 return drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 default:
406 return -EINVAL;
407 }
408}
409
410/**
Ville Syrjälä21b21562013-10-26 17:22:52 +0300411 * drm_calc_timestamping_constants - Calculate vblank timestamp constants
Mario Kleiner27641c32010-10-23 04:20:23 +0200412 *
413 * @crtc drm_crtc whose timestamp constants should be updated.
Ville Syrjälä545cdd52013-10-26 17:16:30 +0300414 * @mode display mode containing the scanout timings
Mario Kleiner27641c32010-10-23 04:20:23 +0200415 *
Ville Syrjälä21b21562013-10-26 17:22:52 +0300416 * Calculate and store various constants which are later
417 * needed by vblank and swap-completion timestamping, e.g,
418 * by drm_calc_vbltimestamp_from_scanoutpos(). They are
419 * derived from crtc's true scanout timing, so they take
420 * things like panel scaling or other adjustments into account.
Mario Kleiner27641c32010-10-23 04:20:23 +0200421 */
Ville Syrjälä545cdd52013-10-26 17:16:30 +0300422void drm_calc_timestamping_constants(struct drm_crtc *crtc,
423 const struct drm_display_mode *mode)
Mario Kleiner27641c32010-10-23 04:20:23 +0200424{
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300425 int linedur_ns = 0, pixeldur_ns = 0, framedur_ns = 0;
Ville Syrjälä77666b72013-10-27 21:22:58 +0200426 int dotclock = mode->crtc_clock;
Mario Kleiner27641c32010-10-23 04:20:23 +0200427
428 /* Valid dotclock? */
429 if (dotclock > 0) {
Ville Syrjälä0dae35a2013-10-26 17:11:01 +0300430 int frame_size = mode->crtc_htotal * mode->crtc_vtotal;
431
432 /*
433 * Convert scanline length in pixels and video
434 * dot clock to line duration, frame duration
435 * and pixel duration in nanoseconds:
Mario Kleiner27641c32010-10-23 04:20:23 +0200436 */
Ville Syrjälä0dae35a2013-10-26 17:11:01 +0300437 pixeldur_ns = 1000000 / dotclock;
438 linedur_ns = div_u64((u64) mode->crtc_htotal * 1000000, dotclock);
439 framedur_ns = div_u64((u64) frame_size * 1000000, dotclock);
Ville Syrjäläc0ae24c2013-10-28 19:53:25 +0200440
441 /*
442 * Fields of interlaced scanout modes are only half a frame duration.
443 */
444 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
445 framedur_ns /= 2;
Mario Kleiner27641c32010-10-23 04:20:23 +0200446 } else
447 DRM_ERROR("crtc %d: Can't calculate constants, dotclock = 0!\n",
448 crtc->base.id);
449
450 crtc->pixeldur_ns = pixeldur_ns;
451 crtc->linedur_ns = linedur_ns;
452 crtc->framedur_ns = framedur_ns;
453
454 DRM_DEBUG("crtc %d: hwmode: htotal %d, vtotal %d, vdisplay %d\n",
Ville Syrjälä545cdd52013-10-26 17:16:30 +0300455 crtc->base.id, mode->crtc_htotal,
456 mode->crtc_vtotal, mode->crtc_vdisplay);
Mario Kleiner27641c32010-10-23 04:20:23 +0200457 DRM_DEBUG("crtc %d: clock %d kHz framedur %d linedur %d, pixeldur %d\n",
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300458 crtc->base.id, dotclock, framedur_ns,
459 linedur_ns, pixeldur_ns);
Mario Kleiner27641c32010-10-23 04:20:23 +0200460}
461EXPORT_SYMBOL(drm_calc_timestamping_constants);
462
463/**
464 * drm_calc_vbltimestamp_from_scanoutpos - helper routine for kms
465 * drivers. Implements calculation of exact vblank timestamps from
466 * given drm_display_mode timings and current video scanout position
467 * of a crtc. This can be called from within get_vblank_timestamp()
468 * implementation of a kms driver to implement the actual timestamping.
469 *
470 * Should return timestamps conforming to the OML_sync_control OpenML
471 * extension specification. The timestamp corresponds to the end of
472 * the vblank interval, aka start of scanout of topmost-leftmost display
473 * pixel in the following video frame.
474 *
475 * Requires support for optional dev->driver->get_scanout_position()
476 * in kms driver, plus a bit of setup code to provide a drm_display_mode
477 * that corresponds to the true scanout timing.
478 *
479 * The current implementation only handles standard video modes. It
480 * returns as no operation if a doublescan or interlaced video mode is
481 * active. Higher level code is expected to handle this.
482 *
483 * @dev: DRM device.
484 * @crtc: Which crtc's vblank timestamp to retrieve.
485 * @max_error: Desired maximum allowable error in timestamps (nanosecs).
486 * On return contains true maximum error of timestamp.
487 * @vblank_time: Pointer to struct timeval which should receive the timestamp.
488 * @flags: Flags to pass to driver:
489 * 0 = Default.
490 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler.
491 * @refcrtc: drm_crtc* of crtc which defines scanout timing.
Ville Syrjälä7da903e2013-10-26 17:57:31 +0300492 * @mode: mode which defines the scanout timings
Mario Kleiner27641c32010-10-23 04:20:23 +0200493 *
494 * Returns negative value on error, failure or if not supported in current
495 * video mode:
496 *
497 * -EINVAL - Invalid crtc.
498 * -EAGAIN - Temporary unavailable, e.g., called before initial modeset.
499 * -ENOTSUPP - Function not supported in current display mode.
500 * -EIO - Failed, e.g., due to failed scanout position query.
501 *
502 * Returns or'ed positive status flags on success:
503 *
504 * DRM_VBLANKTIME_SCANOUTPOS_METHOD - Signal this method used for timestamping.
505 * DRM_VBLANKTIME_INVBL - Timestamp taken while scanout was in vblank interval.
506 *
507 */
508int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, int crtc,
509 int *max_error,
510 struct timeval *vblank_time,
511 unsigned flags,
Ville Syrjälä7da903e2013-10-26 17:57:31 +0300512 const struct drm_crtc *refcrtc,
513 const struct drm_display_mode *mode)
Mario Kleiner27641c32010-10-23 04:20:23 +0200514{
Imre Deake62f2f52012-10-23 18:53:25 +0000515 ktime_t stime, etime, mono_time_offset;
516 struct timeval tv_etime;
Ville Syrjälä8072bfa2013-10-28 21:22:52 +0200517 int vbl_status;
Mario Kleiner27641c32010-10-23 04:20:23 +0200518 int vpos, hpos, i;
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300519 int framedur_ns, linedur_ns, pixeldur_ns, delta_ns, duration_ns;
Mario Kleiner27641c32010-10-23 04:20:23 +0200520 bool invbl;
521
522 if (crtc < 0 || crtc >= dev->num_crtcs) {
523 DRM_ERROR("Invalid crtc %d\n", crtc);
524 return -EINVAL;
525 }
526
527 /* Scanout position query not supported? Should not happen. */
528 if (!dev->driver->get_scanout_position) {
529 DRM_ERROR("Called from driver w/o get_scanout_position()!?\n");
530 return -EIO;
531 }
532
Mario Kleiner27641c32010-10-23 04:20:23 +0200533 /* Durations of frames, lines, pixels in nanoseconds. */
534 framedur_ns = refcrtc->framedur_ns;
535 linedur_ns = refcrtc->linedur_ns;
536 pixeldur_ns = refcrtc->pixeldur_ns;
537
538 /* If mode timing undefined, just return as no-op:
539 * Happens during initial modesetting of a crtc.
540 */
Ville Syrjälä8072bfa2013-10-28 21:22:52 +0200541 if (framedur_ns == 0) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200542 DRM_DEBUG("crtc %d: Noop due to uninitialized mode.\n", crtc);
543 return -EAGAIN;
544 }
545
Mario Kleiner27641c32010-10-23 04:20:23 +0200546 /* Get current scanout position with system timestamp.
547 * Repeat query up to DRM_TIMESTAMP_MAXRETRIES times
548 * if single query takes longer than max_error nanoseconds.
549 *
550 * This guarantees a tight bound on maximum error if
551 * code gets preempted or delayed for some reason.
552 */
553 for (i = 0; i < DRM_TIMESTAMP_MAXRETRIES; i++) {
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100554 /*
555 * Get vertical and horizontal scanout position vpos, hpos,
556 * and bounding timestamps stime, etime, pre/post query.
557 */
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200558 vbl_status = dev->driver->get_scanout_position(dev, crtc, flags, &vpos,
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100559 &hpos, &stime, &etime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200560
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100561 /*
562 * Get correction for CLOCK_MONOTONIC -> CLOCK_REALTIME if
563 * CLOCK_REALTIME is requested.
564 */
Imre Deakc61eef72012-10-23 18:53:26 +0000565 if (!drm_timestamp_monotonic)
566 mono_time_offset = ktime_get_monotonic_offset();
Mario Kleiner27641c32010-10-23 04:20:23 +0200567
Mario Kleiner27641c32010-10-23 04:20:23 +0200568 /* Return as no-op if scanout query unsupported or failed. */
569 if (!(vbl_status & DRM_SCANOUTPOS_VALID)) {
570 DRM_DEBUG("crtc %d : scanoutpos query failed [%d].\n",
571 crtc, vbl_status);
572 return -EIO;
573 }
574
Mario Kleiner8f6fce02013-10-30 05:13:06 +0100575 /* Compute uncertainty in timestamp of scanout position query. */
Imre Deake62f2f52012-10-23 18:53:25 +0000576 duration_ns = ktime_to_ns(etime) - ktime_to_ns(stime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200577
578 /* Accept result with < max_error nsecs timing uncertainty. */
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300579 if (duration_ns <= *max_error)
Mario Kleiner27641c32010-10-23 04:20:23 +0200580 break;
581 }
582
583 /* Noisy system timing? */
584 if (i == DRM_TIMESTAMP_MAXRETRIES) {
585 DRM_DEBUG("crtc %d: Noisy timestamp %d us > %d us [%d reps].\n",
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300586 crtc, duration_ns/1000, *max_error/1000, i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200587 }
588
589 /* Return upper bound of timestamp precision error. */
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300590 *max_error = duration_ns;
Mario Kleiner27641c32010-10-23 04:20:23 +0200591
592 /* Check if in vblank area:
593 * vpos is >=0 in video scanout area, but negative
594 * within vblank area, counting down the number of lines until
595 * start of scanout.
596 */
597 invbl = vbl_status & DRM_SCANOUTPOS_INVBL;
598
599 /* Convert scanout position into elapsed time at raw_time query
600 * since start of scanout at first display scanline. delta_ns
601 * can be negative if start of scanout hasn't happened yet.
602 */
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300603 delta_ns = vpos * linedur_ns + hpos * pixeldur_ns;
Mario Kleiner27641c32010-10-23 04:20:23 +0200604
Imre Deakc61eef72012-10-23 18:53:26 +0000605 if (!drm_timestamp_monotonic)
606 etime = ktime_sub(etime, mono_time_offset);
607
Imre Deake62f2f52012-10-23 18:53:25 +0000608 /* save this only for debugging purposes */
609 tv_etime = ktime_to_timeval(etime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200610 /* Subtract time delta from raw timestamp to get final
611 * vblank_time timestamp for end of vblank.
612 */
Michel Dänzere91abf82013-06-12 11:58:44 +0200613 if (delta_ns < 0)
614 etime = ktime_add_ns(etime, -delta_ns);
615 else
616 etime = ktime_sub_ns(etime, delta_ns);
Imre Deake62f2f52012-10-23 18:53:25 +0000617 *vblank_time = ktime_to_timeval(etime);
Mario Kleiner27641c32010-10-23 04:20:23 +0200618
Joe Perchesbbb0aef2011-04-17 20:35:52 -0700619 DRM_DEBUG("crtc %d : v %d p(%d,%d)@ %ld.%ld -> %ld.%ld [e %d us, %d rep]\n",
620 crtc, (int)vbl_status, hpos, vpos,
Imre Deake62f2f52012-10-23 18:53:25 +0000621 (long)tv_etime.tv_sec, (long)tv_etime.tv_usec,
Joe Perchesbbb0aef2011-04-17 20:35:52 -0700622 (long)vblank_time->tv_sec, (long)vblank_time->tv_usec,
Ville Syrjälä3c184f62013-10-26 17:38:52 +0300623 duration_ns/1000, i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200624
625 vbl_status = DRM_VBLANKTIME_SCANOUTPOS_METHOD;
626 if (invbl)
627 vbl_status |= DRM_VBLANKTIME_INVBL;
628
629 return vbl_status;
630}
631EXPORT_SYMBOL(drm_calc_vbltimestamp_from_scanoutpos);
632
Imre Deakc61eef72012-10-23 18:53:26 +0000633static struct timeval get_drm_timestamp(void)
634{
635 ktime_t now;
636
637 now = ktime_get();
638 if (!drm_timestamp_monotonic)
639 now = ktime_sub(now, ktime_get_monotonic_offset());
640
641 return ktime_to_timeval(now);
642}
643
Mario Kleiner27641c32010-10-23 04:20:23 +0200644/**
645 * drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent
646 * vblank interval.
647 *
648 * @dev: DRM device
649 * @crtc: which crtc's vblank timestamp to retrieve
650 * @tvblank: Pointer to target struct timeval which should receive the timestamp
651 * @flags: Flags to pass to driver:
652 * 0 = Default.
653 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler.
654 *
655 * Fetches the system timestamp corresponding to the time of the most recent
656 * vblank interval on specified crtc. May call into kms-driver to
657 * compute the timestamp with a high-precision GPU specific method.
658 *
659 * Returns zero if timestamp originates from uncorrected do_gettimeofday()
660 * call, i.e., it isn't very precisely locked to the true vblank.
661 *
662 * Returns non-zero if timestamp is considered to be very precise.
663 */
664u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
665 struct timeval *tvblank, unsigned flags)
666{
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200667 int ret;
Mario Kleiner27641c32010-10-23 04:20:23 +0200668
669 /* Define requested maximum error on timestamps (nanoseconds). */
670 int max_error = (int) drm_timestamp_precision * 1000;
671
672 /* Query driver if possible and precision timestamping enabled. */
673 if (dev->driver->get_vblank_timestamp && (max_error > 0)) {
674 ret = dev->driver->get_vblank_timestamp(dev, crtc, &max_error,
675 tvblank, flags);
676 if (ret > 0)
677 return (u32) ret;
678 }
679
680 /* GPU high precision timestamp query unsupported or failed.
Imre Deakc61eef72012-10-23 18:53:26 +0000681 * Return current monotonic/gettimeofday timestamp as best estimate.
Mario Kleiner27641c32010-10-23 04:20:23 +0200682 */
Imre Deakc61eef72012-10-23 18:53:26 +0000683 *tvblank = get_drm_timestamp();
Mario Kleiner27641c32010-10-23 04:20:23 +0200684
685 return 0;
686}
687EXPORT_SYMBOL(drm_get_last_vbltimestamp);
688
689/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700690 * drm_vblank_count - retrieve "cooked" vblank counter value
691 * @dev: DRM device
692 * @crtc: which counter to retrieve
693 *
694 * Fetches the "cooked" vblank count value that represents the number of
695 * vblank events since the system was booted, including lost events due to
696 * modesetting activity.
697 */
698u32 drm_vblank_count(struct drm_device *dev, int crtc)
699{
Ville Syrjälä5380e922013-10-04 14:53:36 +0300700 return atomic_read(&dev->vblank[crtc].count);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700701}
702EXPORT_SYMBOL(drm_vblank_count);
703
704/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200705 * drm_vblank_count_and_time - retrieve "cooked" vblank counter value
706 * and the system timestamp corresponding to that vblank counter value.
707 *
708 * @dev: DRM device
709 * @crtc: which counter to retrieve
710 * @vblanktime: Pointer to struct timeval to receive the vblank timestamp.
711 *
712 * Fetches the "cooked" vblank count value that represents the number of
713 * vblank events since the system was booted, including lost events due to
714 * modesetting activity. Returns corresponding system timestamp of the time
715 * of the vblank interval that corresponds to the current value vblank counter
716 * value.
717 */
718u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
719 struct timeval *vblanktime)
720{
721 u32 cur_vblank;
722
723 /* Read timestamp from slot of _vblank_time ringbuffer
724 * that corresponds to current vblank count. Retry if
725 * count has incremented during readout. This works like
726 * a seqlock.
727 */
728 do {
Ville Syrjälä5380e922013-10-04 14:53:36 +0300729 cur_vblank = atomic_read(&dev->vblank[crtc].count);
Mario Kleiner27641c32010-10-23 04:20:23 +0200730 *vblanktime = vblanktimestamp(dev, crtc, cur_vblank);
731 smp_rmb();
Ville Syrjälä5380e922013-10-04 14:53:36 +0300732 } while (cur_vblank != atomic_read(&dev->vblank[crtc].count));
Mario Kleiner27641c32010-10-23 04:20:23 +0200733
734 return cur_vblank;
735}
736EXPORT_SYMBOL(drm_vblank_count_and_time);
737
Rob Clarkc6eefa12012-10-16 22:48:40 +0000738static void send_vblank_event(struct drm_device *dev,
739 struct drm_pending_vblank_event *e,
740 unsigned long seq, struct timeval *now)
741{
742 WARN_ON_SMP(!spin_is_locked(&dev->event_lock));
743 e->event.sequence = seq;
744 e->event.tv_sec = now->tv_sec;
745 e->event.tv_usec = now->tv_usec;
746
747 list_add_tail(&e->base.link,
748 &e->base.file_priv->event_list);
749 wake_up_interruptible(&e->base.file_priv->event_wait);
750 trace_drm_vblank_event_delivered(e->base.pid, e->pipe,
751 e->event.sequence);
752}
753
754/**
755 * drm_send_vblank_event - helper to send vblank event after pageflip
756 * @dev: DRM device
757 * @crtc: CRTC in question
758 * @e: the event to send
759 *
760 * Updates sequence # and timestamp on event, and sends it to userspace.
761 * Caller must hold event lock.
762 */
763void drm_send_vblank_event(struct drm_device *dev, int crtc,
764 struct drm_pending_vblank_event *e)
765{
766 struct timeval now;
767 unsigned int seq;
768 if (crtc >= 0) {
769 seq = drm_vblank_count_and_time(dev, crtc, &now);
770 } else {
771 seq = 0;
Imre Deakc61eef72012-10-23 18:53:26 +0000772
773 now = get_drm_timestamp();
Rob Clarkc6eefa12012-10-16 22:48:40 +0000774 }
Rob Clark21a245d2012-12-10 10:49:46 -0600775 e->pipe = crtc;
Rob Clarkc6eefa12012-10-16 22:48:40 +0000776 send_vblank_event(dev, e, seq, &now);
777}
778EXPORT_SYMBOL(drm_send_vblank_event);
779
Mario Kleiner27641c32010-10-23 04:20:23 +0200780/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700781 * drm_update_vblank_count - update the master vblank counter
782 * @dev: DRM device
783 * @crtc: counter to update
784 *
785 * Call back into the driver to update the appropriate vblank counter
786 * (specified by @crtc). Deal with wraparound, if it occurred, and
787 * update the last read value so we can deal with wraparound on the next
788 * call if necessary.
789 *
790 * Only necessary when going from off->on, to account for frames we
791 * didn't get an interrupt for.
792 *
793 * Note: caller must hold dev->vbl_lock since this reads & writes
794 * device vblank fields.
795 */
796static void drm_update_vblank_count(struct drm_device *dev, int crtc)
797{
Mario Kleiner27641c32010-10-23 04:20:23 +0200798 u32 cur_vblank, diff, tslot, rc;
799 struct timeval t_vblank;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700800
801 /*
802 * Interrupts were disabled prior to this call, so deal with counter
803 * wrap if needed.
804 * NOTE! It's possible we lost a full dev->max_vblank_count events
805 * here if the register is small or we had vblank interrupts off for
806 * a long time.
Mario Kleiner27641c32010-10-23 04:20:23 +0200807 *
808 * We repeat the hardware vblank counter & timestamp query until
809 * we get consistent results. This to prevent races between gpu
810 * updating its hardware counter while we are retrieving the
811 * corresponding vblank timestamp.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700812 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200813 do {
814 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
815 rc = drm_get_last_vbltimestamp(dev, crtc, &t_vblank, 0);
816 } while (cur_vblank != dev->driver->get_vblank_counter(dev, crtc));
817
818 /* Deal with counter wrap */
Ville Syrjälä5380e922013-10-04 14:53:36 +0300819 diff = cur_vblank - dev->vblank[crtc].last;
820 if (cur_vblank < dev->vblank[crtc].last) {
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700821 diff += dev->max_vblank_count;
822
823 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
Ville Syrjälä5380e922013-10-04 14:53:36 +0300824 crtc, dev->vblank[crtc].last, cur_vblank, diff);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700825 }
826
827 DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
828 crtc, diff);
829
Mario Kleiner27641c32010-10-23 04:20:23 +0200830 /* Reinitialize corresponding vblank timestamp if high-precision query
831 * available. Skip this step if query unsupported or failed. Will
832 * reinitialize delayed at next vblank interrupt in that case.
833 */
834 if (rc) {
Ville Syrjälä5380e922013-10-04 14:53:36 +0300835 tslot = atomic_read(&dev->vblank[crtc].count) + diff;
Mario Kleiner27641c32010-10-23 04:20:23 +0200836 vblanktimestamp(dev, crtc, tslot) = t_vblank;
Mario Kleiner27641c32010-10-23 04:20:23 +0200837 }
838
Mario Kleinerbc215122011-02-21 05:42:01 +0100839 smp_mb__before_atomic_inc();
Ville Syrjälä5380e922013-10-04 14:53:36 +0300840 atomic_add(diff, &dev->vblank[crtc].count);
Mario Kleinerbc215122011-02-21 05:42:01 +0100841 smp_mb__after_atomic_inc();
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700842}
843
844/**
845 * drm_vblank_get - get a reference count on vblank events
846 * @dev: DRM device
847 * @crtc: which CRTC to own
848 *
849 * Acquire a reference count on vblank events to avoid having them disabled
850 * while in use.
851 *
852 * RETURNS
853 * Zero on success, nonzero on failure.
854 */
855int drm_vblank_get(struct drm_device *dev, int crtc)
856{
Mario Kleiner27641c32010-10-23 04:20:23 +0200857 unsigned long irqflags, irqflags2;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700858 int ret = 0;
859
860 spin_lock_irqsave(&dev->vbl_lock, irqflags);
861 /* Going from 0->1 means we have to enable interrupts again */
Ville Syrjälä5380e922013-10-04 14:53:36 +0300862 if (atomic_add_return(1, &dev->vblank[crtc].refcount) == 1) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200863 spin_lock_irqsave(&dev->vblank_time_lock, irqflags2);
Ville Syrjälä5380e922013-10-04 14:53:36 +0300864 if (!dev->vblank[crtc].enabled) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200865 /* Enable vblank irqs under vblank_time_lock protection.
866 * All vblank count & timestamp updates are held off
867 * until we are done reinitializing master counter and
868 * timestamps. Filtercode in drm_handle_vblank() will
869 * prevent double-accounting of same vblank interval.
870 */
Li Peng778c9022009-11-09 12:51:22 +0800871 ret = dev->driver->enable_vblank(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +0200872 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n",
873 crtc, ret);
Li Peng778c9022009-11-09 12:51:22 +0800874 if (ret)
Ville Syrjälä5380e922013-10-04 14:53:36 +0300875 atomic_dec(&dev->vblank[crtc].refcount);
Li Peng778c9022009-11-09 12:51:22 +0800876 else {
Ville Syrjälä5380e922013-10-04 14:53:36 +0300877 dev->vblank[crtc].enabled = true;
Li Peng778c9022009-11-09 12:51:22 +0800878 drm_update_vblank_count(dev, crtc);
879 }
880 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200881 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags2);
Li Peng778c9022009-11-09 12:51:22 +0800882 } else {
Ville Syrjälä5380e922013-10-04 14:53:36 +0300883 if (!dev->vblank[crtc].enabled) {
884 atomic_dec(&dev->vblank[crtc].refcount);
Li Peng778c9022009-11-09 12:51:22 +0800885 ret = -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700886 }
887 }
888 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
889
890 return ret;
891}
892EXPORT_SYMBOL(drm_vblank_get);
893
894/**
895 * drm_vblank_put - give up ownership of vblank events
896 * @dev: DRM device
897 * @crtc: which counter to give up
898 *
899 * Release ownership of a given vblank counter, turning off interrupts
Mario Kleiner27641c32010-10-23 04:20:23 +0200900 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700901 */
902void drm_vblank_put(struct drm_device *dev, int crtc)
903{
Ville Syrjälä5380e922013-10-04 14:53:36 +0300904 BUG_ON(atomic_read(&dev->vblank[crtc].refcount) == 0);
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000905
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700906 /* Last user schedules interrupt disable */
Ville Syrjälä5380e922013-10-04 14:53:36 +0300907 if (atomic_dec_and_test(&dev->vblank[crtc].refcount) &&
Mario Kleiner27641c32010-10-23 04:20:23 +0200908 (drm_vblank_offdelay > 0))
909 mod_timer(&dev->vblank_disable_timer,
Daniel Vetterbfd83032013-12-11 11:34:41 +0100910 jiffies + ((drm_vblank_offdelay * HZ)/1000));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700911}
912EXPORT_SYMBOL(drm_vblank_put);
913
Rob Clarkc6eefa12012-10-16 22:48:40 +0000914/**
915 * drm_vblank_off - disable vblank events on a CRTC
916 * @dev: DRM device
917 * @crtc: CRTC in question
918 *
919 * Caller must hold event lock.
920 */
Li Peng778c9022009-11-09 12:51:22 +0800921void drm_vblank_off(struct drm_device *dev, int crtc)
922{
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000923 struct drm_pending_vblank_event *e, *t;
924 struct timeval now;
Li Peng778c9022009-11-09 12:51:22 +0800925 unsigned long irqflags;
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000926 unsigned int seq;
Li Peng778c9022009-11-09 12:51:22 +0800927
928 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Mario Kleiner27641c32010-10-23 04:20:23 +0200929 vblank_disable_and_save(dev, crtc);
Daniel Vetter57ed0f72013-12-11 11:34:43 +0100930 wake_up(&dev->vblank[crtc].queue);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000931
932 /* Send any queued vblank events, lest the natives grow disquiet */
933 seq = drm_vblank_count_and_time(dev, crtc, &now);
Imre Deake7783ba2012-11-02 13:30:50 +0200934
935 spin_lock(&dev->event_lock);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000936 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
937 if (e->pipe != crtc)
938 continue;
939 DRM_DEBUG("Sending premature vblank event on disable: \
940 wanted %d, current %d\n",
941 e->event.sequence, seq);
Rob Clarkc6eefa12012-10-16 22:48:40 +0000942 list_del(&e->base.link);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000943 drm_vblank_put(dev, e->pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +0000944 send_vblank_event(dev, e, seq, &now);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000945 }
Imre Deake7783ba2012-11-02 13:30:50 +0200946 spin_unlock(&dev->event_lock);
Christopher James Halse Rogers498548e2011-04-27 16:10:57 +1000947
Li Peng778c9022009-11-09 12:51:22 +0800948 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
949}
950EXPORT_SYMBOL(drm_vblank_off);
951
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700952/**
Dave Airlief453ba02008-11-07 14:05:41 -0800953 * drm_vblank_pre_modeset - account for vblanks across mode sets
954 * @dev: DRM device
955 * @crtc: CRTC in question
Dave Airlief453ba02008-11-07 14:05:41 -0800956 *
957 * Account for vblank events across mode setting events, which will likely
958 * reset the hardware frame counter.
959 */
960void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
961{
Huacai Chenb7ea85a42013-05-21 06:23:43 +0000962 /* vblank is not initialized (IRQ not installed ?), or has been freed */
Jerome Glissee77cef92010-01-07 15:39:13 +0100963 if (!dev->num_crtcs)
964 return;
Dave Airlief453ba02008-11-07 14:05:41 -0800965 /*
966 * To avoid all the problems that might happen if interrupts
967 * were enabled/disabled around or between these calls, we just
968 * have the kernel take a reference on the CRTC (just once though
969 * to avoid corrupting the count if multiple, mismatch calls occur),
970 * so that interrupts remain enabled in the interim.
971 */
Ville Syrjälä5380e922013-10-04 14:53:36 +0300972 if (!dev->vblank[crtc].inmodeset) {
973 dev->vblank[crtc].inmodeset = 0x1;
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000974 if (drm_vblank_get(dev, crtc) == 0)
Ville Syrjälä5380e922013-10-04 14:53:36 +0300975 dev->vblank[crtc].inmodeset |= 0x2;
Dave Airlief453ba02008-11-07 14:05:41 -0800976 }
977}
978EXPORT_SYMBOL(drm_vblank_pre_modeset);
979
980void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
981{
982 unsigned long irqflags;
983
Huacai Chenb7ea85a42013-05-21 06:23:43 +0000984 /* vblank is not initialized (IRQ not installed ?), or has been freed */
985 if (!dev->num_crtcs)
986 return;
987
Ville Syrjälä5380e922013-10-04 14:53:36 +0300988 if (dev->vblank[crtc].inmodeset) {
Dave Airlief453ba02008-11-07 14:05:41 -0800989 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Ville Syrjäläba0bf122013-10-04 14:53:33 +0300990 dev->vblank_disable_allowed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800991 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000992
Ville Syrjälä5380e922013-10-04 14:53:36 +0300993 if (dev->vblank[crtc].inmodeset & 0x2)
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000994 drm_vblank_put(dev, crtc);
995
Ville Syrjälä5380e922013-10-04 14:53:36 +0300996 dev->vblank[crtc].inmodeset = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800997 }
998}
999EXPORT_SYMBOL(drm_vblank_post_modeset);
1000
1001/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001002 * drm_modeset_ctl - handle vblank event counter changes across mode switch
1003 * @DRM_IOCTL_ARGS: standard ioctl arguments
1004 *
1005 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
1006 * ioctls around modesetting so that any lost vblank events are accounted for.
1007 *
1008 * Generally the counter will reset across mode sets. If interrupts are
1009 * enabled around this call, we don't have to do anything since the counter
1010 * will have already been incremented.
1011 */
1012int drm_modeset_ctl(struct drm_device *dev, void *data,
1013 struct drm_file *file_priv)
1014{
1015 struct drm_modeset_ctl *modeset = data;
Dave Airlie19227562011-02-24 08:35:06 +10001016 unsigned int crtc;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001017
1018 /* If drm_vblank_init() hasn't been called yet, just no-op */
1019 if (!dev->num_crtcs)
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001020 return 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001021
Laurent Pinchart29935552012-05-30 00:58:09 +02001022 /* KMS drivers handle this internally */
1023 if (drm_core_check_feature(dev, DRIVER_MODESET))
1024 return 0;
1025
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001026 crtc = modeset->crtc;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001027 if (crtc >= dev->num_crtcs)
1028 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001029
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001030 switch (modeset->cmd) {
1031 case _DRM_PRE_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001032 drm_vblank_pre_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001033 break;
1034 case _DRM_POST_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001035 drm_vblank_post_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001036 break;
1037 default:
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001038 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001039 }
1040
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001041 return 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001042}
1043
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001044static int drm_queue_vblank_event(struct drm_device *dev, int pipe,
1045 union drm_wait_vblank *vblwait,
1046 struct drm_file *file_priv)
1047{
1048 struct drm_pending_vblank_event *e;
1049 struct timeval now;
1050 unsigned long flags;
1051 unsigned int seq;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001052 int ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001053
1054 e = kzalloc(sizeof *e, GFP_KERNEL);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001055 if (e == NULL) {
1056 ret = -ENOMEM;
1057 goto err_put;
1058 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001059
1060 e->pipe = pipe;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001061 e->base.pid = current->pid;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001062 e->event.base.type = DRM_EVENT_VBLANK;
1063 e->event.base.length = sizeof e->event;
1064 e->event.user_data = vblwait->request.signal;
1065 e->base.event = &e->event.base;
1066 e->base.file_priv = file_priv;
1067 e->base.destroy = (void (*) (struct drm_pending_event *)) kfree;
1068
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001069 spin_lock_irqsave(&dev->event_lock, flags);
1070
1071 if (file_priv->event_space < sizeof e->event) {
Chris Wilsonea5d5522010-12-01 19:41:31 +00001072 ret = -EBUSY;
1073 goto err_unlock;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001074 }
1075
1076 file_priv->event_space -= sizeof e->event;
Mario Kleiner27641c32010-10-23 04:20:23 +02001077 seq = drm_vblank_count_and_time(dev, pipe, &now);
1078
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001079 if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) &&
1080 (seq - vblwait->request.sequence) <= (1 << 23)) {
1081 vblwait->request.sequence = seq + 1;
Jesse Barnes4a921642009-11-10 08:21:25 +00001082 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001083 }
1084
1085 DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n",
1086 vblwait->request.sequence, seq, pipe);
1087
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001088 trace_drm_vblank_event_queued(current->pid, pipe,
1089 vblwait->request.sequence);
1090
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001091 e->event.sequence = vblwait->request.sequence;
1092 if ((seq - vblwait->request.sequence) <= (1 << 23)) {
Dan Carpenter6f331622010-12-09 08:35:40 +03001093 drm_vblank_put(dev, pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001094 send_vblank_event(dev, e, seq, &now);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001095 vblwait->reply.sequence = seq;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001096 } else {
Ilija Hadzica6778e92011-10-31 13:11:57 -04001097 /* drm_handle_vblank_events will call drm_vblank_put */
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001098 list_add_tail(&e->base.link, &dev->vblank_event_list);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001099 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001100 }
1101
1102 spin_unlock_irqrestore(&dev->event_lock, flags);
1103
1104 return 0;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001105
1106err_unlock:
1107 spin_unlock_irqrestore(&dev->event_lock, flags);
1108 kfree(e);
1109err_put:
Dan Carpenter6f331622010-12-09 08:35:40 +03001110 drm_vblank_put(dev, pipe);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001111 return ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001112}
1113
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001114/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 * Wait for VBLANK.
1116 *
1117 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +10001118 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 * \param cmd command.
1120 * \param data user argument, pointing to a drm_wait_vblank structure.
1121 * \return zero on success or a negative number on failure.
1122 *
Eric Anholt30b23632009-01-27 21:19:41 -08001123 * This function enables the vblank interrupt on the pipe requested, then
1124 * sleeps waiting for the requested sequence number to occur, and drops
1125 * the vblank interrupt refcount afterwards. (vblank irq disable follows that
1126 * after a timeout with no further vblank waits scheduled).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001128int drm_wait_vblank(struct drm_device *dev, void *data,
1129 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
Eric Anholtc153f452007-09-03 12:06:45 +10001131 union drm_wait_vblank *vblwait = data;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001132 int ret;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001133 unsigned int flags, seq, crtc, high_crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Daniel Vetter49849792013-08-28 15:02:37 +02001135 if (!dev->irq_enabled)
1136 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Eric Anholt30b23632009-01-27 21:19:41 -08001138 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
1139 return -EINVAL;
1140
Eric Anholtc153f452007-09-03 12:06:45 +10001141 if (vblwait->request.type &
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001142 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1143 _DRM_VBLANK_HIGH_CRTC_MASK)) {
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001144 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001145 vblwait->request.type,
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001146 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1147 _DRM_VBLANK_HIGH_CRTC_MASK));
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001148 return -EINVAL;
1149 }
1150
Eric Anholtc153f452007-09-03 12:06:45 +10001151 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Ilija Hadzic19b01b52011-03-18 16:58:04 -05001152 high_crtc = (vblwait->request.type & _DRM_VBLANK_HIGH_CRTC_MASK);
1153 if (high_crtc)
1154 crtc = high_crtc >> _DRM_VBLANK_HIGH_CRTC_SHIFT;
1155 else
1156 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001157 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001158 return -EINVAL;
1159
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001160 ret = drm_vblank_get(dev, crtc);
1161 if (ret) {
Paul Rolland8d3457e2009-08-09 12:24:01 +10001162 DRM_DEBUG("failed to acquire vblank counter, %d\n", ret);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001163 return ret;
1164 }
1165 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001166
Eric Anholtc153f452007-09-03 12:06:45 +10001167 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +10001169 vblwait->request.sequence += seq;
1170 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 case _DRM_VBLANK_ABSOLUTE:
1172 break;
1173 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001174 ret = -EINVAL;
1175 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177
Ilija Hadzica6778e92011-10-31 13:11:57 -04001178 if (flags & _DRM_VBLANK_EVENT) {
1179 /* must hold on to the vblank ref until the event fires
1180 * drm_vblank_put will be called asynchronously
1181 */
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001182 return drm_queue_vblank_event(dev, crtc, vblwait, file_priv);
Ilija Hadzica6778e92011-10-31 13:11:57 -04001183 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001184
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001185 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +10001186 (seq - vblwait->request.sequence) <= (1<<23)) {
1187 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001188 }
1189
Eric Anholt30b23632009-01-27 21:19:41 -08001190 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
1191 vblwait->request.sequence, crtc);
Ville Syrjälä5380e922013-10-04 14:53:36 +03001192 dev->vblank[crtc].last_wait = vblwait->request.sequence;
Daniel Vetterbfd83032013-12-11 11:34:41 +01001193 DRM_WAIT_ON(ret, dev->vblank[crtc].queue, 3 * HZ,
Eric Anholt30b23632009-01-27 21:19:41 -08001194 (((drm_vblank_count(dev, crtc) -
1195 vblwait->request.sequence) <= (1 << 23)) ||
1196 !dev->irq_enabled));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Eric Anholt30b23632009-01-27 21:19:41 -08001198 if (ret != -EINTR) {
1199 struct timeval now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Mario Kleiner27641c32010-10-23 04:20:23 +02001201 vblwait->reply.sequence = drm_vblank_count_and_time(dev, crtc, &now);
Eric Anholt30b23632009-01-27 21:19:41 -08001202 vblwait->reply.tval_sec = now.tv_sec;
1203 vblwait->reply.tval_usec = now.tv_usec;
Mario Kleiner27641c32010-10-23 04:20:23 +02001204
Eric Anholt30b23632009-01-27 21:19:41 -08001205 DRM_DEBUG("returning %d to client\n",
1206 vblwait->reply.sequence);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 } else {
Eric Anholt30b23632009-01-27 21:19:41 -08001208 DRM_DEBUG("vblank wait interrupted by signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
1210
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001211done:
1212 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return ret;
1214}
1215
Sachin Kamatea7f7ab2012-08-01 17:15:31 +05301216static void drm_handle_vblank_events(struct drm_device *dev, int crtc)
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001217{
1218 struct drm_pending_vblank_event *e, *t;
1219 struct timeval now;
1220 unsigned long flags;
1221 unsigned int seq;
1222
Mario Kleiner27641c32010-10-23 04:20:23 +02001223 seq = drm_vblank_count_and_time(dev, crtc, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001224
1225 spin_lock_irqsave(&dev->event_lock, flags);
1226
1227 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
1228 if (e->pipe != crtc)
1229 continue;
1230 if ((seq - e->event.sequence) > (1<<23))
1231 continue;
1232
1233 DRM_DEBUG("vblank event on %d, current %d\n",
1234 e->event.sequence, seq);
1235
Rob Clarkc6eefa12012-10-16 22:48:40 +00001236 list_del(&e->base.link);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001237 drm_vblank_put(dev, e->pipe);
Rob Clarkc6eefa12012-10-16 22:48:40 +00001238 send_vblank_event(dev, e, seq, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001239 }
1240
1241 spin_unlock_irqrestore(&dev->event_lock, flags);
Jesse Barnesac2874b2010-07-01 16:47:31 -07001242
1243 trace_drm_vblank_event(crtc, seq);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001244}
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001247 * drm_handle_vblank - handle a vblank event
1248 * @dev: DRM device
1249 * @crtc: where this event occurred
1250 *
1251 * Drivers should call this routine in their vblank interrupt handlers to
1252 * update the vblank counter and send any signals that may be pending.
1253 */
Chris Wilson78c6e172011-01-31 10:48:04 +00001254bool drm_handle_vblank(struct drm_device *dev, int crtc)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001255{
Mario Kleiner27641c32010-10-23 04:20:23 +02001256 u32 vblcount;
1257 s64 diff_ns;
1258 struct timeval tvblank;
1259 unsigned long irqflags;
1260
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001261 if (!dev->num_crtcs)
Chris Wilson78c6e172011-01-31 10:48:04 +00001262 return false;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001263
Mario Kleiner27641c32010-10-23 04:20:23 +02001264 /* Need timestamp lock to prevent concurrent execution with
1265 * vblank enable/disable, as this would cause inconsistent
1266 * or corrupted timestamps and vblank counts.
1267 */
1268 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
1269
1270 /* Vblank irq handling disabled. Nothing to do. */
Ville Syrjälä5380e922013-10-04 14:53:36 +03001271 if (!dev->vblank[crtc].enabled) {
Mario Kleiner27641c32010-10-23 04:20:23 +02001272 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001273 return false;
Mario Kleiner27641c32010-10-23 04:20:23 +02001274 }
1275
1276 /* Fetch corresponding timestamp for this vblank interval from
1277 * driver and store it in proper slot of timestamp ringbuffer.
1278 */
1279
1280 /* Get current timestamp and count. */
Ville Syrjälä5380e922013-10-04 14:53:36 +03001281 vblcount = atomic_read(&dev->vblank[crtc].count);
Mario Kleiner27641c32010-10-23 04:20:23 +02001282 drm_get_last_vbltimestamp(dev, crtc, &tvblank, DRM_CALLED_FROM_VBLIRQ);
1283
1284 /* Compute time difference to timestamp of last vblank */
1285 diff_ns = timeval_to_ns(&tvblank) -
1286 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
1287
1288 /* Update vblank timestamp and count if at least
1289 * DRM_REDUNDANT_VBLIRQ_THRESH_NS nanoseconds
1290 * difference between last stored timestamp and current
1291 * timestamp. A smaller difference means basically
1292 * identical timestamps. Happens if this vblank has
1293 * been already processed and this is a redundant call,
1294 * e.g., due to spurious vblank interrupts. We need to
1295 * ignore those for accounting.
1296 */
Mario Kleinerc4cc3832011-02-21 05:42:00 +01001297 if (abs64(diff_ns) > DRM_REDUNDANT_VBLIRQ_THRESH_NS) {
Mario Kleiner27641c32010-10-23 04:20:23 +02001298 /* Store new timestamp in ringbuffer. */
1299 vblanktimestamp(dev, crtc, vblcount + 1) = tvblank;
Mario Kleiner27641c32010-10-23 04:20:23 +02001300
1301 /* Increment cooked vblank count. This also atomically commits
1302 * the timestamp computed above.
1303 */
Mario Kleinerbc215122011-02-21 05:42:01 +01001304 smp_mb__before_atomic_inc();
Ville Syrjälä5380e922013-10-04 14:53:36 +03001305 atomic_inc(&dev->vblank[crtc].count);
Mario Kleinerbc215122011-02-21 05:42:01 +01001306 smp_mb__after_atomic_inc();
Mario Kleiner27641c32010-10-23 04:20:23 +02001307 } else {
1308 DRM_DEBUG("crtc %d: Redundant vblirq ignored. diff_ns = %d\n",
1309 crtc, (int) diff_ns);
1310 }
1311
Daniel Vetter57ed0f72013-12-11 11:34:43 +01001312 wake_up(&dev->vblank[crtc].queue);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001313 drm_handle_vblank_events(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +02001314
1315 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001316 return true;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001317}
1318EXPORT_SYMBOL(drm_handle_vblank);