blob: 69aa0ab284030a26a0cc3dbbecea34ec49f9ca83 [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"
37
38#include <linux/interrupt.h> /* For task queue support */
39
40/**
41 * Get interrupt from bus id.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100042 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100044 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * \param cmd command.
46 * \param arg user argument, pointing to a drm_irq_busid structure.
47 * \return zero on success or a negative number on failure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100048 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * Finds the PCI device with the specified bus id and gets its IRQ number.
50 * This IOCTL is deprecated, and will now return EINVAL for any busid not equal
51 * to that of the device that this DRM instance attached to.
52 */
Eric Anholtc153f452007-09-03 12:06:45 +100053int drm_irq_by_busid(struct drm_device *dev, void *data,
54 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Eric Anholtc153f452007-09-03 12:06:45 +100056 struct drm_irq_busid *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
59 return -EINVAL;
60
Eric Anholtc153f452007-09-03 12:06:45 +100061 if ((p->busnum >> 8) != drm_get_pci_domain(dev) ||
62 (p->busnum & 0xff) != dev->pdev->bus->number ||
63 p->devnum != PCI_SLOT(dev->pdev->devfn) || p->funcnum != PCI_FUNC(dev->pdev->devfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return -EINVAL;
65
Eric Anholted4cb412008-07-29 12:10:39 -070066 p->irq = dev->pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Eric Anholtc153f452007-09-03 12:06:45 +100068 DRM_DEBUG("%d:%d:%d => IRQ %d\n", p->busnum, p->devnum, p->funcnum,
69 p->irq);
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return 0;
72}
73
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070074static void vblank_disable_fn(unsigned long arg)
75{
76 struct drm_device *dev = (struct drm_device *)arg;
77 unsigned long irqflags;
78 int i;
79
80 if (!dev->vblank_disable_allowed)
81 return;
82
83 for (i = 0; i < dev->num_crtcs; i++) {
84 spin_lock_irqsave(&dev->vbl_lock, irqflags);
85 if (atomic_read(&dev->vblank_refcount[i]) == 0 &&
86 dev->vblank_enabled[i]) {
87 DRM_DEBUG("disabling vblank on crtc %d\n", i);
88 dev->last_vblank[i] =
89 dev->driver->get_vblank_counter(dev, i);
90 dev->driver->disable_vblank(dev, i);
91 dev->vblank_enabled[i] = 0;
92 }
93 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
94 }
95}
96
Keith Packard52440212008-11-18 09:30:25 -080097void drm_vblank_cleanup(struct drm_device *dev)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070098{
99 /* Bail if the driver didn't call drm_vblank_init() */
100 if (dev->num_crtcs == 0)
101 return;
102
103 del_timer(&dev->vblank_disable_timer);
104
105 vblank_disable_fn((unsigned long)dev);
106
107 drm_free(dev->vbl_queue, sizeof(*dev->vbl_queue) * dev->num_crtcs,
108 DRM_MEM_DRIVER);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700109 drm_free(dev->_vblank_count, sizeof(*dev->_vblank_count) *
110 dev->num_crtcs, DRM_MEM_DRIVER);
111 drm_free(dev->vblank_refcount, sizeof(*dev->vblank_refcount) *
112 dev->num_crtcs, DRM_MEM_DRIVER);
113 drm_free(dev->vblank_enabled, sizeof(*dev->vblank_enabled) *
114 dev->num_crtcs, DRM_MEM_DRIVER);
115 drm_free(dev->last_vblank, sizeof(*dev->last_vblank) * dev->num_crtcs,
116 DRM_MEM_DRIVER);
Eric Anholtfede5c92008-12-19 17:23:38 -0800117 drm_free(dev->last_vblank_wait,
118 sizeof(*dev->last_vblank_wait) * dev->num_crtcs,
119 DRM_MEM_DRIVER);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700120 drm_free(dev->vblank_inmodeset, sizeof(*dev->vblank_inmodeset) *
121 dev->num_crtcs, DRM_MEM_DRIVER);
122
123 dev->num_crtcs = 0;
124}
125
126int drm_vblank_init(struct drm_device *dev, int num_crtcs)
127{
128 int i, ret = -ENOMEM;
129
130 setup_timer(&dev->vblank_disable_timer, vblank_disable_fn,
131 (unsigned long)dev);
132 spin_lock_init(&dev->vbl_lock);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700133 dev->num_crtcs = num_crtcs;
134
135 dev->vbl_queue = drm_alloc(sizeof(wait_queue_head_t) * num_crtcs,
136 DRM_MEM_DRIVER);
137 if (!dev->vbl_queue)
138 goto err;
139
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700140 dev->_vblank_count = drm_alloc(sizeof(atomic_t) * num_crtcs,
141 DRM_MEM_DRIVER);
142 if (!dev->_vblank_count)
143 goto err;
144
145 dev->vblank_refcount = drm_alloc(sizeof(atomic_t) * num_crtcs,
146 DRM_MEM_DRIVER);
147 if (!dev->vblank_refcount)
148 goto err;
149
150 dev->vblank_enabled = drm_calloc(num_crtcs, sizeof(int),
151 DRM_MEM_DRIVER);
152 if (!dev->vblank_enabled)
153 goto err;
154
155 dev->last_vblank = drm_calloc(num_crtcs, sizeof(u32), DRM_MEM_DRIVER);
156 if (!dev->last_vblank)
157 goto err;
158
Eric Anholtfede5c92008-12-19 17:23:38 -0800159 dev->last_vblank_wait = drm_calloc(num_crtcs, sizeof(u32),
160 DRM_MEM_DRIVER);
161 if (!dev->last_vblank_wait)
162 goto err;
163
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700164 dev->vblank_inmodeset = drm_calloc(num_crtcs, sizeof(int),
165 DRM_MEM_DRIVER);
166 if (!dev->vblank_inmodeset)
167 goto err;
168
169 /* Zero per-crtc vblank stuff */
170 for (i = 0; i < num_crtcs; i++) {
171 init_waitqueue_head(&dev->vbl_queue[i]);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700172 atomic_set(&dev->_vblank_count[i], 0);
173 atomic_set(&dev->vblank_refcount[i], 0);
174 }
175
176 dev->vblank_disable_allowed = 0;
177
178 return 0;
179
180err:
181 drm_vblank_cleanup(dev);
182 return ret;
183}
184EXPORT_SYMBOL(drm_vblank_init);
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/**
187 * Install IRQ handler.
188 *
189 * \param dev DRM device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 *
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700191 * Initializes the IRQ related data. Installs the handler, calling the driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions
193 * before and after the installation.
194 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700195int drm_irq_install(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700197 int ret = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000198 unsigned long sh_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
201 return -EINVAL;
202
Eric Anholted4cb412008-07-29 12:10:39 -0700203 if (dev->pdev->irq == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return -EINVAL;
205
Dave Airlie30e2fb12006-02-02 19:37:46 +1100206 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 /* Driver must have been initialized */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000209 if (!dev->dev_private) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100210 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return -EINVAL;
212 }
213
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000214 if (dev->irq_enabled) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100215 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return -EBUSY;
217 }
218 dev->irq_enabled = 1;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100219 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Eric Anholted4cb412008-07-29 12:10:39 -0700221 DRM_DEBUG("irq=%d\n", dev->pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000223 /* Before installing handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 dev->driver->irq_preinstall(dev);
225
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000226 /* Install handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
Thomas Gleixner935f6e32006-07-01 19:29:34 -0700228 sh_flags = IRQF_SHARED;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000229
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700230 ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000231 sh_flags, dev->devname, dev);
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700232
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000233 if (ret < 0) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100234 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100236 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return ret;
238 }
239
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000240 /* After installing handler */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700241 ret = dev->driver->irq_postinstall(dev);
242 if (ret < 0) {
243 mutex_lock(&dev->struct_mutex);
244 dev->irq_enabled = 0;
245 mutex_unlock(&dev->struct_mutex);
246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700248 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700250EXPORT_SYMBOL(drm_irq_install);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252/**
253 * Uninstall the IRQ handler.
254 *
255 * \param dev DRM device.
256 *
257 * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq.
258 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000259int drm_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800261 unsigned long irqflags;
262 int irq_enabled, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
265 return -EINVAL;
266
Dave Airlie30e2fb12006-02-02 19:37:46 +1100267 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 irq_enabled = dev->irq_enabled;
269 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100270 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800272 /*
273 * Wake up any waiters so they don't hang.
274 */
275 spin_lock_irqsave(&dev->vbl_lock, irqflags);
276 for (i = 0; i < dev->num_crtcs; i++) {
277 DRM_WAKEUP(&dev->vbl_queue[i]);
278 dev->vblank_enabled[i] = 0;
279 }
280 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
281
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000282 if (!irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return -EINVAL;
284
Eric Anholted4cb412008-07-29 12:10:39 -0700285 DRM_DEBUG("irq=%d\n", dev->pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 dev->driver->irq_uninstall(dev);
288
Eric Anholted4cb412008-07-29 12:10:39 -0700289 free_irq(dev->pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 return 0;
292}
293EXPORT_SYMBOL(drm_irq_uninstall);
294
295/**
296 * IRQ control ioctl.
297 *
298 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000299 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 * \param cmd command.
301 * \param arg user argument, pointing to a drm_control structure.
302 * \return zero on success or a negative number on failure.
303 *
304 * Calls irq_install() or irq_uninstall() according to \p arg.
305 */
Eric Anholtc153f452007-09-03 12:06:45 +1000306int drm_control(struct drm_device *dev, void *data,
307 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Eric Anholtc153f452007-09-03 12:06:45 +1000309 struct drm_control *ctl = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 /* if we haven't irq we fallback for compatibility reasons - this used to be a separate function in drm_dma.h */
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Eric Anholtc153f452007-09-03 12:06:45 +1000314 switch (ctl->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 case DRM_INST_HANDLER:
316 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
317 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800318 if (drm_core_check_feature(dev, DRIVER_MODESET))
319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
Eric Anholted4cb412008-07-29 12:10:39 -0700321 ctl->irq != dev->pdev->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000323 return drm_irq_install(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 case DRM_UNINST_HANDLER:
325 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
326 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800327 if (drm_core_check_feature(dev, DRIVER_MODESET))
328 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000329 return drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 default:
331 return -EINVAL;
332 }
333}
334
335/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700336 * drm_vblank_count - retrieve "cooked" vblank counter value
337 * @dev: DRM device
338 * @crtc: which counter to retrieve
339 *
340 * Fetches the "cooked" vblank count value that represents the number of
341 * vblank events since the system was booted, including lost events due to
342 * modesetting activity.
343 */
344u32 drm_vblank_count(struct drm_device *dev, int crtc)
345{
346 return atomic_read(&dev->_vblank_count[crtc]);
347}
348EXPORT_SYMBOL(drm_vblank_count);
349
350/**
351 * drm_update_vblank_count - update the master vblank counter
352 * @dev: DRM device
353 * @crtc: counter to update
354 *
355 * Call back into the driver to update the appropriate vblank counter
356 * (specified by @crtc). Deal with wraparound, if it occurred, and
357 * update the last read value so we can deal with wraparound on the next
358 * call if necessary.
359 *
360 * Only necessary when going from off->on, to account for frames we
361 * didn't get an interrupt for.
362 *
363 * Note: caller must hold dev->vbl_lock since this reads & writes
364 * device vblank fields.
365 */
366static void drm_update_vblank_count(struct drm_device *dev, int crtc)
367{
368 u32 cur_vblank, diff;
369
370 /*
371 * Interrupts were disabled prior to this call, so deal with counter
372 * wrap if needed.
373 * NOTE! It's possible we lost a full dev->max_vblank_count events
374 * here if the register is small or we had vblank interrupts off for
375 * a long time.
376 */
377 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
378 diff = cur_vblank - dev->last_vblank[crtc];
379 if (cur_vblank < dev->last_vblank[crtc]) {
380 diff += dev->max_vblank_count;
381
382 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
383 crtc, dev->last_vblank[crtc], cur_vblank, diff);
384 }
385
386 DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
387 crtc, diff);
388
389 atomic_add(diff, &dev->_vblank_count[crtc]);
390}
391
392/**
393 * drm_vblank_get - get a reference count on vblank events
394 * @dev: DRM device
395 * @crtc: which CRTC to own
396 *
397 * Acquire a reference count on vblank events to avoid having them disabled
398 * while in use.
399 *
400 * RETURNS
401 * Zero on success, nonzero on failure.
402 */
403int drm_vblank_get(struct drm_device *dev, int crtc)
404{
405 unsigned long irqflags;
406 int ret = 0;
407
408 spin_lock_irqsave(&dev->vbl_lock, irqflags);
409 /* Going from 0->1 means we have to enable interrupts again */
410 if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1 &&
411 !dev->vblank_enabled[crtc]) {
412 ret = dev->driver->enable_vblank(dev, crtc);
413 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n", crtc, ret);
414 if (ret)
415 atomic_dec(&dev->vblank_refcount[crtc]);
416 else {
417 dev->vblank_enabled[crtc] = 1;
418 drm_update_vblank_count(dev, crtc);
419 }
420 }
421 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
422
423 return ret;
424}
425EXPORT_SYMBOL(drm_vblank_get);
426
427/**
428 * drm_vblank_put - give up ownership of vblank events
429 * @dev: DRM device
430 * @crtc: which counter to give up
431 *
432 * Release ownership of a given vblank counter, turning off interrupts
433 * if possible.
434 */
435void drm_vblank_put(struct drm_device *dev, int crtc)
436{
437 /* Last user schedules interrupt disable */
438 if (atomic_dec_and_test(&dev->vblank_refcount[crtc]))
439 mod_timer(&dev->vblank_disable_timer, jiffies + 5*DRM_HZ);
440}
441EXPORT_SYMBOL(drm_vblank_put);
442
443/**
Dave Airlief453ba02008-11-07 14:05:41 -0800444 * drm_vblank_pre_modeset - account for vblanks across mode sets
445 * @dev: DRM device
446 * @crtc: CRTC in question
447 * @post: post or pre mode set?
448 *
449 * Account for vblank events across mode setting events, which will likely
450 * reset the hardware frame counter.
451 */
452void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
453{
454 /*
455 * To avoid all the problems that might happen if interrupts
456 * were enabled/disabled around or between these calls, we just
457 * have the kernel take a reference on the CRTC (just once though
458 * to avoid corrupting the count if multiple, mismatch calls occur),
459 * so that interrupts remain enabled in the interim.
460 */
461 if (!dev->vblank_inmodeset[crtc]) {
462 dev->vblank_inmodeset[crtc] = 1;
463 drm_vblank_get(dev, crtc);
464 }
465}
466EXPORT_SYMBOL(drm_vblank_pre_modeset);
467
468void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
469{
470 unsigned long irqflags;
471
472 if (dev->vblank_inmodeset[crtc]) {
473 spin_lock_irqsave(&dev->vbl_lock, irqflags);
474 dev->vblank_disable_allowed = 1;
475 dev->vblank_inmodeset[crtc] = 0;
476 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
477 drm_vblank_put(dev, crtc);
478 }
479}
480EXPORT_SYMBOL(drm_vblank_post_modeset);
481
482/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700483 * drm_modeset_ctl - handle vblank event counter changes across mode switch
484 * @DRM_IOCTL_ARGS: standard ioctl arguments
485 *
486 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
487 * ioctls around modesetting so that any lost vblank events are accounted for.
488 *
489 * Generally the counter will reset across mode sets. If interrupts are
490 * enabled around this call, we don't have to do anything since the counter
491 * will have already been incremented.
492 */
493int drm_modeset_ctl(struct drm_device *dev, void *data,
494 struct drm_file *file_priv)
495{
496 struct drm_modeset_ctl *modeset = data;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700497 int crtc, ret = 0;
498
499 /* If drm_vblank_init() hasn't been called yet, just no-op */
500 if (!dev->num_crtcs)
501 goto out;
502
503 crtc = modeset->crtc;
504 if (crtc >= dev->num_crtcs) {
505 ret = -EINVAL;
506 goto out;
507 }
508
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700509 switch (modeset->cmd) {
510 case _DRM_PRE_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -0800511 drm_vblank_pre_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700512 break;
513 case _DRM_POST_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -0800514 drm_vblank_post_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700515 break;
516 default:
517 ret = -EINVAL;
518 break;
519 }
520
521out:
522 return ret;
523}
524
525/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 * Wait for VBLANK.
527 *
528 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000529 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * \param cmd command.
531 * \param data user argument, pointing to a drm_wait_vblank structure.
532 * \return zero on success or a negative number on failure.
533 *
Eric Anholt30b23632009-01-27 21:19:41 -0800534 * This function enables the vblank interrupt on the pipe requested, then
535 * sleeps waiting for the requested sequence number to occur, and drops
536 * the vblank interrupt refcount afterwards. (vblank irq disable follows that
537 * after a timeout with no further vblank waits scheduled).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700539int drm_wait_vblank(struct drm_device *dev, void *data,
540 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Eric Anholtc153f452007-09-03 12:06:45 +1000542 union drm_wait_vblank *vblwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int ret = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700544 unsigned int flags, seq, crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Eric Anholted4cb412008-07-29 12:10:39 -0700546 if ((!dev->pdev->irq) || (!dev->irq_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return -EINVAL;
548
Eric Anholt30b23632009-01-27 21:19:41 -0800549 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
550 return -EINVAL;
551
Eric Anholtc153f452007-09-03 12:06:45 +1000552 if (vblwait->request.type &
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000553 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) {
554 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000555 vblwait->request.type,
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000556 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK));
557 return -EINVAL;
558 }
559
Eric Anholtc153f452007-09-03 12:06:45 +1000560 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700561 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000562
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700563 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000564 return -EINVAL;
565
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700566 ret = drm_vblank_get(dev, crtc);
567 if (ret) {
568 DRM_ERROR("failed to acquire vblank counter, %d\n", ret);
569 return ret;
570 }
571 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000572
Eric Anholtc153f452007-09-03 12:06:45 +1000573 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +1000575 vblwait->request.sequence += seq;
576 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 case _DRM_VBLANK_ABSOLUTE:
578 break;
579 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700580 ret = -EINVAL;
581 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +1000584 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +1000585 (seq - vblwait->request.sequence) <= (1<<23)) {
586 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +1000587 }
588
Eric Anholt30b23632009-01-27 21:19:41 -0800589 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
590 vblwait->request.sequence, crtc);
591 dev->last_vblank_wait[crtc] = vblwait->request.sequence;
592 DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ,
593 (((drm_vblank_count(dev, crtc) -
594 vblwait->request.sequence) <= (1 << 23)) ||
595 !dev->irq_enabled));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Eric Anholt30b23632009-01-27 21:19:41 -0800597 if (ret != -EINTR) {
598 struct timeval now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Eric Anholt30b23632009-01-27 21:19:41 -0800600 do_gettimeofday(&now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Eric Anholt30b23632009-01-27 21:19:41 -0800602 vblwait->reply.tval_sec = now.tv_sec;
603 vblwait->reply.tval_usec = now.tv_usec;
604 vblwait->reply.sequence = drm_vblank_count(dev, crtc);
605 DRM_DEBUG("returning %d to client\n",
606 vblwait->reply.sequence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 } else {
Eric Anholt30b23632009-01-27 21:19:41 -0800608 DRM_DEBUG("vblank wait interrupted by signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700611done:
612 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return ret;
614}
615
616/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700617 * drm_handle_vblank - handle a vblank event
618 * @dev: DRM device
619 * @crtc: where this event occurred
620 *
621 * Drivers should call this routine in their vblank interrupt handlers to
622 * update the vblank counter and send any signals that may be pending.
623 */
624void drm_handle_vblank(struct drm_device *dev, int crtc)
625{
626 atomic_inc(&dev->_vblank_count[crtc]);
627 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700628}
629EXPORT_SYMBOL(drm_handle_vblank);