blob: 4091b9e291f918be5f23a8391b48aa391d498f9c [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
97static void drm_vblank_cleanup(struct drm_device *dev)
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);
109 drm_free(dev->vbl_sigs, sizeof(*dev->vbl_sigs) * dev->num_crtcs,
110 DRM_MEM_DRIVER);
111 drm_free(dev->_vblank_count, sizeof(*dev->_vblank_count) *
112 dev->num_crtcs, DRM_MEM_DRIVER);
113 drm_free(dev->vblank_refcount, sizeof(*dev->vblank_refcount) *
114 dev->num_crtcs, DRM_MEM_DRIVER);
115 drm_free(dev->vblank_enabled, sizeof(*dev->vblank_enabled) *
116 dev->num_crtcs, DRM_MEM_DRIVER);
117 drm_free(dev->last_vblank, sizeof(*dev->last_vblank) * dev->num_crtcs,
118 DRM_MEM_DRIVER);
119 drm_free(dev->vblank_inmodeset, sizeof(*dev->vblank_inmodeset) *
120 dev->num_crtcs, DRM_MEM_DRIVER);
121
122 dev->num_crtcs = 0;
123}
124
125int drm_vblank_init(struct drm_device *dev, int num_crtcs)
126{
127 int i, ret = -ENOMEM;
128
129 setup_timer(&dev->vblank_disable_timer, vblank_disable_fn,
130 (unsigned long)dev);
131 spin_lock_init(&dev->vbl_lock);
132 atomic_set(&dev->vbl_signal_pending, 0);
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
140 dev->vbl_sigs = drm_alloc(sizeof(struct list_head) * num_crtcs,
141 DRM_MEM_DRIVER);
142 if (!dev->vbl_sigs)
143 goto err;
144
145 dev->_vblank_count = drm_alloc(sizeof(atomic_t) * num_crtcs,
146 DRM_MEM_DRIVER);
147 if (!dev->_vblank_count)
148 goto err;
149
150 dev->vblank_refcount = drm_alloc(sizeof(atomic_t) * num_crtcs,
151 DRM_MEM_DRIVER);
152 if (!dev->vblank_refcount)
153 goto err;
154
155 dev->vblank_enabled = drm_calloc(num_crtcs, sizeof(int),
156 DRM_MEM_DRIVER);
157 if (!dev->vblank_enabled)
158 goto err;
159
160 dev->last_vblank = drm_calloc(num_crtcs, sizeof(u32), DRM_MEM_DRIVER);
161 if (!dev->last_vblank)
162 goto err;
163
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]);
172 INIT_LIST_HEAD(&dev->vbl_sigs[i]);
173 atomic_set(&dev->_vblank_count[i], 0);
174 atomic_set(&dev->vblank_refcount[i], 0);
175 }
176
177 dev->vblank_disable_allowed = 0;
178
179 return 0;
180
181err:
182 drm_vblank_cleanup(dev);
183 return ret;
184}
185EXPORT_SYMBOL(drm_vblank_init);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/**
188 * Install IRQ handler.
189 *
190 * \param dev DRM device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 *
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700192 * Initializes the IRQ related data. Installs the handler, calling the driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions
194 * before and after the installation.
195 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700196int drm_irq_install(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700198 int ret = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000199 unsigned long sh_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
202 return -EINVAL;
203
Eric Anholted4cb412008-07-29 12:10:39 -0700204 if (dev->pdev->irq == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return -EINVAL;
206
Dave Airlie30e2fb12006-02-02 19:37:46 +1100207 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 /* Driver must have been initialized */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000210 if (!dev->dev_private) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100211 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return -EINVAL;
213 }
214
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000215 if (dev->irq_enabled) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100216 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return -EBUSY;
218 }
219 dev->irq_enabled = 1;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100220 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Eric Anholted4cb412008-07-29 12:10:39 -0700222 DRM_DEBUG("irq=%d\n", dev->pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000224 /* Before installing handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 dev->driver->irq_preinstall(dev);
226
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000227 /* Install handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
Thomas Gleixner935f6e32006-07-01 19:29:34 -0700229 sh_flags = IRQF_SHARED;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000230
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700231 ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000232 sh_flags, dev->devname, dev);
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700233
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000234 if (ret < 0) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100235 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100237 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return ret;
239 }
240
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000241 /* After installing handler */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700242 ret = dev->driver->irq_postinstall(dev);
243 if (ret < 0) {
244 mutex_lock(&dev->struct_mutex);
245 dev->irq_enabled = 0;
246 mutex_unlock(&dev->struct_mutex);
247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700249 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700251EXPORT_SYMBOL(drm_irq_install);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253/**
254 * Uninstall the IRQ handler.
255 *
256 * \param dev DRM device.
257 *
258 * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq.
259 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000260int drm_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 int irq_enabled;
263
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
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000272 if (!irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return -EINVAL;
274
Eric Anholted4cb412008-07-29 12:10:39 -0700275 DRM_DEBUG("irq=%d\n", dev->pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 dev->driver->irq_uninstall(dev);
278
Eric Anholted4cb412008-07-29 12:10:39 -0700279 free_irq(dev->pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700281 drm_vblank_cleanup(dev);
282
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000283 dev->locked_tasklet_func = NULL;
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return 0;
286}
287EXPORT_SYMBOL(drm_irq_uninstall);
288
289/**
290 * IRQ control ioctl.
291 *
292 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000293 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * \param cmd command.
295 * \param arg user argument, pointing to a drm_control structure.
296 * \return zero on success or a negative number on failure.
297 *
298 * Calls irq_install() or irq_uninstall() according to \p arg.
299 */
Eric Anholtc153f452007-09-03 12:06:45 +1000300int drm_control(struct drm_device *dev, void *data,
301 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Eric Anholtc153f452007-09-03 12:06:45 +1000303 struct drm_control *ctl = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /* if we haven't irq we fallback for compatibility reasons - this used to be a separate function in drm_dma.h */
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Eric Anholtc153f452007-09-03 12:06:45 +1000308 switch (ctl->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 case DRM_INST_HANDLER:
310 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
311 return 0;
312 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
Eric Anholted4cb412008-07-29 12:10:39 -0700313 ctl->irq != dev->pdev->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000315 return drm_irq_install(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 case DRM_UNINST_HANDLER:
317 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
318 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000319 return drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 default:
321 return -EINVAL;
322 }
323}
324
325/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700326 * drm_vblank_count - retrieve "cooked" vblank counter value
327 * @dev: DRM device
328 * @crtc: which counter to retrieve
329 *
330 * Fetches the "cooked" vblank count value that represents the number of
331 * vblank events since the system was booted, including lost events due to
332 * modesetting activity.
333 */
334u32 drm_vblank_count(struct drm_device *dev, int crtc)
335{
336 return atomic_read(&dev->_vblank_count[crtc]);
337}
338EXPORT_SYMBOL(drm_vblank_count);
339
340/**
341 * drm_update_vblank_count - update the master vblank counter
342 * @dev: DRM device
343 * @crtc: counter to update
344 *
345 * Call back into the driver to update the appropriate vblank counter
346 * (specified by @crtc). Deal with wraparound, if it occurred, and
347 * update the last read value so we can deal with wraparound on the next
348 * call if necessary.
349 *
350 * Only necessary when going from off->on, to account for frames we
351 * didn't get an interrupt for.
352 *
353 * Note: caller must hold dev->vbl_lock since this reads & writes
354 * device vblank fields.
355 */
356static void drm_update_vblank_count(struct drm_device *dev, int crtc)
357{
358 u32 cur_vblank, diff;
359
360 /*
361 * Interrupts were disabled prior to this call, so deal with counter
362 * wrap if needed.
363 * NOTE! It's possible we lost a full dev->max_vblank_count events
364 * here if the register is small or we had vblank interrupts off for
365 * a long time.
366 */
367 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
368 diff = cur_vblank - dev->last_vblank[crtc];
369 if (cur_vblank < dev->last_vblank[crtc]) {
370 diff += dev->max_vblank_count;
371
372 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
373 crtc, dev->last_vblank[crtc], cur_vblank, diff);
374 }
375
376 DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
377 crtc, diff);
378
379 atomic_add(diff, &dev->_vblank_count[crtc]);
380}
381
382/**
383 * drm_vblank_get - get a reference count on vblank events
384 * @dev: DRM device
385 * @crtc: which CRTC to own
386 *
387 * Acquire a reference count on vblank events to avoid having them disabled
388 * while in use.
389 *
390 * RETURNS
391 * Zero on success, nonzero on failure.
392 */
393int drm_vblank_get(struct drm_device *dev, int crtc)
394{
395 unsigned long irqflags;
396 int ret = 0;
397
398 spin_lock_irqsave(&dev->vbl_lock, irqflags);
399 /* Going from 0->1 means we have to enable interrupts again */
400 if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1 &&
401 !dev->vblank_enabled[crtc]) {
402 ret = dev->driver->enable_vblank(dev, crtc);
403 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n", crtc, ret);
404 if (ret)
405 atomic_dec(&dev->vblank_refcount[crtc]);
406 else {
407 dev->vblank_enabled[crtc] = 1;
408 drm_update_vblank_count(dev, crtc);
409 }
410 }
411 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
412
413 return ret;
414}
415EXPORT_SYMBOL(drm_vblank_get);
416
417/**
418 * drm_vblank_put - give up ownership of vblank events
419 * @dev: DRM device
420 * @crtc: which counter to give up
421 *
422 * Release ownership of a given vblank counter, turning off interrupts
423 * if possible.
424 */
425void drm_vblank_put(struct drm_device *dev, int crtc)
426{
427 /* Last user schedules interrupt disable */
428 if (atomic_dec_and_test(&dev->vblank_refcount[crtc]))
429 mod_timer(&dev->vblank_disable_timer, jiffies + 5*DRM_HZ);
430}
431EXPORT_SYMBOL(drm_vblank_put);
432
433/**
434 * drm_modeset_ctl - handle vblank event counter changes across mode switch
435 * @DRM_IOCTL_ARGS: standard ioctl arguments
436 *
437 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
438 * ioctls around modesetting so that any lost vblank events are accounted for.
439 *
440 * Generally the counter will reset across mode sets. If interrupts are
441 * enabled around this call, we don't have to do anything since the counter
442 * will have already been incremented.
443 */
444int drm_modeset_ctl(struct drm_device *dev, void *data,
445 struct drm_file *file_priv)
446{
447 struct drm_modeset_ctl *modeset = data;
448 unsigned long irqflags;
449 int crtc, ret = 0;
450
451 /* If drm_vblank_init() hasn't been called yet, just no-op */
452 if (!dev->num_crtcs)
453 goto out;
454
455 crtc = modeset->crtc;
456 if (crtc >= dev->num_crtcs) {
457 ret = -EINVAL;
458 goto out;
459 }
460
461 /*
462 * To avoid all the problems that might happen if interrupts
463 * were enabled/disabled around or between these calls, we just
464 * have the kernel take a reference on the CRTC (just once though
465 * to avoid corrupting the count if multiple, mismatch calls occur),
466 * so that interrupts remain enabled in the interim.
467 */
468 switch (modeset->cmd) {
469 case _DRM_PRE_MODESET:
470 if (!dev->vblank_inmodeset[crtc]) {
471 dev->vblank_inmodeset[crtc] = 1;
472 drm_vblank_get(dev, crtc);
473 }
474 break;
475 case _DRM_POST_MODESET:
476 if (dev->vblank_inmodeset[crtc]) {
477 spin_lock_irqsave(&dev->vbl_lock, irqflags);
478 dev->vblank_disable_allowed = 1;
479 dev->vblank_inmodeset[crtc] = 0;
480 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
481 drm_vblank_put(dev, crtc);
482 }
483 break;
484 default:
485 ret = -EINVAL;
486 break;
487 }
488
489out:
490 return ret;
491}
492
493/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 * Wait for VBLANK.
495 *
496 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000497 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 * \param cmd command.
499 * \param data user argument, pointing to a drm_wait_vblank structure.
500 * \return zero on success or a negative number on failure.
501 *
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000502 * Verifies the IRQ is installed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 *
504 * If a signal is requested checks if this task has already scheduled the same signal
505 * for the same vblank sequence number - nothing to be done in
506 * that case. If the number of tasks waiting for the interrupt exceeds 100 the
507 * function fails. Otherwise adds a new entry to drm_device::vbl_sigs for this
508 * task.
509 *
510 * If a signal is not requested, then calls vblank_wait().
511 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700512int drm_wait_vblank(struct drm_device *dev, void *data,
513 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Eric Anholtc153f452007-09-03 12:06:45 +1000515 union drm_wait_vblank *vblwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 int ret = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700517 unsigned int flags, seq, crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Eric Anholted4cb412008-07-29 12:10:39 -0700519 if ((!dev->pdev->irq) || (!dev->irq_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return -EINVAL;
521
Eric Anholtc153f452007-09-03 12:06:45 +1000522 if (vblwait->request.type &
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000523 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) {
524 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000525 vblwait->request.type,
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000526 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK));
527 return -EINVAL;
528 }
529
Eric Anholtc153f452007-09-03 12:06:45 +1000530 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700531 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000532
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700533 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000534 return -EINVAL;
535
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700536 ret = drm_vblank_get(dev, crtc);
537 if (ret) {
538 DRM_ERROR("failed to acquire vblank counter, %d\n", ret);
539 return ret;
540 }
541 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000542
Eric Anholtc153f452007-09-03 12:06:45 +1000543 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +1000545 vblwait->request.sequence += seq;
546 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 case _DRM_VBLANK_ABSOLUTE:
548 break;
549 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700550 ret = -EINVAL;
551 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +1000554 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +1000555 (seq - vblwait->request.sequence) <= (1<<23)) {
556 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +1000557 }
558
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000559 if (flags & _DRM_VBLANK_SIGNAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700561 struct list_head *vbl_sigs = &dev->vbl_sigs[crtc];
Dave Airlie55910512007-07-11 16:53:40 +1000562 struct drm_vbl_sig *vbl_sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000564 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 /* Check if this task has already scheduled the same signal
567 * for the same vblank sequence number; nothing to be done in
568 * that case
569 */
Dave Airliebd1b3312007-05-26 05:01:51 +1000570 list_for_each_entry(vbl_sig, vbl_sigs, head) {
Eric Anholtc153f452007-09-03 12:06:45 +1000571 if (vbl_sig->sequence == vblwait->request.sequence
572 && vbl_sig->info.si_signo ==
573 vblwait->request.signal
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000574 && vbl_sig->task == current) {
575 spin_unlock_irqrestore(&dev->vbl_lock,
576 irqflags);
Eric Anholtc153f452007-09-03 12:06:45 +1000577 vblwait->reply.sequence = seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 goto done;
579 }
580 }
581
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700582 if (atomic_read(&dev->vbl_signal_pending) >= 100) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000583 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700584 ret = -EBUSY;
585 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000588 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700590 vbl_sig = drm_calloc(1, sizeof(struct drm_vbl_sig),
591 DRM_MEM_DRIVER);
592 if (!vbl_sig) {
593 ret = -ENOMEM;
594 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700597 ret = drm_vblank_get(dev, crtc);
598 if (ret) {
599 drm_free(vbl_sig, sizeof(struct drm_vbl_sig),
600 DRM_MEM_DRIVER);
601 return ret;
602 }
603
604 atomic_inc(&dev->vbl_signal_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Eric Anholtc153f452007-09-03 12:06:45 +1000606 vbl_sig->sequence = vblwait->request.sequence;
607 vbl_sig->info.si_signo = vblwait->request.signal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 vbl_sig->task = current;
609
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000610 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Dave Airliebd1b3312007-05-26 05:01:51 +1000612 list_add_tail(&vbl_sig->head, vbl_sigs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000614 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
=?utf-8?q?Michel_D=C3=A4nzer?=049b3232006-10-24 23:34:58 +1000615
Eric Anholtc153f452007-09-03 12:06:45 +1000616 vblwait->reply.sequence = seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 } else {
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700618 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
619 vblwait->request.sequence, crtc);
620 DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ,
621 ((drm_vblank_count(dev, crtc)
622 - vblwait->request.sequence) <= (1 << 23)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700624 if (ret != -EINTR) {
625 struct timeval now;
626
627 do_gettimeofday(&now);
628
629 vblwait->reply.tval_sec = now.tv_sec;
630 vblwait->reply.tval_usec = now.tv_usec;
631 vblwait->reply.sequence = drm_vblank_count(dev, crtc);
632 DRM_DEBUG("returning %d to client\n",
633 vblwait->reply.sequence);
634 } else {
635 DRM_DEBUG("vblank wait interrupted by signal\n");
636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700639done:
640 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return ret;
642}
643
644/**
645 * Send the VBLANK signals.
646 *
647 * \param dev DRM device.
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700648 * \param crtc CRTC where the vblank event occurred
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 *
650 * Sends a signal for each task in drm_device::vbl_sigs and empties the list.
651 *
652 * If a signal is not requested, then calls vblank_wait().
653 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700654static void drm_vbl_send_signals(struct drm_device *dev, int crtc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700656 struct drm_vbl_sig *vbl_sig, *tmp;
657 struct list_head *vbl_sigs;
658 unsigned int vbl_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 unsigned long flags;
660
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000661 spin_lock_irqsave(&dev->vbl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700663 vbl_sigs = &dev->vbl_sigs[crtc];
664 vbl_seq = drm_vblank_count(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700666 list_for_each_entry_safe(vbl_sig, tmp, vbl_sigs, head) {
667 if ((vbl_seq - vbl_sig->sequence) <= (1 << 23)) {
668 vbl_sig->info.si_code = vbl_seq;
669 send_sig_info(vbl_sig->info.si_signo,
670 &vbl_sig->info, vbl_sig->task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700672 list_del(&vbl_sig->head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700674 drm_free(vbl_sig, sizeof(*vbl_sig),
675 DRM_MEM_DRIVER);
676 atomic_dec(&dev->vbl_signal_pending);
677 drm_vblank_put(dev, crtc);
678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
680
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000681 spin_unlock_irqrestore(&dev->vbl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000683
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700684/**
685 * drm_handle_vblank - handle a vblank event
686 * @dev: DRM device
687 * @crtc: where this event occurred
688 *
689 * Drivers should call this routine in their vblank interrupt handlers to
690 * update the vblank counter and send any signals that may be pending.
691 */
692void drm_handle_vblank(struct drm_device *dev, int crtc)
693{
694 atomic_inc(&dev->_vblank_count[crtc]);
695 DRM_WAKEUP(&dev->vbl_queue[crtc]);
696 drm_vbl_send_signals(dev, crtc);
697}
698EXPORT_SYMBOL(drm_handle_vblank);
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000699
700/**
701 * Tasklet wrapper function.
702 *
703 * \param data DRM device in disguise.
704 *
705 * Attempts to grab the HW lock and calls the driver callback on success. On
706 * failure, leave the lock marked as contended so the callback can be called
707 * from drm_unlock().
708 */
709static void drm_locked_tasklet_func(unsigned long data)
710{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000711 struct drm_device *dev = (struct drm_device *)data;
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000712 unsigned long irqflags;
Thomas Hellstrome5b4f192008-08-24 17:00:00 +1000713 void (*tasklet_func)(struct drm_device *);
714
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000715 spin_lock_irqsave(&dev->tasklet_lock, irqflags);
Thomas Hellstrome5b4f192008-08-24 17:00:00 +1000716 tasklet_func = dev->locked_tasklet_func;
717 spin_unlock_irqrestore(&dev->tasklet_lock, irqflags);
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000718
Thomas Hellstrome5b4f192008-08-24 17:00:00 +1000719 if (!tasklet_func ||
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100720 !drm_lock_take(&dev->lock,
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000721 DRM_KERNEL_CONTEXT)) {
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000722 return;
723 }
724
725 dev->lock.lock_time = jiffies;
726 atomic_inc(&dev->counts[_DRM_STAT_LOCKS]);
727
Thomas Hellstrome5b4f192008-08-24 17:00:00 +1000728 spin_lock_irqsave(&dev->tasklet_lock, irqflags);
729 tasklet_func = dev->locked_tasklet_func;
730 dev->locked_tasklet_func = NULL;
731 spin_unlock_irqrestore(&dev->tasklet_lock, irqflags);
732
733 if (tasklet_func != NULL)
734 tasklet_func(dev);
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000735
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100736 drm_lock_free(&dev->lock,
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000737 DRM_KERNEL_CONTEXT);
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000738}
739
740/**
741 * Schedule a tasklet to call back a driver hook with the HW lock held.
742 *
743 * \param dev DRM device.
744 * \param func Driver callback.
745 *
746 * This is intended for triggering actions that require the HW lock from an
747 * interrupt handler. The lock will be grabbed ASAP after the interrupt handler
748 * completes. Note that the callback may be called from interrupt or process
749 * context, it must not make any assumptions about this. Also, the HW lock will
750 * be held with the kernel context or any client context.
751 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000752void drm_locked_tasklet(struct drm_device *dev, void (*func)(struct drm_device *))
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000753{
754 unsigned long irqflags;
755 static DECLARE_TASKLET(drm_tasklet, drm_locked_tasklet_func, 0);
756
=?utf-8?q?Michel_D=C3=A4nzer?=8163e412006-10-24 23:30:01 +1000757 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ) ||
758 test_bit(TASKLET_STATE_SCHED, &drm_tasklet.state))
=?utf-8?q?Michel_D=C3=A4nzer?=2e54a002006-10-24 23:08:16 +1000759 return;
760
761 spin_lock_irqsave(&dev->tasklet_lock, irqflags);
762
763 if (dev->locked_tasklet_func) {
764 spin_unlock_irqrestore(&dev->tasklet_lock, irqflags);
765 return;
766 }
767
768 dev->locked_tasklet_func = func;
769
770 spin_unlock_irqrestore(&dev->tasklet_lock, irqflags);
771
772 drm_tasklet.data = (unsigned long)dev;
773
774 tasklet_hi_schedule(&drm_tasklet);
775}
776EXPORT_SYMBOL(drm_locked_tasklet);