Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /** |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 2 | * \file drm_irq.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * IRQ support |
| 4 | * |
| 5 | * \author Rickard E. (Rik) Faith <faith@valinux.com> |
| 6 | * \author Gareth Hughes <gareth@valinux.com> |
| 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * Created: Fri Mar 19 14:30:16 1999 by faith@valinux.com |
| 11 | * |
| 12 | * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas. |
| 13 | * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. |
| 14 | * All Rights Reserved. |
| 15 | * |
| 16 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 17 | * copy of this software and associated documentation files (the "Software"), |
| 18 | * to deal in the Software without restriction, including without limitation |
| 19 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 20 | * and/or sell copies of the Software, and to permit persons to whom the |
| 21 | * Software is furnished to do so, subject to the following conditions: |
| 22 | * |
| 23 | * The above copyright notice and this permission notice (including the next |
| 24 | * paragraph) shall be included in all copies or substantial portions of the |
| 25 | * Software. |
| 26 | * |
| 27 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 28 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 29 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 30 | * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 31 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 32 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 33 | * OTHER DEALINGS IN THE SOFTWARE. |
| 34 | */ |
| 35 | |
| 36 | #include "drmP.h" |
| 37 | |
| 38 | #include <linux/interrupt.h> /* For task queue support */ |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 39 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 41 | #include <linux/vgaarb.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | /** |
| 43 | * Get interrupt from bus id. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 44 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 46 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | * \param cmd command. |
| 48 | * \param arg user argument, pointing to a drm_irq_busid structure. |
| 49 | * \return zero on success or a negative number on failure. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 50 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | * Finds the PCI device with the specified bus id and gets its IRQ number. |
| 52 | * This IOCTL is deprecated, and will now return EINVAL for any busid not equal |
| 53 | * to that of the device that this DRM instance attached to. |
| 54 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 55 | int drm_irq_by_busid(struct drm_device *dev, void *data, |
| 56 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 58 | struct drm_irq_busid *p = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 61 | return -EINVAL; |
| 62 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 63 | if ((p->busnum >> 8) != drm_get_pci_domain(dev) || |
| 64 | (p->busnum & 0xff) != dev->pdev->bus->number || |
| 65 | p->devnum != PCI_SLOT(dev->pdev->devfn) || p->funcnum != PCI_FUNC(dev->pdev->devfn)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | return -EINVAL; |
| 67 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 68 | p->irq = dev->pdev->irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 70 | DRM_DEBUG("%d:%d:%d => IRQ %d\n", p->busnum, p->devnum, p->funcnum, |
| 71 | p->irq); |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | return 0; |
| 74 | } |
| 75 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 76 | static void vblank_disable_fn(unsigned long arg) |
| 77 | { |
| 78 | struct drm_device *dev = (struct drm_device *)arg; |
| 79 | unsigned long irqflags; |
| 80 | int i; |
| 81 | |
| 82 | if (!dev->vblank_disable_allowed) |
| 83 | return; |
| 84 | |
| 85 | for (i = 0; i < dev->num_crtcs; i++) { |
| 86 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
| 87 | if (atomic_read(&dev->vblank_refcount[i]) == 0 && |
| 88 | dev->vblank_enabled[i]) { |
| 89 | DRM_DEBUG("disabling vblank on crtc %d\n", i); |
| 90 | dev->last_vblank[i] = |
| 91 | dev->driver->get_vblank_counter(dev, i); |
| 92 | dev->driver->disable_vblank(dev, i); |
| 93 | dev->vblank_enabled[i] = 0; |
| 94 | } |
| 95 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
| 96 | } |
| 97 | } |
| 98 | |
Keith Packard | 5244021 | 2008-11-18 09:30:25 -0800 | [diff] [blame] | 99 | void drm_vblank_cleanup(struct drm_device *dev) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 100 | { |
| 101 | /* Bail if the driver didn't call drm_vblank_init() */ |
| 102 | if (dev->num_crtcs == 0) |
| 103 | return; |
| 104 | |
| 105 | del_timer(&dev->vblank_disable_timer); |
| 106 | |
| 107 | vblank_disable_fn((unsigned long)dev); |
| 108 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 109 | kfree(dev->vbl_queue); |
| 110 | kfree(dev->_vblank_count); |
| 111 | kfree(dev->vblank_refcount); |
| 112 | kfree(dev->vblank_enabled); |
| 113 | kfree(dev->last_vblank); |
| 114 | kfree(dev->last_vblank_wait); |
| 115 | kfree(dev->vblank_inmodeset); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 116 | |
| 117 | dev->num_crtcs = 0; |
| 118 | } |
Jerome Glisse | e77cef9 | 2010-01-07 15:39:13 +0100 | [diff] [blame] | 119 | EXPORT_SYMBOL(drm_vblank_cleanup); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 120 | |
| 121 | int drm_vblank_init(struct drm_device *dev, int num_crtcs) |
| 122 | { |
| 123 | int i, ret = -ENOMEM; |
| 124 | |
| 125 | setup_timer(&dev->vblank_disable_timer, vblank_disable_fn, |
| 126 | (unsigned long)dev); |
| 127 | spin_lock_init(&dev->vbl_lock); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 128 | dev->num_crtcs = num_crtcs; |
| 129 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 130 | dev->vbl_queue = kmalloc(sizeof(wait_queue_head_t) * num_crtcs, |
| 131 | GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 132 | if (!dev->vbl_queue) |
| 133 | goto err; |
| 134 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 135 | dev->_vblank_count = kmalloc(sizeof(atomic_t) * num_crtcs, GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 136 | if (!dev->_vblank_count) |
| 137 | goto err; |
| 138 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 139 | dev->vblank_refcount = kmalloc(sizeof(atomic_t) * num_crtcs, |
| 140 | GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 141 | if (!dev->vblank_refcount) |
| 142 | goto err; |
| 143 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 144 | dev->vblank_enabled = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 145 | if (!dev->vblank_enabled) |
| 146 | goto err; |
| 147 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 148 | dev->last_vblank = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 149 | if (!dev->last_vblank) |
| 150 | goto err; |
| 151 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 152 | dev->last_vblank_wait = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL); |
Eric Anholt | fede5c9 | 2008-12-19 17:23:38 -0800 | [diff] [blame] | 153 | if (!dev->last_vblank_wait) |
| 154 | goto err; |
| 155 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 156 | dev->vblank_inmodeset = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 157 | if (!dev->vblank_inmodeset) |
| 158 | goto err; |
| 159 | |
| 160 | /* Zero per-crtc vblank stuff */ |
| 161 | for (i = 0; i < num_crtcs; i++) { |
| 162 | init_waitqueue_head(&dev->vbl_queue[i]); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 163 | atomic_set(&dev->_vblank_count[i], 0); |
| 164 | atomic_set(&dev->vblank_refcount[i], 0); |
| 165 | } |
| 166 | |
| 167 | dev->vblank_disable_allowed = 0; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 168 | return 0; |
| 169 | |
| 170 | err: |
| 171 | drm_vblank_cleanup(dev); |
| 172 | return ret; |
| 173 | } |
| 174 | EXPORT_SYMBOL(drm_vblank_init); |
| 175 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 176 | static void drm_irq_vgaarb_nokms(void *cookie, bool state) |
| 177 | { |
| 178 | struct drm_device *dev = cookie; |
| 179 | |
| 180 | if (dev->driver->vgaarb_irq) { |
| 181 | dev->driver->vgaarb_irq(dev, state); |
| 182 | return; |
| 183 | } |
| 184 | |
| 185 | if (!dev->irq_enabled) |
| 186 | return; |
| 187 | |
| 188 | if (state) |
| 189 | dev->driver->irq_uninstall(dev); |
| 190 | else { |
| 191 | dev->driver->irq_preinstall(dev); |
| 192 | dev->driver->irq_postinstall(dev); |
| 193 | } |
| 194 | } |
| 195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | /** |
| 197 | * Install IRQ handler. |
| 198 | * |
| 199 | * \param dev DRM device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | * |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 201 | * Initializes the IRQ related data. Installs the handler, calling the driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions |
| 203 | * before and after the installation. |
| 204 | */ |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 205 | int drm_irq_install(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 207 | int ret = 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 208 | unsigned long sh_flags = 0; |
Dave Airlie | b8da7de | 2009-06-02 16:50:35 +1000 | [diff] [blame] | 209 | char *irqname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
| 211 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 212 | return -EINVAL; |
| 213 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 214 | if (dev->pdev->irq == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | return -EINVAL; |
| 216 | |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 217 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
| 219 | /* Driver must have been initialized */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 220 | if (!dev->dev_private) { |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 221 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | return -EINVAL; |
| 223 | } |
| 224 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 225 | if (dev->irq_enabled) { |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 226 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | return -EBUSY; |
| 228 | } |
| 229 | dev->irq_enabled = 1; |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 230 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 232 | DRM_DEBUG("irq=%d\n", dev->pdev->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 234 | /* Before installing handler */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | dev->driver->irq_preinstall(dev); |
| 236 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 237 | /* Install handler */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED)) |
Thomas Gleixner | 935f6e3 | 2006-07-01 19:29:34 -0700 | [diff] [blame] | 239 | sh_flags = IRQF_SHARED; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 240 | |
Dave Airlie | b8da7de | 2009-06-02 16:50:35 +1000 | [diff] [blame] | 241 | if (dev->devname) |
| 242 | irqname = dev->devname; |
| 243 | else |
| 244 | irqname = dev->driver->name; |
| 245 | |
Jesse Barnes | 9bfbd5c | 2008-09-15 15:00:33 -0700 | [diff] [blame] | 246 | ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler, |
Dave Airlie | b8da7de | 2009-06-02 16:50:35 +1000 | [diff] [blame] | 247 | sh_flags, irqname, dev); |
Jesse Barnes | 9bfbd5c | 2008-09-15 15:00:33 -0700 | [diff] [blame] | 248 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 249 | if (ret < 0) { |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 250 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | dev->irq_enabled = 0; |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 252 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | return ret; |
| 254 | } |
| 255 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 256 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 257 | vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL); |
| 258 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 259 | /* After installing handler */ |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 260 | ret = dev->driver->irq_postinstall(dev); |
| 261 | if (ret < 0) { |
| 262 | mutex_lock(&dev->struct_mutex); |
| 263 | dev->irq_enabled = 0; |
| 264 | mutex_unlock(&dev->struct_mutex); |
| 265 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 267 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 269 | EXPORT_SYMBOL(drm_irq_install); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
| 271 | /** |
| 272 | * Uninstall the IRQ handler. |
| 273 | * |
| 274 | * \param dev DRM device. |
| 275 | * |
| 276 | * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq. |
| 277 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 278 | int drm_irq_uninstall(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | { |
Jesse Barnes | dc1336f | 2009-01-06 10:21:24 -0800 | [diff] [blame] | 280 | unsigned long irqflags; |
| 281 | int irq_enabled, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
| 283 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 284 | return -EINVAL; |
| 285 | |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 286 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | irq_enabled = dev->irq_enabled; |
| 288 | dev->irq_enabled = 0; |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 289 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Jesse Barnes | dc1336f | 2009-01-06 10:21:24 -0800 | [diff] [blame] | 291 | /* |
| 292 | * Wake up any waiters so they don't hang. |
| 293 | */ |
| 294 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
| 295 | for (i = 0; i < dev->num_crtcs; i++) { |
| 296 | DRM_WAKEUP(&dev->vbl_queue[i]); |
| 297 | dev->vblank_enabled[i] = 0; |
Jesse Barnes | 14d200c | 2009-02-06 13:04:49 -0800 | [diff] [blame] | 298 | dev->last_vblank[i] = dev->driver->get_vblank_counter(dev, i); |
Jesse Barnes | dc1336f | 2009-01-06 10:21:24 -0800 | [diff] [blame] | 299 | } |
| 300 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
| 301 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 302 | if (!irq_enabled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | return -EINVAL; |
| 304 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 305 | DRM_DEBUG("irq=%d\n", dev->pdev->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 307 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 308 | vga_client_register(dev->pdev, NULL, NULL, NULL); |
| 309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | dev->driver->irq_uninstall(dev); |
| 311 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 312 | free_irq(dev->pdev->irq, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
| 314 | return 0; |
| 315 | } |
| 316 | EXPORT_SYMBOL(drm_irq_uninstall); |
| 317 | |
| 318 | /** |
| 319 | * IRQ control ioctl. |
| 320 | * |
| 321 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 322 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | * \param cmd command. |
| 324 | * \param arg user argument, pointing to a drm_control structure. |
| 325 | * \return zero on success or a negative number on failure. |
| 326 | * |
| 327 | * Calls irq_install() or irq_uninstall() according to \p arg. |
| 328 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 329 | int drm_control(struct drm_device *dev, void *data, |
| 330 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 332 | struct drm_control *ctl = data; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | /* if we haven't irq we fallback for compatibility reasons - this used to be a separate function in drm_dma.h */ |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 337 | switch (ctl->func) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | case DRM_INST_HANDLER: |
| 339 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 340 | return 0; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 341 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 342 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | if (dev->if_version < DRM_IF_VERSION(1, 2) && |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 344 | ctl->irq != dev->pdev->irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | return -EINVAL; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 346 | return drm_irq_install(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | case DRM_UNINST_HANDLER: |
| 348 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 349 | return 0; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 350 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 351 | return 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 352 | return drm_irq_uninstall(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | default: |
| 354 | return -EINVAL; |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 359 | * drm_vblank_count - retrieve "cooked" vblank counter value |
| 360 | * @dev: DRM device |
| 361 | * @crtc: which counter to retrieve |
| 362 | * |
| 363 | * Fetches the "cooked" vblank count value that represents the number of |
| 364 | * vblank events since the system was booted, including lost events due to |
| 365 | * modesetting activity. |
| 366 | */ |
| 367 | u32 drm_vblank_count(struct drm_device *dev, int crtc) |
| 368 | { |
| 369 | return atomic_read(&dev->_vblank_count[crtc]); |
| 370 | } |
| 371 | EXPORT_SYMBOL(drm_vblank_count); |
| 372 | |
| 373 | /** |
| 374 | * drm_update_vblank_count - update the master vblank counter |
| 375 | * @dev: DRM device |
| 376 | * @crtc: counter to update |
| 377 | * |
| 378 | * Call back into the driver to update the appropriate vblank counter |
| 379 | * (specified by @crtc). Deal with wraparound, if it occurred, and |
| 380 | * update the last read value so we can deal with wraparound on the next |
| 381 | * call if necessary. |
| 382 | * |
| 383 | * Only necessary when going from off->on, to account for frames we |
| 384 | * didn't get an interrupt for. |
| 385 | * |
| 386 | * Note: caller must hold dev->vbl_lock since this reads & writes |
| 387 | * device vblank fields. |
| 388 | */ |
| 389 | static void drm_update_vblank_count(struct drm_device *dev, int crtc) |
| 390 | { |
| 391 | u32 cur_vblank, diff; |
| 392 | |
| 393 | /* |
| 394 | * Interrupts were disabled prior to this call, so deal with counter |
| 395 | * wrap if needed. |
| 396 | * NOTE! It's possible we lost a full dev->max_vblank_count events |
| 397 | * here if the register is small or we had vblank interrupts off for |
| 398 | * a long time. |
| 399 | */ |
| 400 | cur_vblank = dev->driver->get_vblank_counter(dev, crtc); |
| 401 | diff = cur_vblank - dev->last_vblank[crtc]; |
| 402 | if (cur_vblank < dev->last_vblank[crtc]) { |
| 403 | diff += dev->max_vblank_count; |
| 404 | |
| 405 | DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n", |
| 406 | crtc, dev->last_vblank[crtc], cur_vblank, diff); |
| 407 | } |
| 408 | |
| 409 | DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n", |
| 410 | crtc, diff); |
| 411 | |
| 412 | atomic_add(diff, &dev->_vblank_count[crtc]); |
| 413 | } |
| 414 | |
| 415 | /** |
| 416 | * drm_vblank_get - get a reference count on vblank events |
| 417 | * @dev: DRM device |
| 418 | * @crtc: which CRTC to own |
| 419 | * |
| 420 | * Acquire a reference count on vblank events to avoid having them disabled |
| 421 | * while in use. |
| 422 | * |
| 423 | * RETURNS |
| 424 | * Zero on success, nonzero on failure. |
| 425 | */ |
| 426 | int drm_vblank_get(struct drm_device *dev, int crtc) |
| 427 | { |
| 428 | unsigned long irqflags; |
| 429 | int ret = 0; |
| 430 | |
| 431 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
| 432 | /* Going from 0->1 means we have to enable interrupts again */ |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 433 | if (atomic_add_return(1, &dev->vblank_refcount[crtc]) == 1) { |
| 434 | if (!dev->vblank_enabled[crtc]) { |
| 435 | ret = dev->driver->enable_vblank(dev, crtc); |
| 436 | DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n", crtc, ret); |
| 437 | if (ret) |
| 438 | atomic_dec(&dev->vblank_refcount[crtc]); |
| 439 | else { |
| 440 | dev->vblank_enabled[crtc] = 1; |
| 441 | drm_update_vblank_count(dev, crtc); |
| 442 | } |
| 443 | } |
| 444 | } else { |
| 445 | if (!dev->vblank_enabled[crtc]) { |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 446 | atomic_dec(&dev->vblank_refcount[crtc]); |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 447 | ret = -EINVAL; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 448 | } |
| 449 | } |
| 450 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
| 451 | |
| 452 | return ret; |
| 453 | } |
| 454 | EXPORT_SYMBOL(drm_vblank_get); |
| 455 | |
| 456 | /** |
| 457 | * drm_vblank_put - give up ownership of vblank events |
| 458 | * @dev: DRM device |
| 459 | * @crtc: which counter to give up |
| 460 | * |
| 461 | * Release ownership of a given vblank counter, turning off interrupts |
| 462 | * if possible. |
| 463 | */ |
| 464 | void drm_vblank_put(struct drm_device *dev, int crtc) |
| 465 | { |
Chris Wilson | b3f5e73 | 2009-02-19 14:48:22 +0000 | [diff] [blame] | 466 | BUG_ON (atomic_read (&dev->vblank_refcount[crtc]) == 0); |
| 467 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 468 | /* Last user schedules interrupt disable */ |
| 469 | if (atomic_dec_and_test(&dev->vblank_refcount[crtc])) |
| 470 | mod_timer(&dev->vblank_disable_timer, jiffies + 5*DRM_HZ); |
| 471 | } |
| 472 | EXPORT_SYMBOL(drm_vblank_put); |
| 473 | |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 474 | void drm_vblank_off(struct drm_device *dev, int crtc) |
| 475 | { |
| 476 | unsigned long irqflags; |
| 477 | |
| 478 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
| 479 | 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 | } |
| 484 | EXPORT_SYMBOL(drm_vblank_off); |
| 485 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 486 | /** |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 487 | * 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 | */ |
| 495 | void drm_vblank_pre_modeset(struct drm_device *dev, int crtc) |
| 496 | { |
Jerome Glisse | e77cef9 | 2010-01-07 15:39:13 +0100 | [diff] [blame] | 497 | /* vblank is not initialized (IRQ not installed ?) */ |
| 498 | if (!dev->num_crtcs) |
| 499 | return; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 500 | /* |
| 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 Wilson | b3f5e73 | 2009-02-19 14:48:22 +0000 | [diff] [blame] | 508 | dev->vblank_inmodeset[crtc] = 0x1; |
| 509 | if (drm_vblank_get(dev, crtc) == 0) |
| 510 | dev->vblank_inmodeset[crtc] |= 0x2; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 511 | } |
| 512 | } |
| 513 | EXPORT_SYMBOL(drm_vblank_pre_modeset); |
| 514 | |
| 515 | void 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 Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 522 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
Chris Wilson | b3f5e73 | 2009-02-19 14:48:22 +0000 | [diff] [blame] | 523 | |
| 524 | if (dev->vblank_inmodeset[crtc] & 0x2) |
| 525 | drm_vblank_put(dev, crtc); |
| 526 | |
| 527 | dev->vblank_inmodeset[crtc] = 0; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 528 | } |
| 529 | } |
| 530 | EXPORT_SYMBOL(drm_vblank_post_modeset); |
| 531 | |
| 532 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 533 | * 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 | */ |
| 543 | int drm_modeset_ctl(struct drm_device *dev, void *data, |
| 544 | struct drm_file *file_priv) |
| 545 | { |
| 546 | struct drm_modeset_ctl *modeset = data; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 547 | 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 Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 559 | switch (modeset->cmd) { |
| 560 | case _DRM_PRE_MODESET: |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 561 | drm_vblank_pre_modeset(dev, crtc); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 562 | break; |
| 563 | case _DRM_POST_MODESET: |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 564 | drm_vblank_post_modeset(dev, crtc); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 565 | break; |
| 566 | default: |
| 567 | ret = -EINVAL; |
| 568 | break; |
| 569 | } |
| 570 | |
| 571 | out: |
| 572 | return ret; |
| 573 | } |
| 574 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 575 | static 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 Barnes | 4a92164 | 2009-11-10 08:21:25 +0000 | [diff] [blame] | 610 | vblwait->reply.sequence = vblwait->request.sequence; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 611 | } |
| 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 Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 632 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | * Wait for VBLANK. |
| 634 | * |
| 635 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 636 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | * \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 Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 641 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | */ |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 646 | int drm_wait_vblank(struct drm_device *dev, void *data, |
| 647 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 649 | union drm_wait_vblank *vblwait = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | int ret = 0; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 651 | unsigned int flags, seq, crtc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 653 | if ((!dev->pdev->irq) || (!dev->irq_enabled)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | return -EINVAL; |
| 655 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 656 | if (vblwait->request.type & _DRM_VBLANK_SIGNAL) |
| 657 | return -EINVAL; |
| 658 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 659 | if (vblwait->request.type & |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 660 | ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) { |
| 661 | DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n", |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 662 | vblwait->request.type, |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 663 | (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)); |
| 664 | return -EINVAL; |
| 665 | } |
| 666 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 667 | flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 668 | crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0; |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 669 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 670 | if (crtc >= dev->num_crtcs) |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 671 | return -EINVAL; |
| 672 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 673 | ret = drm_vblank_get(dev, crtc); |
| 674 | if (ret) { |
Paul Rolland | 8d3457e | 2009-08-09 12:24:01 +1000 | [diff] [blame] | 675 | DRM_DEBUG("failed to acquire vblank counter, %d\n", ret); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 676 | return ret; |
| 677 | } |
| 678 | seq = drm_vblank_count(dev, crtc); |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 679 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 680 | switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | case _DRM_VBLANK_RELATIVE: |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 682 | vblwait->request.sequence += seq; |
| 683 | vblwait->request.type &= ~_DRM_VBLANK_RELATIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | case _DRM_VBLANK_ABSOLUTE: |
| 685 | break; |
| 686 | default: |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 687 | ret = -EINVAL; |
| 688 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | } |
| 690 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 691 | if (flags & _DRM_VBLANK_EVENT) |
| 692 | return drm_queue_vblank_event(dev, crtc, vblwait, file_priv); |
| 693 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | ab285d7 | 2006-10-24 23:34:18 +1000 | [diff] [blame] | 694 | if ((flags & _DRM_VBLANK_NEXTONMISS) && |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 695 | (seq - vblwait->request.sequence) <= (1<<23)) { |
| 696 | vblwait->request.sequence = seq + 1; |
=?utf-8?q?Michel_D=C3=A4nzer?= | ab285d7 | 2006-10-24 23:34:18 +1000 | [diff] [blame] | 697 | } |
| 698 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 699 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 707 | if (ret != -EINTR) { |
| 708 | struct timeval now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 710 | do_gettimeofday(&now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 712 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | } else { |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 718 | DRM_DEBUG("vblank wait interrupted by signal\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | } |
| 720 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 721 | done: |
| 722 | drm_vblank_put(dev, crtc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | return ret; |
| 724 | } |
| 725 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 726 | void 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 759 | * 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 | */ |
| 766 | void drm_handle_vblank(struct drm_device *dev, int crtc) |
| 767 | { |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 768 | if (!dev->num_crtcs) |
| 769 | return; |
| 770 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 771 | atomic_inc(&dev->_vblank_count[crtc]); |
| 772 | DRM_WAKEUP(&dev->vbl_queue[crtc]); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 773 | drm_handle_vblank_events(dev, crtc); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 774 | } |
| 775 | EXPORT_SYMBOL(drm_handle_vblank); |