blob: cb49685bde01597d56fe268929dced7902b3ae2e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * IRQ support
4 *
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
7 */
8
9/*
10 * Created: Fri Mar 19 14:30:16 1999 by faith@valinux.com
11 *
12 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files (the "Software"),
18 * to deal in the Software without restriction, including without limitation
19 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * and/or sell copies of the Software, and to permit persons to whom the
21 * Software is furnished to do so, subject to the following conditions:
22 *
23 * The above copyright notice and this permission notice (including the next
24 * paragraph) shall be included in all copies or substantial portions of the
25 * Software.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
30 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
31 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
32 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33 * OTHER DEALINGS IN THE SOFTWARE.
34 */
35
36#include "drmP.h"
Jesse Barnesac2874b2010-07-01 16:47:31 -070037#include "drm_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <linux/interrupt.h> /* For task queue support */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Dave Airlie28d52042009-09-21 14:33:58 +100042#include <linux/vgaarb.h>
Mario Kleiner27641c32010-10-23 04:20:23 +020043
44/* Access macro for slots in vblank timestamp ringbuffer. */
45#define vblanktimestamp(dev, crtc, count) ( \
46 (dev)->_vblank_time[(crtc) * DRM_VBLANKTIME_RBSIZE + \
47 ((count) % DRM_VBLANKTIME_RBSIZE)])
48
49/* Retry timestamp calculation up to 3 times to satisfy
50 * drm_timestamp_precision before giving up.
51 */
52#define DRM_TIMESTAMP_MAXRETRIES 3
53
54/* Threshold in nanoseconds for detection of redundant
55 * vblank irq in drm_handle_vblank(). 1 msec should be ok.
56 */
57#define DRM_REDUNDANT_VBLIRQ_THRESH_NS 1000000
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/**
60 * Get interrupt from bus id.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100061 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100063 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * \param cmd command.
65 * \param arg user argument, pointing to a drm_irq_busid structure.
66 * \return zero on success or a negative number on failure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100067 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * Finds the PCI device with the specified bus id and gets its IRQ number.
69 * This IOCTL is deprecated, and will now return EINVAL for any busid not equal
70 * to that of the device that this DRM instance attached to.
71 */
Eric Anholtc153f452007-09-03 12:06:45 +100072int drm_irq_by_busid(struct drm_device *dev, void *data,
73 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Eric Anholtc153f452007-09-03 12:06:45 +100075 struct drm_irq_busid *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Dave Airlie8410ea32010-12-15 03:16:38 +100077 if (!dev->driver->bus->irq_by_busid)
Jordan Crousedcdb1672010-05-27 13:40:25 -060078 return -EINVAL;
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
81 return -EINVAL;
82
Dave Airlie8410ea32010-12-15 03:16:38 +100083 return dev->driver->bus->irq_by_busid(dev, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Mario Kleiner27641c32010-10-23 04:20:23 +020086/*
87 * Clear vblank timestamp buffer for a crtc.
88 */
89static void clear_vblank_timestamps(struct drm_device *dev, int crtc)
90{
91 memset(&dev->_vblank_time[crtc * DRM_VBLANKTIME_RBSIZE], 0,
92 DRM_VBLANKTIME_RBSIZE * sizeof(struct timeval));
93}
94
95/*
96 * Disable vblank irq's on crtc, make sure that last vblank count
97 * of hardware and corresponding consistent software vblank counter
98 * are preserved, even if there are any spurious vblank irq's after
99 * disable.
100 */
101static void vblank_disable_and_save(struct drm_device *dev, int crtc)
102{
103 unsigned long irqflags;
104 u32 vblcount;
105 s64 diff_ns;
106 int vblrc;
107 struct timeval tvblank;
108
109 /* Prevent vblank irq processing while disabling vblank irqs,
110 * so no updates of timestamps or count can happen after we've
111 * disabled. Needed to prevent races in case of delayed irq's.
112 * Disable preemption, so vblank_time_lock is held as short as
113 * possible, even under a kernel with PREEMPT_RT patches.
114 */
115 preempt_disable();
116 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
117
118 dev->driver->disable_vblank(dev, crtc);
119 dev->vblank_enabled[crtc] = 0;
120
121 /* No further vblank irq's will be processed after
122 * this point. Get current hardware vblank count and
123 * vblank timestamp, repeat until they are consistent.
124 *
125 * FIXME: There is still a race condition here and in
126 * drm_update_vblank_count() which can cause off-by-one
127 * reinitialization of software vblank counter. If gpu
128 * vblank counter doesn't increment exactly at the leading
129 * edge of a vblank interval, then we can lose 1 count if
130 * we happen to execute between start of vblank and the
131 * delayed gpu counter increment.
132 */
133 do {
134 dev->last_vblank[crtc] = dev->driver->get_vblank_counter(dev, crtc);
135 vblrc = drm_get_last_vbltimestamp(dev, crtc, &tvblank, 0);
136 } while (dev->last_vblank[crtc] != dev->driver->get_vblank_counter(dev, crtc));
137
138 /* Compute time difference to stored timestamp of last vblank
139 * as updated by last invocation of drm_handle_vblank() in vblank irq.
140 */
141 vblcount = atomic_read(&dev->_vblank_count[crtc]);
142 diff_ns = timeval_to_ns(&tvblank) -
143 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
144
145 /* If there is at least 1 msec difference between the last stored
146 * timestamp and tvblank, then we are currently executing our
147 * disable inside a new vblank interval, the tvblank timestamp
148 * corresponds to this new vblank interval and the irq handler
149 * for this vblank didn't run yet and won't run due to our disable.
150 * Therefore we need to do the job of drm_handle_vblank() and
151 * increment the vblank counter by one to account for this vblank.
152 *
153 * Skip this step if there isn't any high precision timestamp
154 * available. In that case we can't account for this and just
155 * hope for the best.
156 */
157 if ((vblrc > 0) && (abs(diff_ns) > 1000000))
158 atomic_inc(&dev->_vblank_count[crtc]);
159
160 /* Invalidate all timestamps while vblank irq's are off. */
161 clear_vblank_timestamps(dev, crtc);
162
163 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
164 preempt_enable();
165}
166
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700167static void vblank_disable_fn(unsigned long arg)
168{
169 struct drm_device *dev = (struct drm_device *)arg;
170 unsigned long irqflags;
171 int i;
172
173 if (!dev->vblank_disable_allowed)
174 return;
175
176 for (i = 0; i < dev->num_crtcs; i++) {
177 spin_lock_irqsave(&dev->vbl_lock, irqflags);
178 if (atomic_read(&dev->vblank_refcount[i]) == 0 &&
179 dev->vblank_enabled[i]) {
180 DRM_DEBUG("disabling vblank on crtc %d\n", i);
Mario Kleiner27641c32010-10-23 04:20:23 +0200181 vblank_disable_and_save(dev, i);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700182 }
183 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
184 }
185}
186
Keith Packard52440212008-11-18 09:30:25 -0800187void drm_vblank_cleanup(struct drm_device *dev)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700188{
189 /* Bail if the driver didn't call drm_vblank_init() */
190 if (dev->num_crtcs == 0)
191 return;
192
193 del_timer(&dev->vblank_disable_timer);
194
195 vblank_disable_fn((unsigned long)dev);
196
Eric Anholt9a298b22009-03-24 12:23:04 -0700197 kfree(dev->vbl_queue);
198 kfree(dev->_vblank_count);
199 kfree(dev->vblank_refcount);
200 kfree(dev->vblank_enabled);
201 kfree(dev->last_vblank);
202 kfree(dev->last_vblank_wait);
203 kfree(dev->vblank_inmodeset);
Mario Kleiner27641c32010-10-23 04:20:23 +0200204 kfree(dev->_vblank_time);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700205
206 dev->num_crtcs = 0;
207}
Jerome Glissee77cef92010-01-07 15:39:13 +0100208EXPORT_SYMBOL(drm_vblank_cleanup);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700209
210int drm_vblank_init(struct drm_device *dev, int num_crtcs)
211{
212 int i, ret = -ENOMEM;
213
214 setup_timer(&dev->vblank_disable_timer, vblank_disable_fn,
215 (unsigned long)dev);
216 spin_lock_init(&dev->vbl_lock);
Mario Kleiner27641c32010-10-23 04:20:23 +0200217 spin_lock_init(&dev->vblank_time_lock);
218
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700219 dev->num_crtcs = num_crtcs;
220
Eric Anholt9a298b22009-03-24 12:23:04 -0700221 dev->vbl_queue = kmalloc(sizeof(wait_queue_head_t) * num_crtcs,
222 GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700223 if (!dev->vbl_queue)
224 goto err;
225
Eric Anholt9a298b22009-03-24 12:23:04 -0700226 dev->_vblank_count = kmalloc(sizeof(atomic_t) * num_crtcs, GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700227 if (!dev->_vblank_count)
228 goto err;
229
Eric Anholt9a298b22009-03-24 12:23:04 -0700230 dev->vblank_refcount = kmalloc(sizeof(atomic_t) * num_crtcs,
231 GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700232 if (!dev->vblank_refcount)
233 goto err;
234
Eric Anholt9a298b22009-03-24 12:23:04 -0700235 dev->vblank_enabled = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700236 if (!dev->vblank_enabled)
237 goto err;
238
Eric Anholt9a298b22009-03-24 12:23:04 -0700239 dev->last_vblank = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700240 if (!dev->last_vblank)
241 goto err;
242
Eric Anholt9a298b22009-03-24 12:23:04 -0700243 dev->last_vblank_wait = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL);
Eric Anholtfede5c92008-12-19 17:23:38 -0800244 if (!dev->last_vblank_wait)
245 goto err;
246
Eric Anholt9a298b22009-03-24 12:23:04 -0700247 dev->vblank_inmodeset = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700248 if (!dev->vblank_inmodeset)
249 goto err;
250
Mario Kleiner27641c32010-10-23 04:20:23 +0200251 dev->_vblank_time = kcalloc(num_crtcs * DRM_VBLANKTIME_RBSIZE,
252 sizeof(struct timeval), GFP_KERNEL);
253 if (!dev->_vblank_time)
254 goto err;
255
256 DRM_INFO("Supports vblank timestamp caching Rev 1 (10.10.2010).\n");
257
258 /* Driver specific high-precision vblank timestamping supported? */
259 if (dev->driver->get_vblank_timestamp)
260 DRM_INFO("Driver supports precise vblank timestamp query.\n");
261 else
262 DRM_INFO("No driver support for vblank timestamp query.\n");
263
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700264 /* Zero per-crtc vblank stuff */
265 for (i = 0; i < num_crtcs; i++) {
266 init_waitqueue_head(&dev->vbl_queue[i]);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700267 atomic_set(&dev->_vblank_count[i], 0);
268 atomic_set(&dev->vblank_refcount[i], 0);
269 }
270
271 dev->vblank_disable_allowed = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700272 return 0;
273
274err:
275 drm_vblank_cleanup(dev);
276 return ret;
277}
278EXPORT_SYMBOL(drm_vblank_init);
279
Dave Airlie28d52042009-09-21 14:33:58 +1000280static void drm_irq_vgaarb_nokms(void *cookie, bool state)
281{
282 struct drm_device *dev = cookie;
283
284 if (dev->driver->vgaarb_irq) {
285 dev->driver->vgaarb_irq(dev, state);
286 return;
287 }
288
289 if (!dev->irq_enabled)
290 return;
291
292 if (state)
293 dev->driver->irq_uninstall(dev);
294 else {
295 dev->driver->irq_preinstall(dev);
296 dev->driver->irq_postinstall(dev);
297 }
298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/**
301 * Install IRQ handler.
302 *
303 * \param dev DRM device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 *
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700305 * Initializes the IRQ related data. Installs the handler, calling the driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions
307 * before and after the installation.
308 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700309int drm_irq_install(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700311 int ret = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000312 unsigned long sh_flags = 0;
Dave Airlieb8da7de2009-06-02 16:50:35 +1000313 char *irqname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
316 return -EINVAL;
317
Jordan Crousedcdb1672010-05-27 13:40:25 -0600318 if (drm_dev_to_irq(dev) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return -EINVAL;
320
Dave Airlie30e2fb12006-02-02 19:37:46 +1100321 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* Driver must have been initialized */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000324 if (!dev->dev_private) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100325 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return -EINVAL;
327 }
328
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000329 if (dev->irq_enabled) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100330 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return -EBUSY;
332 }
333 dev->irq_enabled = 1;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100334 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Jordan Crousedcdb1672010-05-27 13:40:25 -0600336 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000338 /* Before installing handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 dev->driver->irq_preinstall(dev);
340
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000341 /* Install handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
Thomas Gleixner935f6e32006-07-01 19:29:34 -0700343 sh_flags = IRQF_SHARED;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000344
Dave Airlieb8da7de2009-06-02 16:50:35 +1000345 if (dev->devname)
346 irqname = dev->devname;
347 else
348 irqname = dev->driver->name;
349
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700350 ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler,
Dave Airlieb8da7de2009-06-02 16:50:35 +1000351 sh_flags, irqname, dev);
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700352
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000353 if (ret < 0) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100354 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100356 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return ret;
358 }
359
Dave Airlie28d52042009-09-21 14:33:58 +1000360 if (!drm_core_check_feature(dev, DRIVER_MODESET))
361 vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL);
362
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000363 /* After installing handler */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700364 ret = dev->driver->irq_postinstall(dev);
365 if (ret < 0) {
366 mutex_lock(&dev->struct_mutex);
367 dev->irq_enabled = 0;
368 mutex_unlock(&dev->struct_mutex);
369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700371 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700373EXPORT_SYMBOL(drm_irq_install);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375/**
376 * Uninstall the IRQ handler.
377 *
378 * \param dev DRM device.
379 *
380 * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq.
381 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200382int drm_irq_uninstall(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800384 unsigned long irqflags;
385 int irq_enabled, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
388 return -EINVAL;
389
Dave Airlie30e2fb12006-02-02 19:37:46 +1100390 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 irq_enabled = dev->irq_enabled;
392 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100393 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800395 /*
396 * Wake up any waiters so they don't hang.
397 */
398 spin_lock_irqsave(&dev->vbl_lock, irqflags);
399 for (i = 0; i < dev->num_crtcs; i++) {
400 DRM_WAKEUP(&dev->vbl_queue[i]);
401 dev->vblank_enabled[i] = 0;
Jesse Barnes14d200c2009-02-06 13:04:49 -0800402 dev->last_vblank[i] = dev->driver->get_vblank_counter(dev, i);
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800403 }
404 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
405
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000406 if (!irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return -EINVAL;
408
Jordan Crousedcdb1672010-05-27 13:40:25 -0600409 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Dave Airlie28d52042009-09-21 14:33:58 +1000411 if (!drm_core_check_feature(dev, DRIVER_MODESET))
412 vga_client_register(dev->pdev, NULL, NULL, NULL);
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 dev->driver->irq_uninstall(dev);
415
Jordan Crousedcdb1672010-05-27 13:40:25 -0600416 free_irq(drm_dev_to_irq(dev), dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 return 0;
419}
420EXPORT_SYMBOL(drm_irq_uninstall);
421
422/**
423 * IRQ control ioctl.
424 *
425 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000426 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * \param cmd command.
428 * \param arg user argument, pointing to a drm_control structure.
429 * \return zero on success or a negative number on failure.
430 *
431 * Calls irq_install() or irq_uninstall() according to \p arg.
432 */
Eric Anholtc153f452007-09-03 12:06:45 +1000433int drm_control(struct drm_device *dev, void *data,
434 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Eric Anholtc153f452007-09-03 12:06:45 +1000436 struct drm_control *ctl = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000437
Mario Kleiner27641c32010-10-23 04:20:23 +0200438 /* if we haven't irq we fallback for compatibility reasons -
439 * this used to be a separate function in drm_dma.h
440 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Eric Anholtc153f452007-09-03 12:06:45 +1000443 switch (ctl->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 case DRM_INST_HANDLER:
445 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
446 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800447 if (drm_core_check_feature(dev, DRIVER_MODESET))
448 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
Jordan Crousedcdb1672010-05-27 13:40:25 -0600450 ctl->irq != drm_dev_to_irq(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000452 return drm_irq_install(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 case DRM_UNINST_HANDLER:
454 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
455 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800456 if (drm_core_check_feature(dev, DRIVER_MODESET))
457 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000458 return drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 default:
460 return -EINVAL;
461 }
462}
463
464/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200465 * drm_calc_timestamping_constants - Calculate and
466 * store various constants which are later needed by
467 * vblank and swap-completion timestamping, e.g, by
468 * drm_calc_vbltimestamp_from_scanoutpos().
469 * They are derived from crtc's true scanout timing,
470 * so they take things like panel scaling or other
471 * adjustments into account.
472 *
473 * @crtc drm_crtc whose timestamp constants should be updated.
474 *
475 */
476void drm_calc_timestamping_constants(struct drm_crtc *crtc)
477{
478 s64 linedur_ns = 0, pixeldur_ns = 0, framedur_ns = 0;
479 u64 dotclock;
480
481 /* Dot clock in Hz: */
482 dotclock = (u64) crtc->hwmode.clock * 1000;
483
484 /* Valid dotclock? */
485 if (dotclock > 0) {
486 /* Convert scanline length in pixels and video dot clock to
487 * line duration, frame duration and pixel duration in
488 * nanoseconds:
489 */
490 pixeldur_ns = (s64) div64_u64(1000000000, dotclock);
491 linedur_ns = (s64) div64_u64(((u64) crtc->hwmode.crtc_htotal *
492 1000000000), dotclock);
493 framedur_ns = (s64) crtc->hwmode.crtc_vtotal * linedur_ns;
494 } else
495 DRM_ERROR("crtc %d: Can't calculate constants, dotclock = 0!\n",
496 crtc->base.id);
497
498 crtc->pixeldur_ns = pixeldur_ns;
499 crtc->linedur_ns = linedur_ns;
500 crtc->framedur_ns = framedur_ns;
501
502 DRM_DEBUG("crtc %d: hwmode: htotal %d, vtotal %d, vdisplay %d\n",
503 crtc->base.id, crtc->hwmode.crtc_htotal,
504 crtc->hwmode.crtc_vtotal, crtc->hwmode.crtc_vdisplay);
505 DRM_DEBUG("crtc %d: clock %d kHz framedur %d linedur %d, pixeldur %d\n",
506 crtc->base.id, (int) dotclock/1000, (int) framedur_ns,
507 (int) linedur_ns, (int) pixeldur_ns);
508}
509EXPORT_SYMBOL(drm_calc_timestamping_constants);
510
511/**
512 * drm_calc_vbltimestamp_from_scanoutpos - helper routine for kms
513 * drivers. Implements calculation of exact vblank timestamps from
514 * given drm_display_mode timings and current video scanout position
515 * of a crtc. This can be called from within get_vblank_timestamp()
516 * implementation of a kms driver to implement the actual timestamping.
517 *
518 * Should return timestamps conforming to the OML_sync_control OpenML
519 * extension specification. The timestamp corresponds to the end of
520 * the vblank interval, aka start of scanout of topmost-leftmost display
521 * pixel in the following video frame.
522 *
523 * Requires support for optional dev->driver->get_scanout_position()
524 * in kms driver, plus a bit of setup code to provide a drm_display_mode
525 * that corresponds to the true scanout timing.
526 *
527 * The current implementation only handles standard video modes. It
528 * returns as no operation if a doublescan or interlaced video mode is
529 * active. Higher level code is expected to handle this.
530 *
531 * @dev: DRM device.
532 * @crtc: Which crtc's vblank timestamp to retrieve.
533 * @max_error: Desired maximum allowable error in timestamps (nanosecs).
534 * On return contains true maximum error of timestamp.
535 * @vblank_time: Pointer to struct timeval which should receive the timestamp.
536 * @flags: Flags to pass to driver:
537 * 0 = Default.
538 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler.
539 * @refcrtc: drm_crtc* of crtc which defines scanout timing.
540 *
541 * Returns negative value on error, failure or if not supported in current
542 * video mode:
543 *
544 * -EINVAL - Invalid crtc.
545 * -EAGAIN - Temporary unavailable, e.g., called before initial modeset.
546 * -ENOTSUPP - Function not supported in current display mode.
547 * -EIO - Failed, e.g., due to failed scanout position query.
548 *
549 * Returns or'ed positive status flags on success:
550 *
551 * DRM_VBLANKTIME_SCANOUTPOS_METHOD - Signal this method used for timestamping.
552 * DRM_VBLANKTIME_INVBL - Timestamp taken while scanout was in vblank interval.
553 *
554 */
555int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, int crtc,
556 int *max_error,
557 struct timeval *vblank_time,
558 unsigned flags,
559 struct drm_crtc *refcrtc)
560{
561 struct timeval stime, raw_time;
562 struct drm_display_mode *mode;
563 int vbl_status, vtotal, vdisplay;
564 int vpos, hpos, i;
565 s64 framedur_ns, linedur_ns, pixeldur_ns, delta_ns, duration_ns;
566 bool invbl;
567
568 if (crtc < 0 || crtc >= dev->num_crtcs) {
569 DRM_ERROR("Invalid crtc %d\n", crtc);
570 return -EINVAL;
571 }
572
573 /* Scanout position query not supported? Should not happen. */
574 if (!dev->driver->get_scanout_position) {
575 DRM_ERROR("Called from driver w/o get_scanout_position()!?\n");
576 return -EIO;
577 }
578
579 mode = &refcrtc->hwmode;
580 vtotal = mode->crtc_vtotal;
581 vdisplay = mode->crtc_vdisplay;
582
583 /* Durations of frames, lines, pixels in nanoseconds. */
584 framedur_ns = refcrtc->framedur_ns;
585 linedur_ns = refcrtc->linedur_ns;
586 pixeldur_ns = refcrtc->pixeldur_ns;
587
588 /* If mode timing undefined, just return as no-op:
589 * Happens during initial modesetting of a crtc.
590 */
591 if (vtotal <= 0 || vdisplay <= 0 || framedur_ns == 0) {
592 DRM_DEBUG("crtc %d: Noop due to uninitialized mode.\n", crtc);
593 return -EAGAIN;
594 }
595
596 /* Don't know yet how to handle interlaced or
597 * double scan modes. Just no-op for now.
598 */
599 if (mode->flags & (DRM_MODE_FLAG_INTERLACE | DRM_MODE_FLAG_DBLSCAN)) {
600 DRM_DEBUG("crtc %d: Noop due to unsupported mode.\n", crtc);
601 return -ENOTSUPP;
602 }
603
604 /* Get current scanout position with system timestamp.
605 * Repeat query up to DRM_TIMESTAMP_MAXRETRIES times
606 * if single query takes longer than max_error nanoseconds.
607 *
608 * This guarantees a tight bound on maximum error if
609 * code gets preempted or delayed for some reason.
610 */
611 for (i = 0; i < DRM_TIMESTAMP_MAXRETRIES; i++) {
612 /* Disable preemption to make it very likely to
613 * succeed in the first iteration even on PREEMPT_RT kernel.
614 */
615 preempt_disable();
616
617 /* Get system timestamp before query. */
618 do_gettimeofday(&stime);
619
620 /* Get vertical and horizontal scanout pos. vpos, hpos. */
621 vbl_status = dev->driver->get_scanout_position(dev, crtc, &vpos, &hpos);
622
623 /* Get system timestamp after query. */
624 do_gettimeofday(&raw_time);
625
626 preempt_enable();
627
628 /* Return as no-op if scanout query unsupported or failed. */
629 if (!(vbl_status & DRM_SCANOUTPOS_VALID)) {
630 DRM_DEBUG("crtc %d : scanoutpos query failed [%d].\n",
631 crtc, vbl_status);
632 return -EIO;
633 }
634
635 duration_ns = timeval_to_ns(&raw_time) - timeval_to_ns(&stime);
636
637 /* Accept result with < max_error nsecs timing uncertainty. */
638 if (duration_ns <= (s64) *max_error)
639 break;
640 }
641
642 /* Noisy system timing? */
643 if (i == DRM_TIMESTAMP_MAXRETRIES) {
644 DRM_DEBUG("crtc %d: Noisy timestamp %d us > %d us [%d reps].\n",
645 crtc, (int) duration_ns/1000, *max_error/1000, i);
646 }
647
648 /* Return upper bound of timestamp precision error. */
649 *max_error = (int) duration_ns;
650
651 /* Check if in vblank area:
652 * vpos is >=0 in video scanout area, but negative
653 * within vblank area, counting down the number of lines until
654 * start of scanout.
655 */
656 invbl = vbl_status & DRM_SCANOUTPOS_INVBL;
657
658 /* Convert scanout position into elapsed time at raw_time query
659 * since start of scanout at first display scanline. delta_ns
660 * can be negative if start of scanout hasn't happened yet.
661 */
662 delta_ns = (s64) vpos * linedur_ns + (s64) hpos * pixeldur_ns;
663
664 /* Is vpos outside nominal vblank area, but less than
665 * 1/100 of a frame height away from start of vblank?
666 * If so, assume this isn't a massively delayed vblank
667 * interrupt, but a vblank interrupt that fired a few
668 * microseconds before true start of vblank. Compensate
669 * by adding a full frame duration to the final timestamp.
670 * Happens, e.g., on ATI R500, R600.
671 *
672 * We only do this if DRM_CALLED_FROM_VBLIRQ.
673 */
674 if ((flags & DRM_CALLED_FROM_VBLIRQ) && !invbl &&
675 ((vdisplay - vpos) < vtotal / 100)) {
676 delta_ns = delta_ns - framedur_ns;
677
678 /* Signal this correction as "applied". */
679 vbl_status |= 0x8;
680 }
681
682 /* Subtract time delta from raw timestamp to get final
683 * vblank_time timestamp for end of vblank.
684 */
685 *vblank_time = ns_to_timeval(timeval_to_ns(&raw_time) - delta_ns);
686
687 DRM_DEBUG("crtc %d : v %d p(%d,%d)@ %d.%d -> %d.%d [e %d us, %d rep]\n",
688 crtc, (int) vbl_status, hpos, vpos, raw_time.tv_sec,
689 raw_time.tv_usec, vblank_time->tv_sec, vblank_time->tv_usec,
690 (int) duration_ns/1000, i);
691
692 vbl_status = DRM_VBLANKTIME_SCANOUTPOS_METHOD;
693 if (invbl)
694 vbl_status |= DRM_VBLANKTIME_INVBL;
695
696 return vbl_status;
697}
698EXPORT_SYMBOL(drm_calc_vbltimestamp_from_scanoutpos);
699
700/**
701 * drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent
702 * vblank interval.
703 *
704 * @dev: DRM device
705 * @crtc: which crtc's vblank timestamp to retrieve
706 * @tvblank: Pointer to target struct timeval which should receive the timestamp
707 * @flags: Flags to pass to driver:
708 * 0 = Default.
709 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler.
710 *
711 * Fetches the system timestamp corresponding to the time of the most recent
712 * vblank interval on specified crtc. May call into kms-driver to
713 * compute the timestamp with a high-precision GPU specific method.
714 *
715 * Returns zero if timestamp originates from uncorrected do_gettimeofday()
716 * call, i.e., it isn't very precisely locked to the true vblank.
717 *
718 * Returns non-zero if timestamp is considered to be very precise.
719 */
720u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
721 struct timeval *tvblank, unsigned flags)
722{
723 int ret = 0;
724
725 /* Define requested maximum error on timestamps (nanoseconds). */
726 int max_error = (int) drm_timestamp_precision * 1000;
727
728 /* Query driver if possible and precision timestamping enabled. */
729 if (dev->driver->get_vblank_timestamp && (max_error > 0)) {
730 ret = dev->driver->get_vblank_timestamp(dev, crtc, &max_error,
731 tvblank, flags);
732 if (ret > 0)
733 return (u32) ret;
734 }
735
736 /* GPU high precision timestamp query unsupported or failed.
737 * Return gettimeofday timestamp as best estimate.
738 */
739 do_gettimeofday(tvblank);
740
741 return 0;
742}
743EXPORT_SYMBOL(drm_get_last_vbltimestamp);
744
745/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700746 * drm_vblank_count - retrieve "cooked" vblank counter value
747 * @dev: DRM device
748 * @crtc: which counter to retrieve
749 *
750 * Fetches the "cooked" vblank count value that represents the number of
751 * vblank events since the system was booted, including lost events due to
752 * modesetting activity.
753 */
754u32 drm_vblank_count(struct drm_device *dev, int crtc)
755{
756 return atomic_read(&dev->_vblank_count[crtc]);
757}
758EXPORT_SYMBOL(drm_vblank_count);
759
760/**
Mario Kleiner27641c32010-10-23 04:20:23 +0200761 * drm_vblank_count_and_time - retrieve "cooked" vblank counter value
762 * and the system timestamp corresponding to that vblank counter value.
763 *
764 * @dev: DRM device
765 * @crtc: which counter to retrieve
766 * @vblanktime: Pointer to struct timeval to receive the vblank timestamp.
767 *
768 * Fetches the "cooked" vblank count value that represents the number of
769 * vblank events since the system was booted, including lost events due to
770 * modesetting activity. Returns corresponding system timestamp of the time
771 * of the vblank interval that corresponds to the current value vblank counter
772 * value.
773 */
774u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
775 struct timeval *vblanktime)
776{
777 u32 cur_vblank;
778
779 /* Read timestamp from slot of _vblank_time ringbuffer
780 * that corresponds to current vblank count. Retry if
781 * count has incremented during readout. This works like
782 * a seqlock.
783 */
784 do {
785 cur_vblank = atomic_read(&dev->_vblank_count[crtc]);
786 *vblanktime = vblanktimestamp(dev, crtc, cur_vblank);
787 smp_rmb();
788 } while (cur_vblank != atomic_read(&dev->_vblank_count[crtc]));
789
790 return cur_vblank;
791}
792EXPORT_SYMBOL(drm_vblank_count_and_time);
793
794/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700795 * drm_update_vblank_count - update the master vblank counter
796 * @dev: DRM device
797 * @crtc: counter to update
798 *
799 * Call back into the driver to update the appropriate vblank counter
800 * (specified by @crtc). Deal with wraparound, if it occurred, and
801 * update the last read value so we can deal with wraparound on the next
802 * call if necessary.
803 *
804 * Only necessary when going from off->on, to account for frames we
805 * didn't get an interrupt for.
806 *
807 * Note: caller must hold dev->vbl_lock since this reads & writes
808 * device vblank fields.
809 */
810static void drm_update_vblank_count(struct drm_device *dev, int crtc)
811{
Mario Kleiner27641c32010-10-23 04:20:23 +0200812 u32 cur_vblank, diff, tslot, rc;
813 struct timeval t_vblank;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700814
815 /*
816 * Interrupts were disabled prior to this call, so deal with counter
817 * wrap if needed.
818 * NOTE! It's possible we lost a full dev->max_vblank_count events
819 * here if the register is small or we had vblank interrupts off for
820 * a long time.
Mario Kleiner27641c32010-10-23 04:20:23 +0200821 *
822 * We repeat the hardware vblank counter & timestamp query until
823 * we get consistent results. This to prevent races between gpu
824 * updating its hardware counter while we are retrieving the
825 * corresponding vblank timestamp.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700826 */
Mario Kleiner27641c32010-10-23 04:20:23 +0200827 do {
828 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
829 rc = drm_get_last_vbltimestamp(dev, crtc, &t_vblank, 0);
830 } while (cur_vblank != dev->driver->get_vblank_counter(dev, crtc));
831
832 /* Deal with counter wrap */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700833 diff = cur_vblank - dev->last_vblank[crtc];
834 if (cur_vblank < dev->last_vblank[crtc]) {
835 diff += dev->max_vblank_count;
836
837 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
838 crtc, dev->last_vblank[crtc], cur_vblank, diff);
839 }
840
841 DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
842 crtc, diff);
843
Mario Kleiner27641c32010-10-23 04:20:23 +0200844 /* Reinitialize corresponding vblank timestamp if high-precision query
845 * available. Skip this step if query unsupported or failed. Will
846 * reinitialize delayed at next vblank interrupt in that case.
847 */
848 if (rc) {
849 tslot = atomic_read(&dev->_vblank_count[crtc]) + diff;
850 vblanktimestamp(dev, crtc, tslot) = t_vblank;
851 smp_wmb();
852 }
853
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700854 atomic_add(diff, &dev->_vblank_count[crtc]);
855}
856
857/**
858 * drm_vblank_get - get a reference count on vblank events
859 * @dev: DRM device
860 * @crtc: which CRTC to own
861 *
862 * Acquire a reference count on vblank events to avoid having them disabled
863 * while in use.
864 *
865 * RETURNS
866 * Zero on success, nonzero on failure.
867 */
868int drm_vblank_get(struct drm_device *dev, int crtc)
869{
Mario Kleiner27641c32010-10-23 04:20:23 +0200870 unsigned long irqflags, irqflags2;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700871 int ret = 0;
872
873 spin_lock_irqsave(&dev->vbl_lock, irqflags);
874 /* Going from 0->1 means we have to enable interrupts again */
Li Peng778c9022009-11-09 12:51:22 +0800875 if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200876 /* Disable preemption while holding vblank_time_lock. Do
877 * it explicitely to guard against PREEMPT_RT kernel.
878 */
879 preempt_disable();
880 spin_lock_irqsave(&dev->vblank_time_lock, irqflags2);
Li Peng778c9022009-11-09 12:51:22 +0800881 if (!dev->vblank_enabled[crtc]) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200882 /* Enable vblank irqs under vblank_time_lock protection.
883 * All vblank count & timestamp updates are held off
884 * until we are done reinitializing master counter and
885 * timestamps. Filtercode in drm_handle_vblank() will
886 * prevent double-accounting of same vblank interval.
887 */
Li Peng778c9022009-11-09 12:51:22 +0800888 ret = dev->driver->enable_vblank(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +0200889 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n",
890 crtc, ret);
Li Peng778c9022009-11-09 12:51:22 +0800891 if (ret)
892 atomic_dec(&dev->vblank_refcount[crtc]);
893 else {
894 dev->vblank_enabled[crtc] = 1;
895 drm_update_vblank_count(dev, crtc);
896 }
897 }
Mario Kleiner27641c32010-10-23 04:20:23 +0200898 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags2);
899 preempt_enable();
Li Peng778c9022009-11-09 12:51:22 +0800900 } else {
901 if (!dev->vblank_enabled[crtc]) {
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700902 atomic_dec(&dev->vblank_refcount[crtc]);
Li Peng778c9022009-11-09 12:51:22 +0800903 ret = -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700904 }
905 }
906 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
907
908 return ret;
909}
910EXPORT_SYMBOL(drm_vblank_get);
911
912/**
913 * drm_vblank_put - give up ownership of vblank events
914 * @dev: DRM device
915 * @crtc: which counter to give up
916 *
917 * Release ownership of a given vblank counter, turning off interrupts
Mario Kleiner27641c32010-10-23 04:20:23 +0200918 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700919 */
920void drm_vblank_put(struct drm_device *dev, int crtc)
921{
Mario Kleiner27641c32010-10-23 04:20:23 +0200922 BUG_ON(atomic_read(&dev->vblank_refcount[crtc]) == 0);
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000923
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700924 /* Last user schedules interrupt disable */
Mario Kleiner27641c32010-10-23 04:20:23 +0200925 if (atomic_dec_and_test(&dev->vblank_refcount[crtc]) &&
926 (drm_vblank_offdelay > 0))
927 mod_timer(&dev->vblank_disable_timer,
928 jiffies + ((drm_vblank_offdelay * DRM_HZ)/1000));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700929}
930EXPORT_SYMBOL(drm_vblank_put);
931
Li Peng778c9022009-11-09 12:51:22 +0800932void drm_vblank_off(struct drm_device *dev, int crtc)
933{
934 unsigned long irqflags;
935
936 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Mario Kleiner27641c32010-10-23 04:20:23 +0200937 vblank_disable_and_save(dev, crtc);
Li Peng778c9022009-11-09 12:51:22 +0800938 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Li Peng778c9022009-11-09 12:51:22 +0800939 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
940}
941EXPORT_SYMBOL(drm_vblank_off);
942
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700943/**
Dave Airlief453ba02008-11-07 14:05:41 -0800944 * drm_vblank_pre_modeset - account for vblanks across mode sets
945 * @dev: DRM device
946 * @crtc: CRTC in question
947 * @post: post or pre mode set?
948 *
949 * Account for vblank events across mode setting events, which will likely
950 * reset the hardware frame counter.
951 */
952void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
953{
Jerome Glissee77cef92010-01-07 15:39:13 +0100954 /* vblank is not initialized (IRQ not installed ?) */
955 if (!dev->num_crtcs)
956 return;
Dave Airlief453ba02008-11-07 14:05:41 -0800957 /*
958 * To avoid all the problems that might happen if interrupts
959 * were enabled/disabled around or between these calls, we just
960 * have the kernel take a reference on the CRTC (just once though
961 * to avoid corrupting the count if multiple, mismatch calls occur),
962 * so that interrupts remain enabled in the interim.
963 */
964 if (!dev->vblank_inmodeset[crtc]) {
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000965 dev->vblank_inmodeset[crtc] = 0x1;
966 if (drm_vblank_get(dev, crtc) == 0)
967 dev->vblank_inmodeset[crtc] |= 0x2;
Dave Airlief453ba02008-11-07 14:05:41 -0800968 }
969}
970EXPORT_SYMBOL(drm_vblank_pre_modeset);
971
972void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
973{
974 unsigned long irqflags;
975
976 if (dev->vblank_inmodeset[crtc]) {
977 spin_lock_irqsave(&dev->vbl_lock, irqflags);
978 dev->vblank_disable_allowed = 1;
Dave Airlief453ba02008-11-07 14:05:41 -0800979 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000980
981 if (dev->vblank_inmodeset[crtc] & 0x2)
982 drm_vblank_put(dev, crtc);
983
984 dev->vblank_inmodeset[crtc] = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800985 }
986}
987EXPORT_SYMBOL(drm_vblank_post_modeset);
988
989/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700990 * drm_modeset_ctl - handle vblank event counter changes across mode switch
991 * @DRM_IOCTL_ARGS: standard ioctl arguments
992 *
993 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
994 * ioctls around modesetting so that any lost vblank events are accounted for.
995 *
996 * Generally the counter will reset across mode sets. If interrupts are
997 * enabled around this call, we don't have to do anything since the counter
998 * will have already been incremented.
999 */
1000int drm_modeset_ctl(struct drm_device *dev, void *data,
1001 struct drm_file *file_priv)
1002{
1003 struct drm_modeset_ctl *modeset = data;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001004 int crtc, ret = 0;
1005
1006 /* If drm_vblank_init() hasn't been called yet, just no-op */
1007 if (!dev->num_crtcs)
1008 goto out;
1009
1010 crtc = modeset->crtc;
1011 if (crtc >= dev->num_crtcs) {
1012 ret = -EINVAL;
1013 goto out;
1014 }
1015
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001016 switch (modeset->cmd) {
1017 case _DRM_PRE_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001018 drm_vblank_pre_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001019 break;
1020 case _DRM_POST_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -08001021 drm_vblank_post_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001022 break;
1023 default:
1024 ret = -EINVAL;
1025 break;
1026 }
1027
1028out:
1029 return ret;
1030}
1031
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001032static int drm_queue_vblank_event(struct drm_device *dev, int pipe,
1033 union drm_wait_vblank *vblwait,
1034 struct drm_file *file_priv)
1035{
1036 struct drm_pending_vblank_event *e;
1037 struct timeval now;
1038 unsigned long flags;
1039 unsigned int seq;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001040 int ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001041
1042 e = kzalloc(sizeof *e, GFP_KERNEL);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001043 if (e == NULL) {
1044 ret = -ENOMEM;
1045 goto err_put;
1046 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001047
1048 e->pipe = pipe;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001049 e->base.pid = current->pid;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001050 e->event.base.type = DRM_EVENT_VBLANK;
1051 e->event.base.length = sizeof e->event;
1052 e->event.user_data = vblwait->request.signal;
1053 e->base.event = &e->event.base;
1054 e->base.file_priv = file_priv;
1055 e->base.destroy = (void (*) (struct drm_pending_event *)) kfree;
1056
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001057 spin_lock_irqsave(&dev->event_lock, flags);
1058
1059 if (file_priv->event_space < sizeof e->event) {
Chris Wilsonea5d5522010-12-01 19:41:31 +00001060 ret = -EBUSY;
1061 goto err_unlock;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001062 }
1063
1064 file_priv->event_space -= sizeof e->event;
Mario Kleiner27641c32010-10-23 04:20:23 +02001065 seq = drm_vblank_count_and_time(dev, pipe, &now);
1066
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001067 if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) &&
1068 (seq - vblwait->request.sequence) <= (1 << 23)) {
1069 vblwait->request.sequence = seq + 1;
Jesse Barnes4a921642009-11-10 08:21:25 +00001070 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001071 }
1072
1073 DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n",
1074 vblwait->request.sequence, seq, pipe);
1075
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001076 trace_drm_vblank_event_queued(current->pid, pipe,
1077 vblwait->request.sequence);
1078
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001079 e->event.sequence = vblwait->request.sequence;
1080 if ((seq - vblwait->request.sequence) <= (1 << 23)) {
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001081 e->event.sequence = seq;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001082 e->event.tv_sec = now.tv_sec;
1083 e->event.tv_usec = now.tv_usec;
Dan Carpenter6f331622010-12-09 08:35:40 +03001084 drm_vblank_put(dev, pipe);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001085 list_add_tail(&e->base.link, &e->base.file_priv->event_list);
1086 wake_up_interruptible(&e->base.file_priv->event_wait);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001087 vblwait->reply.sequence = seq;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001088 trace_drm_vblank_event_delivered(current->pid, pipe,
1089 vblwait->request.sequence);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001090 } else {
1091 list_add_tail(&e->base.link, &dev->vblank_event_list);
Mario Kleiner000fa7c2010-12-10 16:00:19 +01001092 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001093 }
1094
1095 spin_unlock_irqrestore(&dev->event_lock, flags);
1096
1097 return 0;
Chris Wilsonea5d5522010-12-01 19:41:31 +00001098
1099err_unlock:
1100 spin_unlock_irqrestore(&dev->event_lock, flags);
1101 kfree(e);
1102err_put:
Dan Carpenter6f331622010-12-09 08:35:40 +03001103 drm_vblank_put(dev, pipe);
Chris Wilsonea5d5522010-12-01 19:41:31 +00001104 return ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001105}
1106
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001107/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 * Wait for VBLANK.
1109 *
1110 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +10001111 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 * \param cmd command.
1113 * \param data user argument, pointing to a drm_wait_vblank structure.
1114 * \return zero on success or a negative number on failure.
1115 *
Eric Anholt30b23632009-01-27 21:19:41 -08001116 * This function enables the vblank interrupt on the pipe requested, then
1117 * sleeps waiting for the requested sequence number to occur, and drops
1118 * the vblank interrupt refcount afterwards. (vblank irq disable follows that
1119 * after a timeout with no further vblank waits scheduled).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001121int drm_wait_vblank(struct drm_device *dev, void *data,
1122 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Eric Anholtc153f452007-09-03 12:06:45 +10001124 union drm_wait_vblank *vblwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 int ret = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001126 unsigned int flags, seq, crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Jordan Crousedcdb1672010-05-27 13:40:25 -06001128 if ((!drm_dev_to_irq(dev)) || (!dev->irq_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return -EINVAL;
1130
Eric Anholt30b23632009-01-27 21:19:41 -08001131 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
1132 return -EINVAL;
1133
Eric Anholtc153f452007-09-03 12:06:45 +10001134 if (vblwait->request.type &
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001135 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) {
1136 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +10001137 vblwait->request.type,
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001138 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK));
1139 return -EINVAL;
1140 }
1141
Eric Anholtc153f452007-09-03 12:06:45 +10001142 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001143 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001144
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001145 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001146 return -EINVAL;
1147
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001148 ret = drm_vblank_get(dev, crtc);
1149 if (ret) {
Paul Rolland8d3457e2009-08-09 12:24:01 +10001150 DRM_DEBUG("failed to acquire vblank counter, %d\n", ret);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001151 return ret;
1152 }
1153 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +10001154
Eric Anholtc153f452007-09-03 12:06:45 +10001155 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +10001157 vblwait->request.sequence += seq;
1158 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 case _DRM_VBLANK_ABSOLUTE:
1160 break;
1161 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001162 ret = -EINVAL;
1163 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001166 if (flags & _DRM_VBLANK_EVENT)
1167 return drm_queue_vblank_event(dev, crtc, vblwait, file_priv);
1168
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001169 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +10001170 (seq - vblwait->request.sequence) <= (1<<23)) {
1171 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +10001172 }
1173
Eric Anholt30b23632009-01-27 21:19:41 -08001174 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
1175 vblwait->request.sequence, crtc);
1176 dev->last_vblank_wait[crtc] = vblwait->request.sequence;
1177 DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ,
1178 (((drm_vblank_count(dev, crtc) -
1179 vblwait->request.sequence) <= (1 << 23)) ||
1180 !dev->irq_enabled));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Eric Anholt30b23632009-01-27 21:19:41 -08001182 if (ret != -EINTR) {
1183 struct timeval now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Mario Kleiner27641c32010-10-23 04:20:23 +02001185 vblwait->reply.sequence = drm_vblank_count_and_time(dev, crtc, &now);
Eric Anholt30b23632009-01-27 21:19:41 -08001186 vblwait->reply.tval_sec = now.tv_sec;
1187 vblwait->reply.tval_usec = now.tv_usec;
Mario Kleiner27641c32010-10-23 04:20:23 +02001188
Eric Anholt30b23632009-01-27 21:19:41 -08001189 DRM_DEBUG("returning %d to client\n",
1190 vblwait->reply.sequence);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 } else {
Eric Anholt30b23632009-01-27 21:19:41 -08001192 DRM_DEBUG("vblank wait interrupted by signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
1194
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001195done:
1196 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return ret;
1198}
1199
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001200void drm_handle_vblank_events(struct drm_device *dev, int crtc)
1201{
1202 struct drm_pending_vblank_event *e, *t;
1203 struct timeval now;
1204 unsigned long flags;
1205 unsigned int seq;
1206
Mario Kleiner27641c32010-10-23 04:20:23 +02001207 seq = drm_vblank_count_and_time(dev, crtc, &now);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001208
1209 spin_lock_irqsave(&dev->event_lock, flags);
1210
1211 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
1212 if (e->pipe != crtc)
1213 continue;
1214 if ((seq - e->event.sequence) > (1<<23))
1215 continue;
1216
1217 DRM_DEBUG("vblank event on %d, current %d\n",
1218 e->event.sequence, seq);
1219
1220 e->event.sequence = seq;
1221 e->event.tv_sec = now.tv_sec;
1222 e->event.tv_usec = now.tv_usec;
1223 drm_vblank_put(dev, e->pipe);
1224 list_move_tail(&e->base.link, &e->base.file_priv->event_list);
1225 wake_up_interruptible(&e->base.file_priv->event_wait);
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -07001226 trace_drm_vblank_event_delivered(e->base.pid, e->pipe,
1227 e->event.sequence);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001228 }
1229
1230 spin_unlock_irqrestore(&dev->event_lock, flags);
Jesse Barnesac2874b2010-07-01 16:47:31 -07001231
1232 trace_drm_vblank_event(crtc, seq);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001233}
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001236 * drm_handle_vblank - handle a vblank event
1237 * @dev: DRM device
1238 * @crtc: where this event occurred
1239 *
1240 * Drivers should call this routine in their vblank interrupt handlers to
1241 * update the vblank counter and send any signals that may be pending.
1242 */
Chris Wilson78c6e172011-01-31 10:48:04 +00001243bool drm_handle_vblank(struct drm_device *dev, int crtc)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001244{
Mario Kleiner27641c32010-10-23 04:20:23 +02001245 u32 vblcount;
1246 s64 diff_ns;
1247 struct timeval tvblank;
1248 unsigned long irqflags;
1249
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001250 if (!dev->num_crtcs)
Chris Wilson78c6e172011-01-31 10:48:04 +00001251 return false;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001252
Mario Kleiner27641c32010-10-23 04:20:23 +02001253 /* Need timestamp lock to prevent concurrent execution with
1254 * vblank enable/disable, as this would cause inconsistent
1255 * or corrupted timestamps and vblank counts.
1256 */
1257 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
1258
1259 /* Vblank irq handling disabled. Nothing to do. */
1260 if (!dev->vblank_enabled[crtc]) {
1261 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001262 return false;
Mario Kleiner27641c32010-10-23 04:20:23 +02001263 }
1264
1265 /* Fetch corresponding timestamp for this vblank interval from
1266 * driver and store it in proper slot of timestamp ringbuffer.
1267 */
1268
1269 /* Get current timestamp and count. */
1270 vblcount = atomic_read(&dev->_vblank_count[crtc]);
1271 drm_get_last_vbltimestamp(dev, crtc, &tvblank, DRM_CALLED_FROM_VBLIRQ);
1272
1273 /* Compute time difference to timestamp of last vblank */
1274 diff_ns = timeval_to_ns(&tvblank) -
1275 timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount));
1276
1277 /* Update vblank timestamp and count if at least
1278 * DRM_REDUNDANT_VBLIRQ_THRESH_NS nanoseconds
1279 * difference between last stored timestamp and current
1280 * timestamp. A smaller difference means basically
1281 * identical timestamps. Happens if this vblank has
1282 * been already processed and this is a redundant call,
1283 * e.g., due to spurious vblank interrupts. We need to
1284 * ignore those for accounting.
1285 */
1286 if (abs(diff_ns) > DRM_REDUNDANT_VBLIRQ_THRESH_NS) {
1287 /* Store new timestamp in ringbuffer. */
1288 vblanktimestamp(dev, crtc, vblcount + 1) = tvblank;
1289 smp_wmb();
1290
1291 /* Increment cooked vblank count. This also atomically commits
1292 * the timestamp computed above.
1293 */
1294 atomic_inc(&dev->_vblank_count[crtc]);
1295 } else {
1296 DRM_DEBUG("crtc %d: Redundant vblirq ignored. diff_ns = %d\n",
1297 crtc, (int) diff_ns);
1298 }
1299
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001300 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +10001301 drm_handle_vblank_events(dev, crtc);
Mario Kleiner27641c32010-10-23 04:20:23 +02001302
1303 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
Chris Wilson78c6e172011-01-31 10:48:04 +00001304 return true;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001305}
1306EXPORT_SYMBOL(drm_handle_vblank);