blob: 722700d5d73ee69a6ac49d4fbd96d307f704c2bb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * IRQ support
4 *
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
7 */
8
9/*
10 * Created: Fri Mar 19 14:30:16 1999 by faith@valinux.com
11 *
12 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files (the "Software"),
18 * to deal in the Software without restriction, including without limitation
19 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * and/or sell copies of the Software, and to permit persons to whom the
21 * Software is furnished to do so, subject to the following conditions:
22 *
23 * The above copyright notice and this permission notice (including the next
24 * paragraph) shall be included in all copies or substantial portions of the
25 * Software.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
30 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
31 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
32 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33 * OTHER DEALINGS IN THE SOFTWARE.
34 */
35
36#include "drmP.h"
Jesse Barnesac2874b2010-07-01 16:47:31 -070037#include "drm_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <linux/interrupt.h> /* For task queue support */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Dave Airlie28d52042009-09-21 14:33:58 +100042#include <linux/vgaarb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/**
44 * Get interrupt from bus id.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100045 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100047 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * \param cmd command.
49 * \param arg user argument, pointing to a drm_irq_busid structure.
50 * \return zero on success or a negative number on failure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100051 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * Finds the PCI device with the specified bus id and gets its IRQ number.
53 * This IOCTL is deprecated, and will now return EINVAL for any busid not equal
54 * to that of the device that this DRM instance attached to.
55 */
Eric Anholtc153f452007-09-03 12:06:45 +100056int drm_irq_by_busid(struct drm_device *dev, void *data,
57 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Eric Anholtc153f452007-09-03 12:06:45 +100059 struct drm_irq_busid *p = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Jordan Crousedcdb1672010-05-27 13:40:25 -060061 if (drm_core_check_feature(dev, DRIVER_USE_PLATFORM_DEVICE))
62 return -EINVAL;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
65 return -EINVAL;
66
Eric Anholtc153f452007-09-03 12:06:45 +100067 if ((p->busnum >> 8) != drm_get_pci_domain(dev) ||
68 (p->busnum & 0xff) != dev->pdev->bus->number ||
69 p->devnum != PCI_SLOT(dev->pdev->devfn) || p->funcnum != PCI_FUNC(dev->pdev->devfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 return -EINVAL;
71
Eric Anholted4cb412008-07-29 12:10:39 -070072 p->irq = dev->pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Eric Anholtc153f452007-09-03 12:06:45 +100074 DRM_DEBUG("%d:%d:%d => IRQ %d\n", p->busnum, p->devnum, p->funcnum,
75 p->irq);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return 0;
78}
79
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070080static void vblank_disable_fn(unsigned long arg)
81{
82 struct drm_device *dev = (struct drm_device *)arg;
83 unsigned long irqflags;
84 int i;
85
86 if (!dev->vblank_disable_allowed)
87 return;
88
89 for (i = 0; i < dev->num_crtcs; i++) {
90 spin_lock_irqsave(&dev->vbl_lock, irqflags);
91 if (atomic_read(&dev->vblank_refcount[i]) == 0 &&
92 dev->vblank_enabled[i]) {
93 DRM_DEBUG("disabling vblank on crtc %d\n", i);
94 dev->last_vblank[i] =
95 dev->driver->get_vblank_counter(dev, i);
96 dev->driver->disable_vblank(dev, i);
97 dev->vblank_enabled[i] = 0;
98 }
99 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
100 }
101}
102
Keith Packard52440212008-11-18 09:30:25 -0800103void drm_vblank_cleanup(struct drm_device *dev)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700104{
105 /* Bail if the driver didn't call drm_vblank_init() */
106 if (dev->num_crtcs == 0)
107 return;
108
109 del_timer(&dev->vblank_disable_timer);
110
111 vblank_disable_fn((unsigned long)dev);
112
Eric Anholt9a298b22009-03-24 12:23:04 -0700113 kfree(dev->vbl_queue);
114 kfree(dev->_vblank_count);
115 kfree(dev->vblank_refcount);
116 kfree(dev->vblank_enabled);
117 kfree(dev->last_vblank);
118 kfree(dev->last_vblank_wait);
119 kfree(dev->vblank_inmodeset);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700120
121 dev->num_crtcs = 0;
122}
Jerome Glissee77cef92010-01-07 15:39:13 +0100123EXPORT_SYMBOL(drm_vblank_cleanup);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700124
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);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700132 dev->num_crtcs = num_crtcs;
133
Eric Anholt9a298b22009-03-24 12:23:04 -0700134 dev->vbl_queue = kmalloc(sizeof(wait_queue_head_t) * num_crtcs,
135 GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700136 if (!dev->vbl_queue)
137 goto err;
138
Eric Anholt9a298b22009-03-24 12:23:04 -0700139 dev->_vblank_count = kmalloc(sizeof(atomic_t) * num_crtcs, GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700140 if (!dev->_vblank_count)
141 goto err;
142
Eric Anholt9a298b22009-03-24 12:23:04 -0700143 dev->vblank_refcount = kmalloc(sizeof(atomic_t) * num_crtcs,
144 GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700145 if (!dev->vblank_refcount)
146 goto err;
147
Eric Anholt9a298b22009-03-24 12:23:04 -0700148 dev->vblank_enabled = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700149 if (!dev->vblank_enabled)
150 goto err;
151
Eric Anholt9a298b22009-03-24 12:23:04 -0700152 dev->last_vblank = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700153 if (!dev->last_vblank)
154 goto err;
155
Eric Anholt9a298b22009-03-24 12:23:04 -0700156 dev->last_vblank_wait = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL);
Eric Anholtfede5c92008-12-19 17:23:38 -0800157 if (!dev->last_vblank_wait)
158 goto err;
159
Eric Anholt9a298b22009-03-24 12:23:04 -0700160 dev->vblank_inmodeset = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700161 if (!dev->vblank_inmodeset)
162 goto err;
163
164 /* Zero per-crtc vblank stuff */
165 for (i = 0; i < num_crtcs; i++) {
166 init_waitqueue_head(&dev->vbl_queue[i]);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700167 atomic_set(&dev->_vblank_count[i], 0);
168 atomic_set(&dev->vblank_refcount[i], 0);
169 }
170
171 dev->vblank_disable_allowed = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700172 return 0;
173
174err:
175 drm_vblank_cleanup(dev);
176 return ret;
177}
178EXPORT_SYMBOL(drm_vblank_init);
179
Dave Airlie28d52042009-09-21 14:33:58 +1000180static void drm_irq_vgaarb_nokms(void *cookie, bool state)
181{
182 struct drm_device *dev = cookie;
183
184 if (dev->driver->vgaarb_irq) {
185 dev->driver->vgaarb_irq(dev, state);
186 return;
187 }
188
189 if (!dev->irq_enabled)
190 return;
191
192 if (state)
193 dev->driver->irq_uninstall(dev);
194 else {
195 dev->driver->irq_preinstall(dev);
196 dev->driver->irq_postinstall(dev);
197 }
198}
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/**
201 * Install IRQ handler.
202 *
203 * \param dev DRM device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700205 * Initializes the IRQ related data. Installs the handler, calling the driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions
207 * before and after the installation.
208 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700209int drm_irq_install(struct drm_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700211 int ret = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000212 unsigned long sh_flags = 0;
Dave Airlieb8da7de2009-06-02 16:50:35 +1000213 char *irqname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
216 return -EINVAL;
217
Jordan Crousedcdb1672010-05-27 13:40:25 -0600218 if (drm_dev_to_irq(dev) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return -EINVAL;
220
Dave Airlie30e2fb12006-02-02 19:37:46 +1100221 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /* Driver must have been initialized */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000224 if (!dev->dev_private) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100225 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return -EINVAL;
227 }
228
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000229 if (dev->irq_enabled) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100230 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return -EBUSY;
232 }
233 dev->irq_enabled = 1;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100234 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Jordan Crousedcdb1672010-05-27 13:40:25 -0600236 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000238 /* Before installing handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 dev->driver->irq_preinstall(dev);
240
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000241 /* Install handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
Thomas Gleixner935f6e32006-07-01 19:29:34 -0700243 sh_flags = IRQF_SHARED;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000244
Dave Airlieb8da7de2009-06-02 16:50:35 +1000245 if (dev->devname)
246 irqname = dev->devname;
247 else
248 irqname = dev->driver->name;
249
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700250 ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler,
Dave Airlieb8da7de2009-06-02 16:50:35 +1000251 sh_flags, irqname, dev);
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700252
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000253 if (ret < 0) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100254 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100256 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return ret;
258 }
259
Dave Airlie28d52042009-09-21 14:33:58 +1000260 if (!drm_core_check_feature(dev, DRIVER_MODESET))
261 vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL);
262
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000263 /* After installing handler */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700264 ret = dev->driver->irq_postinstall(dev);
265 if (ret < 0) {
266 mutex_lock(&dev->struct_mutex);
267 dev->irq_enabled = 0;
268 mutex_unlock(&dev->struct_mutex);
269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700271 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700273EXPORT_SYMBOL(drm_irq_install);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275/**
276 * Uninstall the IRQ handler.
277 *
278 * \param dev DRM device.
279 *
280 * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq.
281 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000282int drm_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800284 unsigned long irqflags;
285 int irq_enabled, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
288 return -EINVAL;
289
Dave Airlie30e2fb12006-02-02 19:37:46 +1100290 mutex_lock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 irq_enabled = dev->irq_enabled;
292 dev->irq_enabled = 0;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100293 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800295 /*
296 * Wake up any waiters so they don't hang.
297 */
298 spin_lock_irqsave(&dev->vbl_lock, irqflags);
299 for (i = 0; i < dev->num_crtcs; i++) {
300 DRM_WAKEUP(&dev->vbl_queue[i]);
301 dev->vblank_enabled[i] = 0;
Jesse Barnes14d200c2009-02-06 13:04:49 -0800302 dev->last_vblank[i] = dev->driver->get_vblank_counter(dev, i);
Jesse Barnesdc1336f2009-01-06 10:21:24 -0800303 }
304 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
305
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000306 if (!irq_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return -EINVAL;
308
Jordan Crousedcdb1672010-05-27 13:40:25 -0600309 DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Dave Airlie28d52042009-09-21 14:33:58 +1000311 if (!drm_core_check_feature(dev, DRIVER_MODESET))
312 vga_client_register(dev->pdev, NULL, NULL, NULL);
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 dev->driver->irq_uninstall(dev);
315
Jordan Crousedcdb1672010-05-27 13:40:25 -0600316 free_irq(drm_dev_to_irq(dev), dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 return 0;
319}
320EXPORT_SYMBOL(drm_irq_uninstall);
321
322/**
323 * IRQ control ioctl.
324 *
325 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000326 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 * \param cmd command.
328 * \param arg user argument, pointing to a drm_control structure.
329 * \return zero on success or a negative number on failure.
330 *
331 * Calls irq_install() or irq_uninstall() according to \p arg.
332 */
Eric Anholtc153f452007-09-03 12:06:45 +1000333int drm_control(struct drm_device *dev, void *data,
334 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Eric Anholtc153f452007-09-03 12:06:45 +1000336 struct drm_control *ctl = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 /* if we haven't irq we fallback for compatibility reasons - this used to be a separate function in drm_dma.h */
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Eric Anholtc153f452007-09-03 12:06:45 +1000341 switch (ctl->func) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 case DRM_INST_HANDLER:
343 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
344 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800345 if (drm_core_check_feature(dev, DRIVER_MODESET))
346 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
Jordan Crousedcdb1672010-05-27 13:40:25 -0600348 ctl->irq != drm_dev_to_irq(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return -EINVAL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000350 return drm_irq_install(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 case DRM_UNINST_HANDLER:
352 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
353 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800354 if (drm_core_check_feature(dev, DRIVER_MODESET))
355 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000356 return drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 default:
358 return -EINVAL;
359 }
360}
361
362/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700363 * drm_vblank_count - retrieve "cooked" vblank counter value
364 * @dev: DRM device
365 * @crtc: which counter to retrieve
366 *
367 * Fetches the "cooked" vblank count value that represents the number of
368 * vblank events since the system was booted, including lost events due to
369 * modesetting activity.
370 */
371u32 drm_vblank_count(struct drm_device *dev, int crtc)
372{
373 return atomic_read(&dev->_vblank_count[crtc]);
374}
375EXPORT_SYMBOL(drm_vblank_count);
376
377/**
378 * drm_update_vblank_count - update the master vblank counter
379 * @dev: DRM device
380 * @crtc: counter to update
381 *
382 * Call back into the driver to update the appropriate vblank counter
383 * (specified by @crtc). Deal with wraparound, if it occurred, and
384 * update the last read value so we can deal with wraparound on the next
385 * call if necessary.
386 *
387 * Only necessary when going from off->on, to account for frames we
388 * didn't get an interrupt for.
389 *
390 * Note: caller must hold dev->vbl_lock since this reads & writes
391 * device vblank fields.
392 */
393static void drm_update_vblank_count(struct drm_device *dev, int crtc)
394{
395 u32 cur_vblank, diff;
396
397 /*
398 * Interrupts were disabled prior to this call, so deal with counter
399 * wrap if needed.
400 * NOTE! It's possible we lost a full dev->max_vblank_count events
401 * here if the register is small or we had vblank interrupts off for
402 * a long time.
403 */
404 cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
405 diff = cur_vblank - dev->last_vblank[crtc];
406 if (cur_vblank < dev->last_vblank[crtc]) {
407 diff += dev->max_vblank_count;
408
409 DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n",
410 crtc, dev->last_vblank[crtc], cur_vblank, diff);
411 }
412
413 DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
414 crtc, diff);
415
416 atomic_add(diff, &dev->_vblank_count[crtc]);
417}
418
419/**
420 * drm_vblank_get - get a reference count on vblank events
421 * @dev: DRM device
422 * @crtc: which CRTC to own
423 *
424 * Acquire a reference count on vblank events to avoid having them disabled
425 * while in use.
426 *
427 * RETURNS
428 * Zero on success, nonzero on failure.
429 */
430int drm_vblank_get(struct drm_device *dev, int crtc)
431{
432 unsigned long irqflags;
433 int ret = 0;
434
435 spin_lock_irqsave(&dev->vbl_lock, irqflags);
436 /* Going from 0->1 means we have to enable interrupts again */
Li Peng778c9022009-11-09 12:51:22 +0800437 if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1) {
438 if (!dev->vblank_enabled[crtc]) {
439 ret = dev->driver->enable_vblank(dev, crtc);
440 DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n", crtc, ret);
441 if (ret)
442 atomic_dec(&dev->vblank_refcount[crtc]);
443 else {
444 dev->vblank_enabled[crtc] = 1;
445 drm_update_vblank_count(dev, crtc);
446 }
447 }
448 } else {
449 if (!dev->vblank_enabled[crtc]) {
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700450 atomic_dec(&dev->vblank_refcount[crtc]);
Li Peng778c9022009-11-09 12:51:22 +0800451 ret = -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700452 }
453 }
454 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
455
456 return ret;
457}
458EXPORT_SYMBOL(drm_vblank_get);
459
460/**
461 * drm_vblank_put - give up ownership of vblank events
462 * @dev: DRM device
463 * @crtc: which counter to give up
464 *
465 * Release ownership of a given vblank counter, turning off interrupts
466 * if possible.
467 */
468void drm_vblank_put(struct drm_device *dev, int crtc)
469{
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000470 BUG_ON (atomic_read (&dev->vblank_refcount[crtc]) == 0);
471
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700472 /* Last user schedules interrupt disable */
473 if (atomic_dec_and_test(&dev->vblank_refcount[crtc]))
474 mod_timer(&dev->vblank_disable_timer, jiffies + 5*DRM_HZ);
475}
476EXPORT_SYMBOL(drm_vblank_put);
477
Li Peng778c9022009-11-09 12:51:22 +0800478void drm_vblank_off(struct drm_device *dev, int crtc)
479{
480 unsigned long irqflags;
481
482 spin_lock_irqsave(&dev->vbl_lock, irqflags);
Jesse Barnese32ee7f2010-03-26 18:07:15 +0000483 dev->driver->disable_vblank(dev, crtc);
Li Peng778c9022009-11-09 12:51:22 +0800484 DRM_WAKEUP(&dev->vbl_queue[crtc]);
485 dev->vblank_enabled[crtc] = 0;
486 dev->last_vblank[crtc] = dev->driver->get_vblank_counter(dev, crtc);
487 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
488}
489EXPORT_SYMBOL(drm_vblank_off);
490
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700491/**
Dave Airlief453ba02008-11-07 14:05:41 -0800492 * drm_vblank_pre_modeset - account for vblanks across mode sets
493 * @dev: DRM device
494 * @crtc: CRTC in question
495 * @post: post or pre mode set?
496 *
497 * Account for vblank events across mode setting events, which will likely
498 * reset the hardware frame counter.
499 */
500void drm_vblank_pre_modeset(struct drm_device *dev, int crtc)
501{
Jerome Glissee77cef92010-01-07 15:39:13 +0100502 /* vblank is not initialized (IRQ not installed ?) */
503 if (!dev->num_crtcs)
504 return;
Dave Airlief453ba02008-11-07 14:05:41 -0800505 /*
506 * To avoid all the problems that might happen if interrupts
507 * were enabled/disabled around or between these calls, we just
508 * have the kernel take a reference on the CRTC (just once though
509 * to avoid corrupting the count if multiple, mismatch calls occur),
510 * so that interrupts remain enabled in the interim.
511 */
512 if (!dev->vblank_inmodeset[crtc]) {
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000513 dev->vblank_inmodeset[crtc] = 0x1;
514 if (drm_vblank_get(dev, crtc) == 0)
515 dev->vblank_inmodeset[crtc] |= 0x2;
Dave Airlief453ba02008-11-07 14:05:41 -0800516 }
517}
518EXPORT_SYMBOL(drm_vblank_pre_modeset);
519
520void drm_vblank_post_modeset(struct drm_device *dev, int crtc)
521{
522 unsigned long irqflags;
523
524 if (dev->vblank_inmodeset[crtc]) {
525 spin_lock_irqsave(&dev->vbl_lock, irqflags);
526 dev->vblank_disable_allowed = 1;
Dave Airlief453ba02008-11-07 14:05:41 -0800527 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
Chris Wilsonb3f5e732009-02-19 14:48:22 +0000528
529 if (dev->vblank_inmodeset[crtc] & 0x2)
530 drm_vblank_put(dev, crtc);
531
532 dev->vblank_inmodeset[crtc] = 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800533 }
534}
535EXPORT_SYMBOL(drm_vblank_post_modeset);
536
537/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700538 * drm_modeset_ctl - handle vblank event counter changes across mode switch
539 * @DRM_IOCTL_ARGS: standard ioctl arguments
540 *
541 * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET
542 * ioctls around modesetting so that any lost vblank events are accounted for.
543 *
544 * Generally the counter will reset across mode sets. If interrupts are
545 * enabled around this call, we don't have to do anything since the counter
546 * will have already been incremented.
547 */
548int drm_modeset_ctl(struct drm_device *dev, void *data,
549 struct drm_file *file_priv)
550{
551 struct drm_modeset_ctl *modeset = data;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700552 int crtc, ret = 0;
553
554 /* If drm_vblank_init() hasn't been called yet, just no-op */
555 if (!dev->num_crtcs)
556 goto out;
557
558 crtc = modeset->crtc;
559 if (crtc >= dev->num_crtcs) {
560 ret = -EINVAL;
561 goto out;
562 }
563
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700564 switch (modeset->cmd) {
565 case _DRM_PRE_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -0800566 drm_vblank_pre_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700567 break;
568 case _DRM_POST_MODESET:
Dave Airlief453ba02008-11-07 14:05:41 -0800569 drm_vblank_post_modeset(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700570 break;
571 default:
572 ret = -EINVAL;
573 break;
574 }
575
576out:
577 return ret;
578}
579
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000580static int drm_queue_vblank_event(struct drm_device *dev, int pipe,
581 union drm_wait_vblank *vblwait,
582 struct drm_file *file_priv)
583{
584 struct drm_pending_vblank_event *e;
585 struct timeval now;
586 unsigned long flags;
587 unsigned int seq;
Chris Wilsonea5d5522010-12-01 19:41:31 +0000588 int ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000589
590 e = kzalloc(sizeof *e, GFP_KERNEL);
Chris Wilsonea5d5522010-12-01 19:41:31 +0000591 if (e == NULL) {
592 ret = -ENOMEM;
593 goto err_put;
594 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000595
596 e->pipe = pipe;
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -0700597 e->base.pid = current->pid;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000598 e->event.base.type = DRM_EVENT_VBLANK;
599 e->event.base.length = sizeof e->event;
600 e->event.user_data = vblwait->request.signal;
601 e->base.event = &e->event.base;
602 e->base.file_priv = file_priv;
603 e->base.destroy = (void (*) (struct drm_pending_event *)) kfree;
604
605 do_gettimeofday(&now);
606 spin_lock_irqsave(&dev->event_lock, flags);
607
608 if (file_priv->event_space < sizeof e->event) {
Chris Wilsonea5d5522010-12-01 19:41:31 +0000609 ret = -EBUSY;
610 goto err_unlock;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000611 }
612
613 file_priv->event_space -= sizeof e->event;
614 seq = drm_vblank_count(dev, pipe);
615 if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) &&
616 (seq - vblwait->request.sequence) <= (1 << 23)) {
617 vblwait->request.sequence = seq + 1;
Jesse Barnes4a921642009-11-10 08:21:25 +0000618 vblwait->reply.sequence = vblwait->request.sequence;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000619 }
620
621 DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n",
622 vblwait->request.sequence, seq, pipe);
623
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -0700624 trace_drm_vblank_event_queued(current->pid, pipe,
625 vblwait->request.sequence);
626
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000627 e->event.sequence = vblwait->request.sequence;
628 if ((seq - vblwait->request.sequence) <= (1 << 23)) {
629 e->event.tv_sec = now.tv_sec;
630 e->event.tv_usec = now.tv_usec;
631 drm_vblank_put(dev, e->pipe);
632 list_add_tail(&e->base.link, &e->base.file_priv->event_list);
633 wake_up_interruptible(&e->base.file_priv->event_wait);
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -0700634 trace_drm_vblank_event_delivered(current->pid, pipe,
635 vblwait->request.sequence);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000636 } else {
637 list_add_tail(&e->base.link, &dev->vblank_event_list);
638 }
639
640 spin_unlock_irqrestore(&dev->event_lock, flags);
641
642 return 0;
Chris Wilsonea5d5522010-12-01 19:41:31 +0000643
644err_unlock:
645 spin_unlock_irqrestore(&dev->event_lock, flags);
646 kfree(e);
647err_put:
648 drm_vblank_put(dev, e->pipe);
649 return ret;
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000650}
651
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700652/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 * Wait for VBLANK.
654 *
655 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000656 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 * \param cmd command.
658 * \param data user argument, pointing to a drm_wait_vblank structure.
659 * \return zero on success or a negative number on failure.
660 *
Eric Anholt30b23632009-01-27 21:19:41 -0800661 * This function enables the vblank interrupt on the pipe requested, then
662 * sleeps waiting for the requested sequence number to occur, and drops
663 * the vblank interrupt refcount afterwards. (vblank irq disable follows that
664 * after a timeout with no further vblank waits scheduled).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700666int drm_wait_vblank(struct drm_device *dev, void *data,
667 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Eric Anholtc153f452007-09-03 12:06:45 +1000669 union drm_wait_vblank *vblwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 int ret = 0;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700671 unsigned int flags, seq, crtc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Jordan Crousedcdb1672010-05-27 13:40:25 -0600673 if ((!drm_dev_to_irq(dev)) || (!dev->irq_enabled))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return -EINVAL;
675
Eric Anholt30b23632009-01-27 21:19:41 -0800676 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
677 return -EINVAL;
678
Eric Anholtc153f452007-09-03 12:06:45 +1000679 if (vblwait->request.type &
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000680 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) {
681 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000682 vblwait->request.type,
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000683 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK));
684 return -EINVAL;
685 }
686
Eric Anholtc153f452007-09-03 12:06:45 +1000687 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700688 crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000689
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700690 if (crtc >= dev->num_crtcs)
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000691 return -EINVAL;
692
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700693 ret = drm_vblank_get(dev, crtc);
694 if (ret) {
Paul Rolland8d3457e2009-08-09 12:24:01 +1000695 DRM_DEBUG("failed to acquire vblank counter, %d\n", ret);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700696 return ret;
697 }
698 seq = drm_vblank_count(dev, crtc);
=?utf-8?q?Michel_D=C3=A4nzer?=776c9442006-10-24 22:24:38 +1000699
Eric Anholtc153f452007-09-03 12:06:45 +1000700 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 case _DRM_VBLANK_RELATIVE:
Eric Anholtc153f452007-09-03 12:06:45 +1000702 vblwait->request.sequence += seq;
703 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 case _DRM_VBLANK_ABSOLUTE:
705 break;
706 default:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700707 ret = -EINVAL;
708 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000711 if (flags & _DRM_VBLANK_EVENT)
712 return drm_queue_vblank_event(dev, crtc, vblwait, file_priv);
713
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +1000714 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
Eric Anholtc153f452007-09-03 12:06:45 +1000715 (seq - vblwait->request.sequence) <= (1<<23)) {
716 vblwait->request.sequence = seq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=ab285d72006-10-24 23:34:18 +1000717 }
718
Eric Anholt30b23632009-01-27 21:19:41 -0800719 DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
720 vblwait->request.sequence, crtc);
721 dev->last_vblank_wait[crtc] = vblwait->request.sequence;
722 DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ,
723 (((drm_vblank_count(dev, crtc) -
724 vblwait->request.sequence) <= (1 << 23)) ||
725 !dev->irq_enabled));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Eric Anholt30b23632009-01-27 21:19:41 -0800727 if (ret != -EINTR) {
728 struct timeval now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Eric Anholt30b23632009-01-27 21:19:41 -0800730 do_gettimeofday(&now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Eric Anholt30b23632009-01-27 21:19:41 -0800732 vblwait->reply.tval_sec = now.tv_sec;
733 vblwait->reply.tval_usec = now.tv_usec;
734 vblwait->reply.sequence = drm_vblank_count(dev, crtc);
735 DRM_DEBUG("returning %d to client\n",
736 vblwait->reply.sequence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 } else {
Eric Anholt30b23632009-01-27 21:19:41 -0800738 DRM_DEBUG("vblank wait interrupted by signal\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700741done:
742 drm_vblank_put(dev, crtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return ret;
744}
745
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000746void drm_handle_vblank_events(struct drm_device *dev, int crtc)
747{
748 struct drm_pending_vblank_event *e, *t;
749 struct timeval now;
750 unsigned long flags;
751 unsigned int seq;
752
753 do_gettimeofday(&now);
754 seq = drm_vblank_count(dev, crtc);
755
756 spin_lock_irqsave(&dev->event_lock, flags);
757
758 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
759 if (e->pipe != crtc)
760 continue;
761 if ((seq - e->event.sequence) > (1<<23))
762 continue;
763
764 DRM_DEBUG("vblank event on %d, current %d\n",
765 e->event.sequence, seq);
766
767 e->event.sequence = seq;
768 e->event.tv_sec = now.tv_sec;
769 e->event.tv_usec = now.tv_usec;
770 drm_vblank_put(dev, e->pipe);
771 list_move_tail(&e->base.link, &e->base.file_priv->event_list);
772 wake_up_interruptible(&e->base.file_priv->event_wait);
Jesse Barnesb9c2c9a2010-07-01 16:48:09 -0700773 trace_drm_vblank_event_delivered(e->base.pid, e->pipe,
774 e->event.sequence);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000775 }
776
777 spin_unlock_irqrestore(&dev->event_lock, flags);
Jesse Barnesac2874b2010-07-01 16:47:31 -0700778
779 trace_drm_vblank_event(crtc, seq);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700783 * drm_handle_vblank - handle a vblank event
784 * @dev: DRM device
785 * @crtc: where this event occurred
786 *
787 * Drivers should call this routine in their vblank interrupt handlers to
788 * update the vblank counter and send any signals that may be pending.
789 */
790void drm_handle_vblank(struct drm_device *dev, int crtc)
791{
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000792 if (!dev->num_crtcs)
793 return;
794
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700795 atomic_inc(&dev->_vblank_count[crtc]);
796 DRM_WAKEUP(&dev->vbl_queue[crtc]);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000797 drm_handle_vblank_events(dev, crtc);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700798}
799EXPORT_SYMBOL(drm_handle_vblank);