Merge branch 'oprofile-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / drivers / gpu / drm / drm_irq.c
CommitLineData
1da177e4 1/**
b5e89ed5 2 * \file drm_irq.c
1da177e4
LT
3 * 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.
b5e89ed5 42 *
1da177e4 43 * \param inode device inode.
6c340eac 44 * \param file_priv DRM file private.
1da177e4
LT
45 * \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.
b5e89ed5 48 *
1da177e4
LT
49 * 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 */
c153f45f
EA
53int drm_irq_by_busid(struct drm_device *dev, void *data,
54 struct drm_file *file_priv)
1da177e4 55{
c153f45f 56 struct drm_irq_busid *p = data;
1da177e4
LT
57
58 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
59 return -EINVAL;
60
c153f45f
EA
61 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))
1da177e4
LT
64 return -EINVAL;
65
ed4cb414 66 p->irq = dev->pdev->irq;
c153f45f
EA
67
68 DRM_DEBUG("%d:%d:%d => IRQ %d\n", p->busnum, p->devnum, p->funcnum,
69 p->irq);
1da177e4 70
1da177e4
LT
71 return 0;
72}
73
0a3e67a4
JB
74static 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
52440211 97void drm_vblank_cleanup(struct drm_device *dev)
0a3e67a4
JB
98{
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);
0a3e67a4
JB
109 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);
fede5c91
EA
117 drm_free(dev->last_vblank_wait,
118 sizeof(*dev->last_vblank_wait) * dev->num_crtcs,
119 DRM_MEM_DRIVER);
0a3e67a4
JB
120 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);
0a3e67a4
JB
133 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
0a3e67a4
JB
140 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
fede5c91
EA
159 dev->last_vblank_wait = drm_calloc(num_crtcs, sizeof(u32),
160 DRM_MEM_DRIVER);
161 if (!dev->last_vblank_wait)
162 goto err;
163
0a3e67a4
JB
164 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]);
0a3e67a4
JB
172 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
1da177e4
LT
186/**
187 * Install IRQ handler.
188 *
189 * \param dev DRM device.
1da177e4 190 *
0a3e67a4 191 * Initializes the IRQ related data. Installs the handler, calling the driver
1da177e4
LT
192 * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions
193 * before and after the installation.
194 */
0a3e67a4 195int drm_irq_install(struct drm_device *dev)
1da177e4 196{
0a3e67a4 197 int ret = 0;
b5e89ed5 198 unsigned long sh_flags = 0;
b8da7de5 199 char *irqname;
1da177e4
LT
200
201 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
202 return -EINVAL;
203
ed4cb414 204 if (dev->pdev->irq == 0)
1da177e4
LT
205 return -EINVAL;
206
30e2fb18 207 mutex_lock(&dev->struct_mutex);
1da177e4
LT
208
209 /* Driver must have been initialized */
b5e89ed5 210 if (!dev->dev_private) {
30e2fb18 211 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
212 return -EINVAL;
213 }
214
b5e89ed5 215 if (dev->irq_enabled) {
30e2fb18 216 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
217 return -EBUSY;
218 }
219 dev->irq_enabled = 1;
30e2fb18 220 mutex_unlock(&dev->struct_mutex);
1da177e4 221
ed4cb414 222 DRM_DEBUG("irq=%d\n", dev->pdev->irq);
1da177e4 223
b5e89ed5 224 /* Before installing handler */
1da177e4
LT
225 dev->driver->irq_preinstall(dev);
226
b5e89ed5 227 /* Install handler */
1da177e4 228 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
935f6e3a 229 sh_flags = IRQF_SHARED;
b5e89ed5 230
b8da7de5
DA
231 if (dev->devname)
232 irqname = dev->devname;
233 else
234 irqname = dev->driver->name;
235
9bfbd5cb 236 ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler,
b8da7de5 237 sh_flags, irqname, dev);
9bfbd5cb 238
b5e89ed5 239 if (ret < 0) {
30e2fb18 240 mutex_lock(&dev->struct_mutex);
1da177e4 241 dev->irq_enabled = 0;
30e2fb18 242 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
243 return ret;
244 }
245
b5e89ed5 246 /* After installing handler */
0a3e67a4
JB
247 ret = dev->driver->irq_postinstall(dev);
248 if (ret < 0) {
249 mutex_lock(&dev->struct_mutex);
250 dev->irq_enabled = 0;
251 mutex_unlock(&dev->struct_mutex);
252 }
1da177e4 253
0a3e67a4 254 return ret;
1da177e4 255}
0a3e67a4 256EXPORT_SYMBOL(drm_irq_install);
1da177e4
LT
257
258/**
259 * Uninstall the IRQ handler.
260 *
261 * \param dev DRM device.
262 *
263 * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq.
264 */
84b1fd10 265int drm_irq_uninstall(struct drm_device * dev)
1da177e4 266{
dc1336ff
JB
267 unsigned long irqflags;
268 int irq_enabled, i;
1da177e4
LT
269
270 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
271 return -EINVAL;
272
30e2fb18 273 mutex_lock(&dev->struct_mutex);
1da177e4
LT
274 irq_enabled = dev->irq_enabled;
275 dev->irq_enabled = 0;
30e2fb18 276 mutex_unlock(&dev->struct_mutex);
1da177e4 277
dc1336ff
JB
278 /*
279 * Wake up any waiters so they don't hang.
280 */
281 spin_lock_irqsave(&dev->vbl_lock, irqflags);
282 for (i = 0; i < dev->num_crtcs; i++) {
283 DRM_WAKEUP(&dev->vbl_queue[i]);
284 dev->vblank_enabled[i] = 0;
14d200c5 285 dev->last_vblank[i] = dev->driver->get_vblank_counter(dev, i);
dc1336ff
JB
286 }
287 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
288
b5e89ed5 289 if (!irq_enabled)
1da177e4
LT
290 return -EINVAL;
291
ed4cb414 292 DRM_DEBUG("irq=%d\n", dev->pdev->irq);
1da177e4
LT
293
294 dev->driver->irq_uninstall(dev);
295
ed4cb414 296 free_irq(dev->pdev->irq, dev);
1da177e4
LT
297
298 return 0;
299}
300EXPORT_SYMBOL(drm_irq_uninstall);
301
302/**
303 * IRQ control ioctl.
304 *
305 * \param inode device inode.
6c340eac 306 * \param file_priv DRM file private.
1da177e4
LT
307 * \param cmd command.
308 * \param arg user argument, pointing to a drm_control structure.
309 * \return zero on success or a negative number on failure.
310 *
311 * Calls irq_install() or irq_uninstall() according to \p arg.
312 */
c153f45f
EA
313int drm_control(struct drm_device *dev, void *data,
314 struct drm_file *file_priv)
1da177e4 315{
c153f45f 316 struct drm_control *ctl = data;
b5e89ed5 317
1da177e4
LT
318 /* if we haven't irq we fallback for compatibility reasons - this used to be a separate function in drm_dma.h */
319
1da177e4 320
c153f45f 321 switch (ctl->func) {
1da177e4
LT
322 case DRM_INST_HANDLER:
323 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
324 return 0;
f453ba04
DA
325 if (drm_core_check_feature(dev, DRIVER_MODESET))
326 return 0;
1da177e4 327 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
ed4cb414 328 ctl->irq != dev->pdev->irq)
1da177e4 329 return -EINVAL;
b5e89ed5 330 return drm_irq_install(dev);
1da177e4
LT
331 case DRM_UNINST_HANDLER:
332 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
333 return 0;
f453ba04
DA
334 if (drm_core_check_feature(dev, DRIVER_MODESET))
335 return 0;
b5e89ed5 336 return drm_irq_uninstall(dev);
1da177e4
LT
337 default:
338 return -EINVAL;
339 }
340}
341
0a3e67a4
JB
342/**
343 * drm_vblank_count - retrieve "cooked" vblank counter value
344 * @dev: DRM device
345 * @crtc: which counter to retrieve
346 *
347 * Fetches the "cooked" vblank count value that represents the number of
348 * vblank events since the system was booted, including lost events due to
349 * modesetting activity.
350 */
351u32 drm_vblank_count(struct drm_device *dev, int crtc)
352{
353 return atomic_read(&dev->_vblank_count[crtc]);
354}
355EXPORT_SYMBOL(drm_vblank_count);
356
357/**
358 * drm_update_vblank_count - update the master vblank counter
359 * @dev: DRM device
360 * @crtc: counter to update
361 *
362 * Call back into the driver to update the appropriate vblank counter
363 * (specified by @crtc). Deal with wraparound, if it occurred, and
364 * update the last read value so we can deal with wraparound on the next
365 * call if necessary.
366 *
367 * Only necessary when going from off->on, to account for frames we
368 * didn't get an interrupt for.
369 *
370 * Note: caller must hold dev->vbl_lock since this reads & writes
371 * device vblank fields.
372 */
373static void drm_update_vblank_count(struct drm_device *dev, int crtc)
374{
375 u32 cur_vblank, diff;
376
377 /*
378 * Interrupts were disabled prior to this call, so deal with counter
379 * wrap if needed.
380 * NOTE! It's possible we lost a full dev->max_vblank_count events
381 * here if the register is small or we had vblank interrupts off for
382 * a long time.
383 */
384 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
385 diff = cur_vblank - dev->last_vblank[crtc];
386 if (cur_vblank < dev->last_vblank[crtc]) {
387 diff += dev->max_vblank_count;
388
389 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
390 crtc, dev->last_vblank[crtc], cur_vblank, diff);
391 }
392
393 DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
394 crtc, diff);
395
396 atomic_add(diff, &dev->_vblank_count[crtc]);
397}
398
399/**
400 * drm_vblank_get - get a reference count on vblank events
401 * @dev: DRM device
402 * @crtc: which CRTC to own
403 *
404 * Acquire a reference count on vblank events to avoid having them disabled
405 * while in use.
406 *
407 * RETURNS
408 * Zero on success, nonzero on failure.
409 */
410int drm_vblank_get(struct drm_device *dev, int crtc)
411{
412 unsigned long irqflags;
413 int ret = 0;
414
415 spin_lock_irqsave(&dev->vbl_lock, irqflags);
416 /* Going from 0->1 means we have to enable interrupts again */
417 if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1 &&
418 !dev->vblank_enabled[crtc]) {
419 ret = dev->driver->enable_vblank(dev, crtc);
420 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n", crtc, ret);
421 if (ret)
422 atomic_dec(&dev->vblank_refcount[crtc]);
423 else {
424 dev->vblank_enabled[crtc] = 1;
425 drm_update_vblank_count(dev, crtc);
426 }
427 }
428 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
429
430 return ret;
431}
432EXPORT_SYMBOL(drm_vblank_get);
433
434/**
435 * drm_vblank_put - give up ownership of vblank events
436 * @dev: DRM device
437 * @crtc: which counter to give up
438 *
439 * Release ownership of a given vblank counter, turning off interrupts
440 * if possible.
441 */
442void drm_vblank_put(struct drm_device *dev, int crtc)
443{
b3f5e732
CW
444 BUG_ON (atomic_read (&dev->vblank_refcount[crtc]) == 0);
445
0a3e67a4
JB
446 /* Last user schedules interrupt disable */
447 if (atomic_dec_and_test(&dev->vblank_refcount[crtc]))
448 mod_timer(&dev->vblank_disable_timer, jiffies + 5*DRM_HZ);
449}
450EXPORT_SYMBOL(drm_vblank_put);
451
f453ba04
DA
452/**
453 * drm_vblank_pre_modeset - account for vblanks across mode sets
454 * @dev: DRM device
455 * @crtc: CRTC in question
456 * @post: post or pre mode set?
457 *
458 * Account for vblank events across mode setting events, which will likely
459 * reset the hardware frame counter.
460 */
461void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
462{
463 /*
464 * To avoid all the problems that might happen if interrupts
465 * were enabled/disabled around or between these calls, we just
466 * have the kernel take a reference on the CRTC (just once though
467 * to avoid corrupting the count if multiple, mismatch calls occur),
468 * so that interrupts remain enabled in the interim.
469 */
470 if (!dev->vblank_inmodeset[crtc]) {
b3f5e732
CW
471 dev->vblank_inmodeset[crtc] = 0x1;
472 if (drm_vblank_get(dev, crtc) == 0)
473 dev->vblank_inmodeset[crtc] |= 0x2;
f453ba04
DA
474 }
475}
476EXPORT_SYMBOL(drm_vblank_pre_modeset);
477
478void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
479{
480 unsigned long irqflags;
481
482 if (dev->vblank_inmodeset[crtc]) {
483 spin_lock_irqsave(&dev->vbl_lock, irqflags);
484 dev->vblank_disable_allowed = 1;
f453ba04 485 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
b3f5e732
CW
486
487 if (dev->vblank_inmodeset[crtc] & 0x2)
488 drm_vblank_put(dev, crtc);
489
490 dev->vblank_inmodeset[crtc] = 0;
f453ba04
DA
491 }
492}
493EXPORT_SYMBOL(drm_vblank_post_modeset);
494
0a3e67a4
JB
495/**
496 * drm_modeset_ctl - handle vblank event counter changes across mode switch
497 * @DRM_IOCTL_ARGS: standard ioctl arguments
498 *
499 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
500 * ioctls around modesetting so that any lost vblank events are accounted for.
501 *
502 * Generally the counter will reset across mode sets. If interrupts are
503 * enabled around this call, we don't have to do anything since the counter
504 * will have already been incremented.
505 */
506int drm_modeset_ctl(struct drm_device *dev, void *data,
507 struct drm_file *file_priv)
508{
509 struct drm_modeset_ctl *modeset = data;
0a3e67a4
JB
510 int crtc, ret = 0;
511
512 /* If drm_vblank_init() hasn't been called yet, just no-op */
513 if (!dev->num_crtcs)
514 goto out;
515
516 crtc = modeset->crtc;
517 if (crtc >= dev->num_crtcs) {
518 ret = -EINVAL;
519 goto out;
520 }
521
0a3e67a4
JB
522 switch (modeset->cmd) {
523 case _DRM_PRE_MODESET:
f453ba04 524 drm_vblank_pre_modeset(dev, crtc);
0a3e67a4
JB
525 break;
526 case _DRM_POST_MODESET:
f453ba04 527 drm_vblank_post_modeset(dev, crtc);
0a3e67a4
JB
528 break;
529 default:
530 ret = -EINVAL;
531 break;
532 }
533
534out:
535 return ret;
536}
537
1da177e4
LT
538/**
539 * Wait for VBLANK.
540 *
541 * \param inode device inode.
6c340eac 542 * \param file_priv DRM file private.
1da177e4
LT
543 * \param cmd command.
544 * \param data user argument, pointing to a drm_wait_vblank structure.
545 * \return zero on success or a negative number on failure.
546 *
30b23634
EA
547 * This function enables the vblank interrupt on the pipe requested, then
548 * sleeps waiting for the requested sequence number to occur, and drops
549 * the vblank interrupt refcount afterwards. (vblank irq disable follows that
550 * after a timeout with no further vblank waits scheduled).
1da177e4 551 */
0a3e67a4
JB
552int drm_wait_vblank(struct drm_device *dev, void *data,
553 struct drm_file *file_priv)
1da177e4 554{
c153f45f 555 union drm_wait_vblank *vblwait = data;
1da177e4 556 int ret = 0;
0a3e67a4 557 unsigned int flags, seq, crtc;
1da177e4 558
ed4cb414 559 if ((!dev->pdev->irq) || (!dev->irq_enabled))
1da177e4
LT
560 return -EINVAL;
561
30b23634
EA
562 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
563 return -EINVAL;
564
c153f45f 565 if (vblwait->request.type &
776c9443
MCA
566 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) {
567 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
c153f45f 568 vblwait->request.type,
776c9443
MCA
569 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK));
570 return -EINVAL;
571 }
572
c153f45f 573 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
0a3e67a4 574 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
776c9443 575
0a3e67a4 576 if (crtc >= dev->num_crtcs)
776c9443
MCA
577 return -EINVAL;
578
0a3e67a4
JB
579 ret = drm_vblank_get(dev, crtc);
580 if (ret) {
581 DRM_ERROR("failed to acquire vblank counter, %d\n", ret);
582 return ret;
583 }
584 seq = drm_vblank_count(dev, crtc);
776c9443 585
c153f45f 586 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
1da177e4 587 case _DRM_VBLANK_RELATIVE:
c153f45f
EA
588 vblwait->request.sequence += seq;
589 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
1da177e4
LT
590 case _DRM_VBLANK_ABSOLUTE:
591 break;
592 default:
0a3e67a4
JB
593 ret = -EINVAL;
594 goto done;
1da177e4
LT
595 }
596
ab285d74 597 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
c153f45f
EA
598 (seq - vblwait->request.sequence) <= (1<<23)) {
599 vblwait->request.sequence = seq + 1;
ab285d74
MCA
600 }
601
30b23634
EA
602 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
603 vblwait->request.sequence, crtc);
604 dev->last_vblank_wait[crtc] = vblwait->request.sequence;
605 DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ,
606 (((drm_vblank_count(dev, crtc) -
607 vblwait->request.sequence) <= (1 << 23)) ||
608 !dev->irq_enabled));
1da177e4 609
30b23634
EA
610 if (ret != -EINTR) {
611 struct timeval now;
1da177e4 612
30b23634 613 do_gettimeofday(&now);
049b3233 614
30b23634
EA
615 vblwait->reply.tval_sec = now.tv_sec;
616 vblwait->reply.tval_usec = now.tv_usec;
617 vblwait->reply.sequence = drm_vblank_count(dev, crtc);
618 DRM_DEBUG("returning %d to client\n",
619 vblwait->reply.sequence);
1da177e4 620 } else {
30b23634 621 DRM_DEBUG("vblank wait interrupted by signal\n");
1da177e4
LT
622 }
623
0a3e67a4
JB
624done:
625 drm_vblank_put(dev, crtc);
1da177e4
LT
626 return ret;
627}
628
0a3e67a4
JB
629/**
630 * drm_handle_vblank - handle a vblank event
631 * @dev: DRM device
632 * @crtc: where this event occurred
633 *
634 * Drivers should call this routine in their vblank interrupt handlers to
635 * update the vblank counter and send any signals that may be pending.
636 */
637void drm_handle_vblank(struct drm_device *dev, int crtc)
638{
639 atomic_inc(&dev->_vblank_count[crtc]);
640 DRM_WAKEUP(&dev->vbl_queue[crtc]);
0a3e67a4
JB
641}
642EXPORT_SYMBOL(drm_handle_vblank);
This page took 0.483014 seconds and 5 git commands to generate.