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 */ |
| 39 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 40 | #include <linux/vgaarb.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | /** |
| 42 | * Get interrupt from bus id. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 43 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 45 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | * \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 Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 49 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * 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 Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 54 | int drm_irq_by_busid(struct drm_device *dev, void *data, |
| 55 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 57 | struct drm_irq_busid *p = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 60 | return -EINVAL; |
| 61 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 62 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | return -EINVAL; |
| 66 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 67 | p->irq = dev->pdev->irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 69 | DRM_DEBUG("%d:%d:%d => IRQ %d\n", p->busnum, p->devnum, p->funcnum, |
| 70 | p->irq); |
| 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | return 0; |
| 73 | } |
| 74 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 75 | static 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 Packard | 5244021 | 2008-11-18 09:30:25 -0800 | [diff] [blame] | 98 | void drm_vblank_cleanup(struct drm_device *dev) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 99 | { |
| 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 Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 108 | 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 Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 115 | |
| 116 | dev->num_crtcs = 0; |
| 117 | } |
| 118 | |
| 119 | int drm_vblank_init(struct drm_device *dev, int num_crtcs) |
| 120 | { |
| 121 | int i, ret = -ENOMEM; |
| 122 | |
| 123 | setup_timer(&dev->vblank_disable_timer, vblank_disable_fn, |
| 124 | (unsigned long)dev); |
| 125 | spin_lock_init(&dev->vbl_lock); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 126 | dev->num_crtcs = num_crtcs; |
| 127 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 128 | dev->vbl_queue = kmalloc(sizeof(wait_queue_head_t) * num_crtcs, |
| 129 | GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 130 | if (!dev->vbl_queue) |
| 131 | goto err; |
| 132 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 133 | dev->_vblank_count = kmalloc(sizeof(atomic_t) * num_crtcs, GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 134 | if (!dev->_vblank_count) |
| 135 | goto err; |
| 136 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 137 | dev->vblank_refcount = kmalloc(sizeof(atomic_t) * num_crtcs, |
| 138 | GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 139 | if (!dev->vblank_refcount) |
| 140 | goto err; |
| 141 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 142 | dev->vblank_enabled = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 143 | if (!dev->vblank_enabled) |
| 144 | goto err; |
| 145 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 146 | dev->last_vblank = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 147 | if (!dev->last_vblank) |
| 148 | goto err; |
| 149 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 150 | dev->last_vblank_wait = kcalloc(num_crtcs, sizeof(u32), GFP_KERNEL); |
Eric Anholt | fede5c9 | 2008-12-19 17:23:38 -0800 | [diff] [blame] | 151 | if (!dev->last_vblank_wait) |
| 152 | goto err; |
| 153 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 154 | dev->vblank_inmodeset = kcalloc(num_crtcs, sizeof(int), GFP_KERNEL); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 155 | if (!dev->vblank_inmodeset) |
| 156 | goto err; |
| 157 | |
| 158 | /* Zero per-crtc vblank stuff */ |
| 159 | for (i = 0; i < num_crtcs; i++) { |
| 160 | init_waitqueue_head(&dev->vbl_queue[i]); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 161 | atomic_set(&dev->_vblank_count[i], 0); |
| 162 | atomic_set(&dev->vblank_refcount[i], 0); |
| 163 | } |
| 164 | |
| 165 | dev->vblank_disable_allowed = 0; |
| 166 | |
| 167 | return 0; |
| 168 | |
| 169 | err: |
| 170 | drm_vblank_cleanup(dev); |
| 171 | return ret; |
| 172 | } |
| 173 | EXPORT_SYMBOL(drm_vblank_init); |
| 174 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 175 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | /** |
| 196 | * Install IRQ handler. |
| 197 | * |
| 198 | * \param dev DRM device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | * |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 200 | * Initializes the IRQ related data. Installs the handler, calling the driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions |
| 202 | * before and after the installation. |
| 203 | */ |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 204 | int drm_irq_install(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | { |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 206 | int ret = 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 207 | unsigned long sh_flags = 0; |
Dave Airlie | b8da7de | 2009-06-02 16:50:35 +1000 | [diff] [blame] | 208 | char *irqname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
| 210 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 211 | return -EINVAL; |
| 212 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 213 | if (dev->pdev->irq == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return -EINVAL; |
| 215 | |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 216 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
| 218 | /* Driver must have been initialized */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 219 | if (!dev->dev_private) { |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 220 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | return -EINVAL; |
| 222 | } |
| 223 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 224 | if (dev->irq_enabled) { |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 225 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return -EBUSY; |
| 227 | } |
| 228 | dev->irq_enabled = 1; |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 229 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 231 | DRM_DEBUG("irq=%d\n", dev->pdev->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 233 | /* Before installing handler */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | dev->driver->irq_preinstall(dev); |
| 235 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 236 | /* Install handler */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED)) |
Thomas Gleixner | 935f6e3 | 2006-07-01 19:29:34 -0700 | [diff] [blame] | 238 | sh_flags = IRQF_SHARED; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 239 | |
Dave Airlie | b8da7de | 2009-06-02 16:50:35 +1000 | [diff] [blame] | 240 | if (dev->devname) |
| 241 | irqname = dev->devname; |
| 242 | else |
| 243 | irqname = dev->driver->name; |
| 244 | |
Jesse Barnes | 9bfbd5c | 2008-09-15 15:00:33 -0700 | [diff] [blame] | 245 | ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler, |
Dave Airlie | b8da7de | 2009-06-02 16:50:35 +1000 | [diff] [blame] | 246 | sh_flags, irqname, dev); |
Jesse Barnes | 9bfbd5c | 2008-09-15 15:00:33 -0700 | [diff] [blame] | 247 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 248 | if (ret < 0) { |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 249 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | dev->irq_enabled = 0; |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 251 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | return ret; |
| 253 | } |
| 254 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 255 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 256 | vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL); |
| 257 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 258 | /* After installing handler */ |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 259 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 266 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 268 | EXPORT_SYMBOL(drm_irq_install); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
| 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 Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 277 | int drm_irq_uninstall(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | { |
Jesse Barnes | dc1336f | 2009-01-06 10:21:24 -0800 | [diff] [blame] | 279 | unsigned long irqflags; |
| 280 | int irq_enabled, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
| 282 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 283 | return -EINVAL; |
| 284 | |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 285 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | irq_enabled = dev->irq_enabled; |
| 287 | dev->irq_enabled = 0; |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 288 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Jesse Barnes | dc1336f | 2009-01-06 10:21:24 -0800 | [diff] [blame] | 290 | /* |
| 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 Barnes | 14d200c | 2009-02-06 13:04:49 -0800 | [diff] [blame] | 297 | dev->last_vblank[i] = dev->driver->get_vblank_counter(dev, i); |
Jesse Barnes | dc1336f | 2009-01-06 10:21:24 -0800 | [diff] [blame] | 298 | } |
| 299 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
| 300 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 301 | if (!irq_enabled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | return -EINVAL; |
| 303 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 304 | DRM_DEBUG("irq=%d\n", dev->pdev->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 306 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 307 | vga_client_register(dev->pdev, NULL, NULL, NULL); |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | dev->driver->irq_uninstall(dev); |
| 310 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 311 | free_irq(dev->pdev->irq, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
| 313 | return 0; |
| 314 | } |
| 315 | EXPORT_SYMBOL(drm_irq_uninstall); |
| 316 | |
| 317 | /** |
| 318 | * IRQ control ioctl. |
| 319 | * |
| 320 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 321 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | * \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 Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 328 | int drm_control(struct drm_device *dev, void *data, |
| 329 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 331 | struct drm_control *ctl = data; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 332 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | /* if we haven't irq we fallback for compatibility reasons - this used to be a separate function in drm_dma.h */ |
| 334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 336 | switch (ctl->func) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | case DRM_INST_HANDLER: |
| 338 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 339 | return 0; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 340 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 341 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | if (dev->if_version < DRM_IF_VERSION(1, 2) && |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 343 | ctl->irq != dev->pdev->irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | return -EINVAL; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 345 | return drm_irq_install(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | case DRM_UNINST_HANDLER: |
| 347 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 348 | return 0; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 349 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 350 | return 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 351 | return drm_irq_uninstall(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | default: |
| 353 | return -EINVAL; |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 358 | * 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 | */ |
| 366 | u32 drm_vblank_count(struct drm_device *dev, int crtc) |
| 367 | { |
| 368 | return atomic_read(&dev->_vblank_count[crtc]); |
| 369 | } |
| 370 | EXPORT_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 | */ |
| 388 | static 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 | */ |
| 425 | int 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 Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame^] | 432 | 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 Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 445 | atomic_dec(&dev->vblank_refcount[crtc]); |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame^] | 446 | ret = -EINVAL; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 447 | } |
| 448 | } |
| 449 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
| 450 | |
| 451 | return ret; |
| 452 | } |
| 453 | EXPORT_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 | */ |
| 463 | void drm_vblank_put(struct drm_device *dev, int crtc) |
| 464 | { |
Chris Wilson | b3f5e73 | 2009-02-19 14:48:22 +0000 | [diff] [blame] | 465 | BUG_ON (atomic_read (&dev->vblank_refcount[crtc]) == 0); |
| 466 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 467 | /* 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 | } |
| 471 | EXPORT_SYMBOL(drm_vblank_put); |
| 472 | |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame^] | 473 | void drm_vblank_off(struct drm_device *dev, int crtc) |
| 474 | { |
| 475 | unsigned long irqflags; |
| 476 | |
| 477 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
| 478 | DRM_WAKEUP(&dev->vbl_queue[crtc]); |
| 479 | dev->vblank_enabled[crtc] = 0; |
| 480 | dev->last_vblank[crtc] = dev->driver->get_vblank_counter(dev, crtc); |
| 481 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
| 482 | } |
| 483 | EXPORT_SYMBOL(drm_vblank_off); |
| 484 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 485 | /** |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 486 | * drm_vblank_pre_modeset - account for vblanks across mode sets |
| 487 | * @dev: DRM device |
| 488 | * @crtc: CRTC in question |
| 489 | * @post: post or pre mode set? |
| 490 | * |
| 491 | * Account for vblank events across mode setting events, which will likely |
| 492 | * reset the hardware frame counter. |
| 493 | */ |
| 494 | void drm_vblank_pre_modeset(struct drm_device *dev, int crtc) |
| 495 | { |
| 496 | /* |
| 497 | * To avoid all the problems that might happen if interrupts |
| 498 | * were enabled/disabled around or between these calls, we just |
| 499 | * have the kernel take a reference on the CRTC (just once though |
| 500 | * to avoid corrupting the count if multiple, mismatch calls occur), |
| 501 | * so that interrupts remain enabled in the interim. |
| 502 | */ |
| 503 | if (!dev->vblank_inmodeset[crtc]) { |
Chris Wilson | b3f5e73 | 2009-02-19 14:48:22 +0000 | [diff] [blame] | 504 | dev->vblank_inmodeset[crtc] = 0x1; |
| 505 | if (drm_vblank_get(dev, crtc) == 0) |
| 506 | dev->vblank_inmodeset[crtc] |= 0x2; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 507 | } |
| 508 | } |
| 509 | EXPORT_SYMBOL(drm_vblank_pre_modeset); |
| 510 | |
| 511 | void drm_vblank_post_modeset(struct drm_device *dev, int crtc) |
| 512 | { |
| 513 | unsigned long irqflags; |
| 514 | |
| 515 | if (dev->vblank_inmodeset[crtc]) { |
| 516 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
| 517 | dev->vblank_disable_allowed = 1; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 518 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
Chris Wilson | b3f5e73 | 2009-02-19 14:48:22 +0000 | [diff] [blame] | 519 | |
| 520 | if (dev->vblank_inmodeset[crtc] & 0x2) |
| 521 | drm_vblank_put(dev, crtc); |
| 522 | |
| 523 | dev->vblank_inmodeset[crtc] = 0; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 524 | } |
| 525 | } |
| 526 | EXPORT_SYMBOL(drm_vblank_post_modeset); |
| 527 | |
| 528 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 529 | * drm_modeset_ctl - handle vblank event counter changes across mode switch |
| 530 | * @DRM_IOCTL_ARGS: standard ioctl arguments |
| 531 | * |
| 532 | * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET |
| 533 | * ioctls around modesetting so that any lost vblank events are accounted for. |
| 534 | * |
| 535 | * Generally the counter will reset across mode sets. If interrupts are |
| 536 | * enabled around this call, we don't have to do anything since the counter |
| 537 | * will have already been incremented. |
| 538 | */ |
| 539 | int drm_modeset_ctl(struct drm_device *dev, void *data, |
| 540 | struct drm_file *file_priv) |
| 541 | { |
| 542 | struct drm_modeset_ctl *modeset = data; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 543 | int crtc, ret = 0; |
| 544 | |
| 545 | /* If drm_vblank_init() hasn't been called yet, just no-op */ |
| 546 | if (!dev->num_crtcs) |
| 547 | goto out; |
| 548 | |
| 549 | crtc = modeset->crtc; |
| 550 | if (crtc >= dev->num_crtcs) { |
| 551 | ret = -EINVAL; |
| 552 | goto out; |
| 553 | } |
| 554 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 555 | switch (modeset->cmd) { |
| 556 | case _DRM_PRE_MODESET: |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 557 | drm_vblank_pre_modeset(dev, crtc); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 558 | break; |
| 559 | case _DRM_POST_MODESET: |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 560 | drm_vblank_post_modeset(dev, crtc); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 561 | break; |
| 562 | default: |
| 563 | ret = -EINVAL; |
| 564 | break; |
| 565 | } |
| 566 | |
| 567 | out: |
| 568 | return ret; |
| 569 | } |
| 570 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 571 | static int drm_queue_vblank_event(struct drm_device *dev, int pipe, |
| 572 | union drm_wait_vblank *vblwait, |
| 573 | struct drm_file *file_priv) |
| 574 | { |
| 575 | struct drm_pending_vblank_event *e; |
| 576 | struct timeval now; |
| 577 | unsigned long flags; |
| 578 | unsigned int seq; |
| 579 | |
| 580 | e = kzalloc(sizeof *e, GFP_KERNEL); |
| 581 | if (e == NULL) |
| 582 | return -ENOMEM; |
| 583 | |
| 584 | e->pipe = pipe; |
| 585 | e->event.base.type = DRM_EVENT_VBLANK; |
| 586 | e->event.base.length = sizeof e->event; |
| 587 | e->event.user_data = vblwait->request.signal; |
| 588 | e->base.event = &e->event.base; |
| 589 | e->base.file_priv = file_priv; |
| 590 | e->base.destroy = (void (*) (struct drm_pending_event *)) kfree; |
| 591 | |
| 592 | do_gettimeofday(&now); |
| 593 | spin_lock_irqsave(&dev->event_lock, flags); |
| 594 | |
| 595 | if (file_priv->event_space < sizeof e->event) { |
| 596 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 597 | kfree(e); |
| 598 | return -ENOMEM; |
| 599 | } |
| 600 | |
| 601 | file_priv->event_space -= sizeof e->event; |
| 602 | seq = drm_vblank_count(dev, pipe); |
| 603 | if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) && |
| 604 | (seq - vblwait->request.sequence) <= (1 << 23)) { |
| 605 | vblwait->request.sequence = seq + 1; |
Jesse Barnes | 4a92164 | 2009-11-10 08:21:25 +0000 | [diff] [blame] | 606 | vblwait->reply.sequence = vblwait->request.sequence; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n", |
| 610 | vblwait->request.sequence, seq, pipe); |
| 611 | |
| 612 | e->event.sequence = vblwait->request.sequence; |
| 613 | if ((seq - vblwait->request.sequence) <= (1 << 23)) { |
| 614 | e->event.tv_sec = now.tv_sec; |
| 615 | e->event.tv_usec = now.tv_usec; |
| 616 | drm_vblank_put(dev, e->pipe); |
| 617 | list_add_tail(&e->base.link, &e->base.file_priv->event_list); |
| 618 | wake_up_interruptible(&e->base.file_priv->event_wait); |
| 619 | } else { |
| 620 | list_add_tail(&e->base.link, &dev->vblank_event_list); |
| 621 | } |
| 622 | |
| 623 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 624 | |
| 625 | return 0; |
| 626 | } |
| 627 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 628 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | * Wait for VBLANK. |
| 630 | * |
| 631 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 632 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | * \param cmd command. |
| 634 | * \param data user argument, pointing to a drm_wait_vblank structure. |
| 635 | * \return zero on success or a negative number on failure. |
| 636 | * |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 637 | * This function enables the vblank interrupt on the pipe requested, then |
| 638 | * sleeps waiting for the requested sequence number to occur, and drops |
| 639 | * the vblank interrupt refcount afterwards. (vblank irq disable follows that |
| 640 | * after a timeout with no further vblank waits scheduled). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | */ |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 642 | int drm_wait_vblank(struct drm_device *dev, void *data, |
| 643 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 645 | union drm_wait_vblank *vblwait = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | int ret = 0; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 647 | unsigned int flags, seq, crtc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
Eric Anholt | ed4cb41 | 2008-07-29 12:10:39 -0700 | [diff] [blame] | 649 | if ((!dev->pdev->irq) || (!dev->irq_enabled)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | return -EINVAL; |
| 651 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 652 | if (vblwait->request.type & _DRM_VBLANK_SIGNAL) |
| 653 | return -EINVAL; |
| 654 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 655 | if (vblwait->request.type & |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 656 | ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) { |
| 657 | DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n", |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 658 | vblwait->request.type, |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 659 | (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)); |
| 660 | return -EINVAL; |
| 661 | } |
| 662 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 663 | flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 664 | crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0; |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 665 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 666 | if (crtc >= dev->num_crtcs) |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 667 | return -EINVAL; |
| 668 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 669 | ret = drm_vblank_get(dev, crtc); |
| 670 | if (ret) { |
Paul Rolland | 8d3457e | 2009-08-09 12:24:01 +1000 | [diff] [blame] | 671 | DRM_DEBUG("failed to acquire vblank counter, %d\n", ret); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 672 | return ret; |
| 673 | } |
| 674 | seq = drm_vblank_count(dev, crtc); |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 675 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 676 | switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | case _DRM_VBLANK_RELATIVE: |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 678 | vblwait->request.sequence += seq; |
| 679 | vblwait->request.type &= ~_DRM_VBLANK_RELATIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | case _DRM_VBLANK_ABSOLUTE: |
| 681 | break; |
| 682 | default: |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 683 | ret = -EINVAL; |
| 684 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | } |
| 686 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 687 | if (flags & _DRM_VBLANK_EVENT) |
| 688 | return drm_queue_vblank_event(dev, crtc, vblwait, file_priv); |
| 689 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | ab285d7 | 2006-10-24 23:34:18 +1000 | [diff] [blame] | 690 | if ((flags & _DRM_VBLANK_NEXTONMISS) && |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 691 | (seq - vblwait->request.sequence) <= (1<<23)) { |
| 692 | vblwait->request.sequence = seq + 1; |
=?utf-8?q?Michel_D=C3=A4nzer?= | ab285d7 | 2006-10-24 23:34:18 +1000 | [diff] [blame] | 693 | } |
| 694 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 695 | DRM_DEBUG("waiting on vblank count %d, crtc %d\n", |
| 696 | vblwait->request.sequence, crtc); |
| 697 | dev->last_vblank_wait[crtc] = vblwait->request.sequence; |
| 698 | DRM_WAIT_ON(ret, dev->vbl_queue[crtc], 3 * DRM_HZ, |
| 699 | (((drm_vblank_count(dev, crtc) - |
| 700 | vblwait->request.sequence) <= (1 << 23)) || |
| 701 | !dev->irq_enabled)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 703 | if (ret != -EINTR) { |
| 704 | struct timeval now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 706 | do_gettimeofday(&now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 708 | vblwait->reply.tval_sec = now.tv_sec; |
| 709 | vblwait->reply.tval_usec = now.tv_usec; |
| 710 | vblwait->reply.sequence = drm_vblank_count(dev, crtc); |
| 711 | DRM_DEBUG("returning %d to client\n", |
| 712 | vblwait->reply.sequence); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | } else { |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 714 | DRM_DEBUG("vblank wait interrupted by signal\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | } |
| 716 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 717 | done: |
| 718 | drm_vblank_put(dev, crtc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | return ret; |
| 720 | } |
| 721 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 722 | void drm_handle_vblank_events(struct drm_device *dev, int crtc) |
| 723 | { |
| 724 | struct drm_pending_vblank_event *e, *t; |
| 725 | struct timeval now; |
| 726 | unsigned long flags; |
| 727 | unsigned int seq; |
| 728 | |
| 729 | do_gettimeofday(&now); |
| 730 | seq = drm_vblank_count(dev, crtc); |
| 731 | |
| 732 | spin_lock_irqsave(&dev->event_lock, flags); |
| 733 | |
| 734 | list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) { |
| 735 | if (e->pipe != crtc) |
| 736 | continue; |
| 737 | if ((seq - e->event.sequence) > (1<<23)) |
| 738 | continue; |
| 739 | |
| 740 | DRM_DEBUG("vblank event on %d, current %d\n", |
| 741 | e->event.sequence, seq); |
| 742 | |
| 743 | e->event.sequence = seq; |
| 744 | e->event.tv_sec = now.tv_sec; |
| 745 | e->event.tv_usec = now.tv_usec; |
| 746 | drm_vblank_put(dev, e->pipe); |
| 747 | list_move_tail(&e->base.link, &e->base.file_priv->event_list); |
| 748 | wake_up_interruptible(&e->base.file_priv->event_wait); |
| 749 | } |
| 750 | |
| 751 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 752 | } |
| 753 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 755 | * drm_handle_vblank - handle a vblank event |
| 756 | * @dev: DRM device |
| 757 | * @crtc: where this event occurred |
| 758 | * |
| 759 | * Drivers should call this routine in their vblank interrupt handlers to |
| 760 | * update the vblank counter and send any signals that may be pending. |
| 761 | */ |
| 762 | void drm_handle_vblank(struct drm_device *dev, int crtc) |
| 763 | { |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 764 | if (!dev->num_crtcs) |
| 765 | return; |
| 766 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 767 | atomic_inc(&dev->_vblank_count[crtc]); |
| 768 | DRM_WAKEUP(&dev->vbl_queue[crtc]); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 769 | drm_handle_vblank_events(dev, crtc); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 770 | } |
| 771 | EXPORT_SYMBOL(drm_handle_vblank); |