blob: 99ce7dcb28e03cf5f1ca752e53d8da52d226876f [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
Dave Airlie28d52042009-09-21 14:33:58 +100040#include <linux/vgaarb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/**
42 * Get interrupt from bus id.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100043 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100045 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * \param cmd command.
47 * \param arg user argument, pointing to a drm_irq_busid structure.
48 * \return zero on success or a negative number on failure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100049 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * Finds the PCI device with the specified bus id and gets its IRQ number.
51 * This IOCTL is deprecated, and will now return EINVAL for any busid not equal
52 * to that of the device that this DRM instance attached to.
53 */
Eric Anholtc153f452007-09-03 12:06:45 +100054int drm_irq_by_busid(struct drm_device *dev, void *data,
55 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Eric Anholtc153f452007-09-03 12:06:45 +100057 struct drm_irq_busid *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
60 return -EINVAL;
61
Eric Anholtc153f452007-09-03 12:06:45 +100062 if ((p->busnum >> 8) != drm_get_pci_domain(dev) ||
63 (p->busnum & 0xff) != dev->pdev->bus->number ||
64 p->devnum != PCI_SLOT(dev->pdev->devfn) || p->funcnum != PCI_FUNC(dev->pdev->devfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return -EINVAL;
66
Eric Anholted4cb412008-07-29 12:10:39 -070067 p->irq = dev->pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Eric Anholtc153f452007-09-03 12:06:45 +100069 DRM_DEBUG("%d:%d:%d => IRQ %d\n", p->busnum, p->devnum, p->funcnum,
70 p->irq);
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return 0;
73}
74
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070075static void vblank_disable_fn(unsigned long arg)
76{
77 struct drm_device *dev = (struct drm_device *)arg;
78 unsigned long irqflags;
79 int i;
80
81 if (!dev->vblank_disable_allowed)
82 return;
83
84 for (i = 0; i < dev->num_crtcs; i++) {
85 spin_lock_irqsave(&dev->vbl_lock, irqflags);
86 if (atomic_read(&dev->vblank_refcount[i]) == 0 &&
87 dev->vblank_enabled[i]) {
88 DRM_DEBUG("disabling vblank on crtc %d\n", i);
89 dev->last_vblank[i] =
90 dev->driver->get_vblank_counter(dev, i);
91 dev->driver->disable_vblank(dev, i);
92 dev->vblank_enabled[i] = 0;
93 }
94 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
95 }
96}
97
Keith Packard52440212008-11-18 09:30:25 -080098void drm_vblank_cleanup(struct drm_device *dev)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070099{
100 /* Bail if the driver didn't call drm_vblank_init() */
101 if (dev->num_crtcs == 0)
102 return;
103
104 del_timer(&dev->vblank_disable_timer);
105
106 vblank_disable_fn((unsigned long)dev);
107
Eric Anholt9a298b22009-03-24 12:23:04 -0700108 kfree(dev->vbl_queue);
109 kfree(dev->_vblank_count);
110 kfree(dev->vblank_refcount);
111 kfree(dev->vblank_enabled);
112 kfree(dev->last_vblank);
113 kfree(dev->last_vblank_wait);
114 kfree(dev->vblank_inmodeset);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700115
116 dev->num_crtcs = 0;
117}
Jerome Glissee77cef92010-01-07 15:39:13 +0100118EXPORT_SYMBOL(drm_vblank_cleanup);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700119
120int drm_vblank_init(struct drm_device *dev, int num_crtcs)
121{
122 int i, ret = -ENOMEM;
123
124 setup_timer(&dev->vblank_disable_timer, vblank_disable_fn,
125 (unsigned long)dev);
126 spin_lock_init(&dev->vbl_lock);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700127 dev->num_crtcs = num_crtcs;
128
Eric Anholt9a298b22009-03-24 12:23:04 -0700129 dev->vbl_queue = kmalloc(sizeof(wait_queue_head_t) * num_crtcs,
130 GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700131 if (!dev->vbl_queue)
132 goto err;
133
Eric Anholt9a298b22009-03-24 12:23:04 -0700134 dev->_vblank_count = kmalloc(sizeof(atomic_t) * num_crtcs, GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700135 if (!dev->_vblank_count)
136 goto err;
137
Eric Anholt9a298b22009-03-24 12:23:04 -0700138 dev->vblank_refcount = kmalloc(sizeof(atomic_t) * num_crtcs,
139 GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700140 if (!dev->vblank_refcount)
141 goto err;
142
Eric Anholt9a298b22009-03-24 12:23:04 -0700143 dev->vblank_enabled = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700144 if (!dev->vblank_enabled)
145 goto err;
146
Eric Anholt9a298b22009-03-24 12:23:04 -0700147 dev->last_vblank = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700148 if (!dev->last_vblank)
149 goto err;
150
Eric Anholt9a298b22009-03-24 12:23:04 -0700151 dev->last_vblank_wait = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL);
Eric Anholtfede5c92008-12-19 17:23:38 -0800152 if (!dev->last_vblank_wait)
153 goto err;
154
Eric Anholt9a298b22009-03-24 12:23:04 -0700155 dev->vblank_inmodeset = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700156 if (!dev->vblank_inmodeset)
157 goto err;
158
159 /* Zero per-crtc vblank stuff */
160 for (i = 0; i < num_crtcs; i++) {
161 init_waitqueue_head(&dev->vbl_queue[i]);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700162 atomic_set(&dev->_vblank_count[i], 0);
163 atomic_set(&dev->vblank_refcount[i], 0);
164 }
165
166 dev->vblank_disable_allowed = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700167 return 0;
168
169err:
170 drm_vblank_cleanup(dev);
171 return ret;
172}
173EXPORT_SYMBOL(drm_vblank_init);
174
Dave Airlie28d52042009-09-21 14:33:58 +1000175static void drm_irq_vgaarb_nokms(void *cookie, bool state)
176{
177 struct drm_device *dev = cookie;
178
179 if (dev->driver->vgaarb_irq) {
180 dev->driver->vgaarb_irq(dev, state);
181 return;
182 }
183
184 if (!dev->irq_enabled)
185 return;
186
187 if (state)
188 dev->driver->irq_uninstall(dev);
189 else {
190 dev->driver->irq_preinstall(dev);
191 dev->driver->irq_postinstall(dev);
192 }
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/**
196 * Install IRQ handler.
197 *
198 * \param dev DRM device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 *
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700200 * Initializes the IRQ related data. Installs the handler, calling the driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions
202 * before and after the installation.
203 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700204int drm_irq_install(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700206 int ret = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000207 unsigned long sh_flags = 0;
Dave Airlieb8da7de2009-06-02 16:50:35 +1000208 char *irqname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
211 return -EINVAL;
212
Eric Anholted4cb412008-07-29 12:10:39 -0700213 if (dev->pdev->irq == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return -EINVAL;
215
Dave Airlie30e2fb12006-02-02 19:37:46 +1100216 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 /* Driver must have been initialized */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000219 if (!dev->dev_private) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100220 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return -EINVAL;
222 }
223
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000224 if (dev->irq_enabled) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100225 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return -EBUSY;
227 }
228 dev->irq_enabled = 1;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100229 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Eric Anholted4cb412008-07-29 12:10:39 -0700231 DRM_DEBUG("irq=%d\n", dev->pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000233 /* Before installing handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 dev->driver->irq_preinstall(dev);
235
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000236 /* Install handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
Thomas Gleixner935f6e32006-07-01 19:29:34 -0700238 sh_flags = IRQF_SHARED;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000239
Dave Airlieb8da7de2009-06-02 16:50:35 +1000240 if (dev->devname)
241 irqname = dev->devname;
242 else
243 irqname = dev->driver->name;
244
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700245 ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler,
Dave Airlieb8da7de2009-06-02 16:50:35 +1000246 sh_flags, irqname, dev);
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700247
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000248 if (ret < 0) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100249 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100251 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return ret;
253 }
254
Dave Airlie28d52042009-09-21 14:33:58 +1000255 if (!drm_core_check_feature(dev, DRIVER_MODESET))
256 vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL);
257
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000258 /* After installing handler */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700259 ret = dev->driver->irq_postinstall(dev);
260 if (ret < 0) {
261 mutex_lock(&dev->struct_mutex);
262 dev->irq_enabled = 0;
263 mutex_unlock(&dev->struct_mutex);
264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700266 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700268EXPORT_SYMBOL(drm_irq_install);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270/**
271 * Uninstall the IRQ handler.
272 *
273 * \param dev DRM device.
274 *
275 * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq.
276 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000277int drm_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800279 unsigned long irqflags;
280 int irq_enabled, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
283 return -EINVAL;
284
Dave Airlie30e2fb12006-02-02 19:37:46 +1100285 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 irq_enabled = dev->irq_enabled;
287 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100288 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800290 /*
291 * Wake up any waiters so they don't hang.
292 */
293 spin_lock_irqsave(&dev->vbl_lock, irqflags);
294 for (i = 0; i < dev->num_crtcs; i++) {
295 DRM_WAKEUP(&dev->vbl_queue[i]);
296 dev->vblank_enabled[i] = 0;
Jesse Barnes14d200c2009-02-06 13:04:49 -0800297 dev->last_vblank[i] = dev->driver->get_vblank_counter(dev, i);
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800298 }
299 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
300
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000301 if (!irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return -EINVAL;
303
Eric Anholted4cb412008-07-29 12:10:39 -0700304 DRM_DEBUG("irq=%d\n", dev->pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Dave Airlie28d52042009-09-21 14:33:58 +1000306 if (!drm_core_check_feature(dev, DRIVER_MODESET))
307 vga_client_register(dev->pdev, NULL, NULL, NULL);
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 dev->driver->irq_uninstall(dev);
310
Eric Anholted4cb412008-07-29 12:10:39 -0700311 free_irq(dev->pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 return 0;
314}
315EXPORT_SYMBOL(drm_irq_uninstall);
316
317/**
318 * IRQ control ioctl.
319 *
320 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000321 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 * \param cmd command.
323 * \param arg user argument, pointing to a drm_control structure.
324 * \return zero on success or a negative number on failure.
325 *
326 * Calls irq_install() or irq_uninstall() according to \p arg.
327 */
Eric Anholtc153f452007-09-03 12:06:45 +1000328int drm_control(struct drm_device *dev, void *data,
329 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Eric Anholtc153f452007-09-03 12:06:45 +1000331 struct drm_control *ctl = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /* if we haven't irq we fallback for compatibility reasons - this used to be a separate function in drm_dma.h */
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Eric Anholtc153f452007-09-03 12:06:45 +1000336 switch (ctl->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 case DRM_INST_HANDLER:
338 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
339 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800340 if (drm_core_check_feature(dev, DRIVER_MODESET))
341 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
Eric Anholted4cb412008-07-29 12:10:39 -0700343 ctl->irq != dev->pdev->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000345 return drm_irq_install(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 case DRM_UNINST_HANDLER:
347 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
348 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800349 if (drm_core_check_feature(dev, DRIVER_MODESET))
350 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000351 return drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 default:
353 return -EINVAL;
354 }
355}
356
357/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700358 * drm_vblank_count - retrieve "cooked" vblank counter value
359 * @dev: DRM device
360 * @crtc: which counter to retrieve
361 *
362 * Fetches the "cooked" vblank count value that represents the number of
363 * vblank events since the system was booted, including lost events due to
364 * modesetting activity.
365 */
366u32 drm_vblank_count(struct drm_device *dev, int crtc)
367{
368 return atomic_read(&dev->_vblank_count[crtc]);
369}
370EXPORT_SYMBOL(drm_vblank_count);
371
372/**
373 * drm_update_vblank_count - update the master vblank counter
374 * @dev: DRM device
375 * @crtc: counter to update
376 *
377 * Call back into the driver to update the appropriate vblank counter
378 * (specified by @crtc). Deal with wraparound, if it occurred, and
379 * update the last read value so we can deal with wraparound on the next
380 * call if necessary.
381 *
382 * Only necessary when going from off->on, to account for frames we
383 * didn't get an interrupt for.
384 *
385 * Note: caller must hold dev->vbl_lock since this reads & writes
386 * device vblank fields.
387 */
388static void drm_update_vblank_count(struct drm_device *dev, int crtc)
389{
390 u32 cur_vblank, diff;
391
392 /*
393 * Interrupts were disabled prior to this call, so deal with counter
394 * wrap if needed.
395 * NOTE! It's possible we lost a full dev->max_vblank_count events
396 * here if the register is small or we had vblank interrupts off for
397 * a long time.
398 */
399 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
400 diff = cur_vblank - dev->last_vblank[crtc];
401 if (cur_vblank < dev->last_vblank[crtc]) {
402 diff += dev->max_vblank_count;
403
404 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
405 crtc, dev->last_vblank[crtc], cur_vblank, diff);
406 }
407
408 DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
409 crtc, diff);
410
411 atomic_add(diff, &dev->_vblank_count[crtc]);
412}
413
414/**
415 * drm_vblank_get - get a reference count on vblank events
416 * @dev: DRM device
417 * @crtc: which CRTC to own
418 *
419 * Acquire a reference count on vblank events to avoid having them disabled
420 * while in use.
421 *
422 * RETURNS
423 * Zero on success, nonzero on failure.
424 */
425int drm_vblank_get(struct drm_device *dev, int crtc)
426{
427 unsigned long irqflags;
428 int ret = 0;
429
430 spin_lock_irqsave(&dev->vbl_lock, irqflags);
431 /* Going from 0->1 means we have to enable interrupts again */
Li Peng778c9022009-11-09 12:51:22 +0800432 if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1) {
433 if (!dev->vblank_enabled[crtc]) {
434 ret = dev->driver->enable_vblank(dev, crtc);
435 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n", crtc, ret);
436 if (ret)
437 atomic_dec(&dev->vblank_refcount[crtc]);
438 else {
439 dev->vblank_enabled[crtc] = 1;
440 drm_update_vblank_count(dev, crtc);
441 }
442 }
443 } else {
444 if (!dev->vblank_enabled[crtc]) {
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700445 atomic_dec(&dev->vblank_refcount[crtc]);
Li Peng778c9022009-11-09 12:51:22 +0800446 ret = -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700447 }
448 }
449 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
450
451 return ret;
452}
453EXPORT_SYMBOL(drm_vblank_get);
454
455/**
456 * drm_vblank_put - give up ownership of vblank events
457 * @dev: DRM device
458 * @crtc: which counter to give up
459 *
460 * Release ownership of a given vblank counter, turning off interrupts
461 * if possible.
462 */
463void drm_vblank_put(struct drm_device *dev, int crtc)
464{
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000465 BUG_ON (atomic_read (&dev->vblank_refcount[crtc]) == 0);
466
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700467 /* Last user schedules interrupt disable */
468 if (atomic_dec_and_test(&dev->vblank_refcount[crtc]))
469 mod_timer(&dev->vblank_disable_timer, jiffies + 5*DRM_HZ);
470}
471EXPORT_SYMBOL(drm_vblank_put);
472
Li Peng778c9022009-11-09 12:51:22 +0800473void drm_vblank_off(struct drm_device *dev, int crtc)
474{
475 unsigned long irqflags;
476
477 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Jesse Barnese32ee7f2010-03-26 18:07:15 +0000478 dev->driver->disable_vblank(dev, crtc);
Li Peng778c9022009-11-09 12:51:22 +0800479 DRM_WAKEUP(&dev->vbl_queue[crtc]);
480 dev->vblank_enabled[crtc] = 0;
481 dev->last_vblank[crtc] = dev->driver->get_vblank_counter(dev, crtc);
482 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
483}
484EXPORT_SYMBOL(drm_vblank_off);
485
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700486/**
Dave Airlief453ba02008-11-07 14:05:41 -0800487 * drm_vblank_pre_modeset - account for vblanks across mode sets
488 * @dev: DRM device
489 * @crtc: CRTC in question
490 * @post: post or pre mode set?
491 *
492 * Account for vblank events across mode setting events, which will likely
493 * reset the hardware frame counter.
494 */
495void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
496{
Jerome Glissee77cef92010-01-07 15:39:13 +0100497 /* vblank is not initialized (IRQ not installed ?) */
498 if (!dev->num_crtcs)
499 return;
Dave Airlief453ba02008-11-07 14:05:41 -0800500 /*
501 * To avoid all the problems that might happen if interrupts
502 * were enabled/disabled around or between these calls, we just
503 * have the kernel take a reference on the CRTC (just once though
504 * to avoid corrupting the count if multiple, mismatch calls occur),
505 * so that interrupts remain enabled in the interim.
506 */
507 if (!dev->vblank_inmodeset[crtc]) {
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000508 dev->vblank_inmodeset[crtc] = 0x1;
509 if (drm_vblank_get(dev, crtc) == 0)
510 dev->vblank_inmodeset[crtc] |= 0x2;
Dave Airlief453ba02008-11-07 14:05:41 -0800511 }
512}
513EXPORT_SYMBOL(drm_vblank_pre_modeset);
514
515void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
516{
517 unsigned long irqflags;
518
519 if (dev->vblank_inmodeset[crtc]) {
520 spin_lock_irqsave(&dev->vbl_lock, irqflags);
521 dev->vblank_disable_allowed = 1;
Dave Airlief453ba02008-11-07 14:05:41 -0800522 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000523
524 if (dev->vblank_inmodeset[crtc] & 0x2)
525 drm_vblank_put(dev, crtc);
526
527 dev->vblank_inmodeset[crtc] = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800528 }
529}
530EXPORT_SYMBOL(drm_vblank_post_modeset);
531
532/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700533 * drm_modeset_ctl - handle vblank event counter changes across mode switch
534 * @DRM_IOCTL_ARGS: standard ioctl arguments
535 *
536 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
537 * ioctls around modesetting so that any lost vblank events are accounted for.
538 *
539 * Generally the counter will reset across mode sets. If interrupts are
540 * enabled around this call, we don't have to do anything since the counter
541 * will have already been incremented.
542 */
543int drm_modeset_ctl(struct drm_device *dev, void *data,
544 struct drm_file *file_priv)
545{
546 struct drm_modeset_ctl *modeset = data;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700547 int crtc, ret = 0;
548
549 /* If drm_vblank_init() hasn't been called yet, just no-op */
550 if (!dev->num_crtcs)
551 goto out;
552
553 crtc = modeset->crtc;
554 if (crtc >= dev->num_crtcs) {
555 ret = -EINVAL;
556 goto out;
557 }
558
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700559 switch (modeset->cmd) {
560 case _DRM_PRE_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -0800561 drm_vblank_pre_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700562 break;
563 case _DRM_POST_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -0800564 drm_vblank_post_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700565 break;
566 default:
567 ret = -EINVAL;
568 break;
569 }
570
571out:
572 return ret;
573}
574
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000575static int drm_queue_vblank_event(struct drm_device *dev, int pipe,
576 union drm_wait_vblank *vblwait,
577 struct drm_file *file_priv)
578{
579 struct drm_pending_vblank_event *e;
580 struct timeval now;
581 unsigned long flags;
582 unsigned int seq;
583
584 e = kzalloc(sizeof *e, GFP_KERNEL);
585 if (e == NULL)
586 return -ENOMEM;
587
588 e->pipe = pipe;
589 e->event.base.type = DRM_EVENT_VBLANK;
590 e->event.base.length = sizeof e->event;
591 e->event.user_data = vblwait->request.signal;
592 e->base.event = &e->event.base;
593 e->base.file_priv = file_priv;
594 e->base.destroy = (void (*) (struct drm_pending_event *)) kfree;
595
596 do_gettimeofday(&now);
597 spin_lock_irqsave(&dev->event_lock, flags);
598
599 if (file_priv->event_space < sizeof e->event) {
600 spin_unlock_irqrestore(&dev->event_lock, flags);
601 kfree(e);
602 return -ENOMEM;
603 }
604
605 file_priv->event_space -= sizeof e->event;
606 seq = drm_vblank_count(dev, pipe);
607 if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) &&
608 (seq - vblwait->request.sequence) <= (1 << 23)) {
609 vblwait->request.sequence = seq + 1;
Jesse Barnes4a921642009-11-10 08:21:25 +0000610 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000611 }
612
613 DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n",
614 vblwait->request.sequence, seq, pipe);
615
616 e->event.sequence = vblwait->request.sequence;
617 if ((seq - vblwait->request.sequence) <= (1 << 23)) {
618 e->event.tv_sec = now.tv_sec;
619 e->event.tv_usec = now.tv_usec;
620 drm_vblank_put(dev, e->pipe);
621 list_add_tail(&e->base.link, &e->base.file_priv->event_list);
622 wake_up_interruptible(&e->base.file_priv->event_wait);
623 } else {
624 list_add_tail(&e->base.link, &dev->vblank_event_list);
625 }
626
627 spin_unlock_irqrestore(&dev->event_lock, flags);
628
629 return 0;
630}
631
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700632/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 * Wait for VBLANK.
634 *
635 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000636 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 * \param cmd command.
638 * \param data user argument, pointing to a drm_wait_vblank structure.
639 * \return zero on success or a negative number on failure.
640 *
Eric Anholt30b23632009-01-27 21:19:41 -0800641 * This function enables the vblank interrupt on the pipe requested, then
642 * sleeps waiting for the requested sequence number to occur, and drops
643 * the vblank interrupt refcount afterwards. (vblank irq disable follows that
644 * after a timeout with no further vblank waits scheduled).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700646int drm_wait_vblank(struct drm_device *dev, void *data,
647 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Eric Anholtc153f452007-09-03 12:06:45 +1000649 union drm_wait_vblank *vblwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 int ret = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700651 unsigned int flags, seq, crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Eric Anholted4cb412008-07-29 12:10:39 -0700653 if ((!dev->pdev->irq) || (!dev->irq_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return -EINVAL;
655
Eric Anholt30b23632009-01-27 21:19:41 -0800656 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
657 return -EINVAL;
658
Eric Anholtc153f452007-09-03 12:06:45 +1000659 if (vblwait->request.type &
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000660 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) {
661 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000662 vblwait->request.type,
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000663 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK));
664 return -EINVAL;
665 }
666
Eric Anholtc153f452007-09-03 12:06:45 +1000667 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700668 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000669
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700670 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000671 return -EINVAL;
672
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700673 ret = drm_vblank_get(dev, crtc);
674 if (ret) {
Paul Rolland8d3457e2009-08-09 12:24:01 +1000675 DRM_DEBUG("failed to acquire vblank counter, %d\n", ret);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700676 return ret;
677 }
678 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000679
Eric Anholtc153f452007-09-03 12:06:45 +1000680 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +1000682 vblwait->request.sequence += seq;
683 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 case _DRM_VBLANK_ABSOLUTE:
685 break;
686 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700687 ret = -EINVAL;
688 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000691 if (flags & _DRM_VBLANK_EVENT)
692 return drm_queue_vblank_event(dev, crtc, vblwait, file_priv);
693
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +1000694 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +1000695 (seq - vblwait->request.sequence) <= (1<<23)) {
696 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +1000697 }
698
Eric Anholt30b23632009-01-27 21:19:41 -0800699 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
700 vblwait->request.sequence, crtc);
701 dev->last_vblank_wait[crtc] = vblwait->request.sequence;
702 DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ,
703 (((drm_vblank_count(dev, crtc) -
704 vblwait->request.sequence) <= (1 << 23)) ||
705 !dev->irq_enabled));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Eric Anholt30b23632009-01-27 21:19:41 -0800707 if (ret != -EINTR) {
708 struct timeval now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Eric Anholt30b23632009-01-27 21:19:41 -0800710 do_gettimeofday(&now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Eric Anholt30b23632009-01-27 21:19:41 -0800712 vblwait->reply.tval_sec = now.tv_sec;
713 vblwait->reply.tval_usec = now.tv_usec;
714 vblwait->reply.sequence = drm_vblank_count(dev, crtc);
715 DRM_DEBUG("returning %d to client\n",
716 vblwait->reply.sequence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 } else {
Eric Anholt30b23632009-01-27 21:19:41 -0800718 DRM_DEBUG("vblank wait interrupted by signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700721done:
722 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return ret;
724}
725
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000726void drm_handle_vblank_events(struct drm_device *dev, int crtc)
727{
728 struct drm_pending_vblank_event *e, *t;
729 struct timeval now;
730 unsigned long flags;
731 unsigned int seq;
732
733 do_gettimeofday(&now);
734 seq = drm_vblank_count(dev, crtc);
735
736 spin_lock_irqsave(&dev->event_lock, flags);
737
738 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
739 if (e->pipe != crtc)
740 continue;
741 if ((seq - e->event.sequence) > (1<<23))
742 continue;
743
744 DRM_DEBUG("vblank event on %d, current %d\n",
745 e->event.sequence, seq);
746
747 e->event.sequence = seq;
748 e->event.tv_sec = now.tv_sec;
749 e->event.tv_usec = now.tv_usec;
750 drm_vblank_put(dev, e->pipe);
751 list_move_tail(&e->base.link, &e->base.file_priv->event_list);
752 wake_up_interruptible(&e->base.file_priv->event_wait);
753 }
754
755 spin_unlock_irqrestore(&dev->event_lock, flags);
756}
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700759 * drm_handle_vblank - handle a vblank event
760 * @dev: DRM device
761 * @crtc: where this event occurred
762 *
763 * Drivers should call this routine in their vblank interrupt handlers to
764 * update the vblank counter and send any signals that may be pending.
765 */
766void drm_handle_vblank(struct drm_device *dev, int crtc)
767{
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000768 if (!dev->num_crtcs)
769 return;
770
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700771 atomic_inc(&dev->_vblank_count[crtc]);
772 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000773 drm_handle_vblank_events(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700774}
775EXPORT_SYMBOL(drm_handle_vblank);