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 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 36 | #include <drm/drmP.h> |
Jesse Barnes | ac2874b | 2010-07-01 16:47:31 -0700 | [diff] [blame] | 37 | #include "drm_trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #include <linux/interrupt.h> /* For task queue support */ |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 40 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 42 | #include <linux/vgaarb.h> |
Paul Gortmaker | 2d1a8a4 | 2011-08-30 18:16:33 -0400 | [diff] [blame] | 43 | #include <linux/export.h> |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 44 | |
| 45 | /* Access macro for slots in vblank timestamp ringbuffer. */ |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 46 | #define vblanktimestamp(dev, crtc, count) \ |
| 47 | ((dev)->vblank[crtc].time[(count) % DRM_VBLANKTIME_RBSIZE]) |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 48 | |
| 49 | /* Retry timestamp calculation up to 3 times to satisfy |
| 50 | * drm_timestamp_precision before giving up. |
| 51 | */ |
| 52 | #define DRM_TIMESTAMP_MAXRETRIES 3 |
| 53 | |
| 54 | /* Threshold in nanoseconds for detection of redundant |
| 55 | * vblank irq in drm_handle_vblank(). 1 msec should be ok. |
| 56 | */ |
| 57 | #define DRM_REDUNDANT_VBLIRQ_THRESH_NS 1000000 |
| 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | /** |
| 60 | * Get interrupt from bus id. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 61 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 63 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | * \param cmd command. |
| 65 | * \param arg user argument, pointing to a drm_irq_busid structure. |
| 66 | * \return zero on success or a negative number on failure. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 67 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | * Finds the PCI device with the specified bus id and gets its IRQ number. |
| 69 | * This IOCTL is deprecated, and will now return EINVAL for any busid not equal |
| 70 | * to that of the device that this DRM instance attached to. |
| 71 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 72 | int drm_irq_by_busid(struct drm_device *dev, void *data, |
| 73 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 75 | struct drm_irq_busid *p = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 77 | if (!dev->driver->bus->irq_by_busid) |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 78 | return -EINVAL; |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 81 | return -EINVAL; |
| 82 | |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 83 | return dev->driver->bus->irq_by_busid(dev, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 86 | /* |
| 87 | * Clear vblank timestamp buffer for a crtc. |
| 88 | */ |
| 89 | static void clear_vblank_timestamps(struct drm_device *dev, int crtc) |
| 90 | { |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 91 | memset(dev->vblank[crtc].time, 0, sizeof(dev->vblank[crtc].time)); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | /* |
| 95 | * Disable vblank irq's on crtc, make sure that last vblank count |
| 96 | * of hardware and corresponding consistent software vblank counter |
| 97 | * are preserved, even if there are any spurious vblank irq's after |
| 98 | * disable. |
| 99 | */ |
| 100 | static void vblank_disable_and_save(struct drm_device *dev, int crtc) |
| 101 | { |
| 102 | unsigned long irqflags; |
| 103 | u32 vblcount; |
| 104 | s64 diff_ns; |
| 105 | int vblrc; |
| 106 | struct timeval tvblank; |
Egbert Eich | 0355cf3 | 2012-10-13 11:36:14 +0000 | [diff] [blame] | 107 | int count = DRM_TIMESTAMP_MAXRETRIES; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 108 | |
| 109 | /* Prevent vblank irq processing while disabling vblank irqs, |
| 110 | * so no updates of timestamps or count can happen after we've |
| 111 | * disabled. Needed to prevent races in case of delayed irq's. |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 112 | */ |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 113 | spin_lock_irqsave(&dev->vblank_time_lock, irqflags); |
| 114 | |
| 115 | dev->driver->disable_vblank(dev, crtc); |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 116 | dev->vblank[crtc].enabled = false; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 117 | |
| 118 | /* No further vblank irq's will be processed after |
| 119 | * this point. Get current hardware vblank count and |
| 120 | * vblank timestamp, repeat until they are consistent. |
| 121 | * |
| 122 | * FIXME: There is still a race condition here and in |
| 123 | * drm_update_vblank_count() which can cause off-by-one |
| 124 | * reinitialization of software vblank counter. If gpu |
| 125 | * vblank counter doesn't increment exactly at the leading |
| 126 | * edge of a vblank interval, then we can lose 1 count if |
| 127 | * we happen to execute between start of vblank and the |
| 128 | * delayed gpu counter increment. |
| 129 | */ |
| 130 | do { |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 131 | dev->vblank[crtc].last = dev->driver->get_vblank_counter(dev, crtc); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 132 | vblrc = drm_get_last_vbltimestamp(dev, crtc, &tvblank, 0); |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 133 | } while (dev->vblank[crtc].last != dev->driver->get_vblank_counter(dev, crtc) && (--count) && vblrc); |
Egbert Eich | 0355cf3 | 2012-10-13 11:36:14 +0000 | [diff] [blame] | 134 | |
| 135 | if (!count) |
| 136 | vblrc = 0; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 137 | |
| 138 | /* Compute time difference to stored timestamp of last vblank |
| 139 | * as updated by last invocation of drm_handle_vblank() in vblank irq. |
| 140 | */ |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 141 | vblcount = atomic_read(&dev->vblank[crtc].count); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 142 | diff_ns = timeval_to_ns(&tvblank) - |
| 143 | timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount)); |
| 144 | |
| 145 | /* If there is at least 1 msec difference between the last stored |
| 146 | * timestamp and tvblank, then we are currently executing our |
| 147 | * disable inside a new vblank interval, the tvblank timestamp |
| 148 | * corresponds to this new vblank interval and the irq handler |
| 149 | * for this vblank didn't run yet and won't run due to our disable. |
| 150 | * Therefore we need to do the job of drm_handle_vblank() and |
| 151 | * increment the vblank counter by one to account for this vblank. |
| 152 | * |
| 153 | * Skip this step if there isn't any high precision timestamp |
| 154 | * available. In that case we can't account for this and just |
| 155 | * hope for the best. |
| 156 | */ |
Mario Kleiner | bc21512 | 2011-02-21 05:42:01 +0100 | [diff] [blame] | 157 | if ((vblrc > 0) && (abs64(diff_ns) > 1000000)) { |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 158 | atomic_inc(&dev->vblank[crtc].count); |
Mario Kleiner | bc21512 | 2011-02-21 05:42:01 +0100 | [diff] [blame] | 159 | smp_mb__after_atomic_inc(); |
| 160 | } |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 161 | |
| 162 | /* Invalidate all timestamps while vblank irq's are off. */ |
| 163 | clear_vblank_timestamps(dev, crtc); |
| 164 | |
| 165 | spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 166 | } |
| 167 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 168 | static void vblank_disable_fn(unsigned long arg) |
| 169 | { |
| 170 | struct drm_device *dev = (struct drm_device *)arg; |
| 171 | unsigned long irqflags; |
| 172 | int i; |
| 173 | |
| 174 | if (!dev->vblank_disable_allowed) |
| 175 | return; |
| 176 | |
| 177 | for (i = 0; i < dev->num_crtcs; i++) { |
| 178 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 179 | if (atomic_read(&dev->vblank[i].refcount) == 0 && |
| 180 | dev->vblank[i].enabled) { |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 181 | DRM_DEBUG("disabling vblank on crtc %d\n", i); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 182 | vblank_disable_and_save(dev, i); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 183 | } |
| 184 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
| 185 | } |
| 186 | } |
| 187 | |
Keith Packard | 5244021 | 2008-11-18 09:30:25 -0800 | [diff] [blame] | 188 | void drm_vblank_cleanup(struct drm_device *dev) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 189 | { |
| 190 | /* Bail if the driver didn't call drm_vblank_init() */ |
| 191 | if (dev->num_crtcs == 0) |
| 192 | return; |
| 193 | |
Laurent Pinchart | 7eb3b2c | 2012-05-17 13:27:19 +0200 | [diff] [blame] | 194 | del_timer_sync(&dev->vblank_disable_timer); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 195 | |
| 196 | vblank_disable_fn((unsigned long)dev); |
| 197 | |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 198 | kfree(dev->vblank); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 199 | |
| 200 | dev->num_crtcs = 0; |
| 201 | } |
Jerome Glisse | e77cef9 | 2010-01-07 15:39:13 +0100 | [diff] [blame] | 202 | EXPORT_SYMBOL(drm_vblank_cleanup); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 203 | |
| 204 | int drm_vblank_init(struct drm_device *dev, int num_crtcs) |
| 205 | { |
| 206 | int i, ret = -ENOMEM; |
| 207 | |
| 208 | setup_timer(&dev->vblank_disable_timer, vblank_disable_fn, |
| 209 | (unsigned long)dev); |
| 210 | spin_lock_init(&dev->vbl_lock); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 211 | spin_lock_init(&dev->vblank_time_lock); |
| 212 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 213 | dev->num_crtcs = num_crtcs; |
| 214 | |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 215 | dev->vblank = kcalloc(num_crtcs, sizeof(*dev->vblank), GFP_KERNEL); |
| 216 | if (!dev->vblank) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 217 | goto err; |
| 218 | |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 219 | for (i = 0; i < num_crtcs; i++) |
| 220 | init_waitqueue_head(&dev->vblank[i].queue); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 221 | |
| 222 | DRM_INFO("Supports vblank timestamp caching Rev 1 (10.10.2010).\n"); |
| 223 | |
| 224 | /* Driver specific high-precision vblank timestamping supported? */ |
| 225 | if (dev->driver->get_vblank_timestamp) |
| 226 | DRM_INFO("Driver supports precise vblank timestamp query.\n"); |
| 227 | else |
| 228 | DRM_INFO("No driver support for vblank timestamp query.\n"); |
| 229 | |
Ville Syrjälä | ba0bf12 | 2013-10-04 14:53:33 +0300 | [diff] [blame] | 230 | dev->vblank_disable_allowed = false; |
| 231 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 232 | return 0; |
| 233 | |
| 234 | err: |
| 235 | drm_vblank_cleanup(dev); |
| 236 | return ret; |
| 237 | } |
| 238 | EXPORT_SYMBOL(drm_vblank_init); |
| 239 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 240 | static void drm_irq_vgaarb_nokms(void *cookie, bool state) |
| 241 | { |
| 242 | struct drm_device *dev = cookie; |
| 243 | |
| 244 | if (dev->driver->vgaarb_irq) { |
| 245 | dev->driver->vgaarb_irq(dev, state); |
| 246 | return; |
| 247 | } |
| 248 | |
| 249 | if (!dev->irq_enabled) |
| 250 | return; |
| 251 | |
Joonyoung Shim | 5037f8a | 2011-08-04 05:41:01 +0000 | [diff] [blame] | 252 | if (state) { |
| 253 | if (dev->driver->irq_uninstall) |
| 254 | dev->driver->irq_uninstall(dev); |
| 255 | } else { |
| 256 | if (dev->driver->irq_preinstall) |
| 257 | dev->driver->irq_preinstall(dev); |
| 258 | if (dev->driver->irq_postinstall) |
| 259 | dev->driver->irq_postinstall(dev); |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 260 | } |
| 261 | } |
| 262 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | /** |
| 264 | * Install IRQ handler. |
| 265 | * |
| 266 | * \param dev DRM device. |
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 | * Initializes the IRQ related data. Installs the handler, calling the driver |
Sascha Hauer | 884a53e | 2012-02-29 09:06:21 +0100 | [diff] [blame] | 269 | * \c irq_preinstall() and \c irq_postinstall() functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | * before and after the installation. |
| 271 | */ |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 272 | int drm_irq_install(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | { |
Laurent Pinchart | 4a1b071 | 2012-05-17 13:27:21 +0200 | [diff] [blame] | 274 | int ret; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 275 | unsigned long sh_flags = 0; |
Dave Airlie | b8da7de | 2009-06-02 16:50:35 +1000 | [diff] [blame] | 276 | char *irqname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
| 278 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 279 | return -EINVAL; |
| 280 | |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 281 | if (drm_dev_to_irq(dev) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | return -EINVAL; |
| 283 | |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 284 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
| 286 | /* Driver must have been initialized */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 287 | if (!dev->dev_private) { |
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 | return -EINVAL; |
| 290 | } |
| 291 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 292 | if (dev->irq_enabled) { |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 293 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | return -EBUSY; |
| 295 | } |
| 296 | dev->irq_enabled = 1; |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 297 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 299 | DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 301 | /* Before installing handler */ |
Joonyoung Shim | 5037f8a | 2011-08-04 05:41:01 +0000 | [diff] [blame] | 302 | if (dev->driver->irq_preinstall) |
| 303 | dev->driver->irq_preinstall(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 305 | /* Install handler */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED)) |
Thomas Gleixner | 935f6e3a | 2006-07-01 19:29:34 -0700 | [diff] [blame] | 307 | sh_flags = IRQF_SHARED; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 308 | |
Dave Airlie | b8da7de | 2009-06-02 16:50:35 +1000 | [diff] [blame] | 309 | if (dev->devname) |
| 310 | irqname = dev->devname; |
| 311 | else |
| 312 | irqname = dev->driver->name; |
| 313 | |
Jesse Barnes | 9bfbd5c | 2008-09-15 15:00:33 -0700 | [diff] [blame] | 314 | ret = request_irq(drm_dev_to_irq(dev), dev->driver->irq_handler, |
Dave Airlie | b8da7de | 2009-06-02 16:50:35 +1000 | [diff] [blame] | 315 | sh_flags, irqname, dev); |
Jesse Barnes | 9bfbd5c | 2008-09-15 15:00:33 -0700 | [diff] [blame] | 316 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 317 | if (ret < 0) { |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 318 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | dev->irq_enabled = 0; |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 320 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | return ret; |
| 322 | } |
| 323 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 324 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 325 | vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL); |
| 326 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 327 | /* After installing handler */ |
Joonyoung Shim | 5037f8a | 2011-08-04 05:41:01 +0000 | [diff] [blame] | 328 | if (dev->driver->irq_postinstall) |
| 329 | ret = dev->driver->irq_postinstall(dev); |
| 330 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 331 | if (ret < 0) { |
| 332 | mutex_lock(&dev->struct_mutex); |
| 333 | dev->irq_enabled = 0; |
| 334 | mutex_unlock(&dev->struct_mutex); |
Joonyoung Shim | e1c44ac | 2011-08-04 05:41:00 +0000 | [diff] [blame] | 335 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 336 | vga_client_register(dev->pdev, NULL, NULL, NULL); |
| 337 | free_irq(drm_dev_to_irq(dev), dev); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 338 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 340 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 342 | EXPORT_SYMBOL(drm_irq_install); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
| 344 | /** |
| 345 | * Uninstall the IRQ handler. |
| 346 | * |
| 347 | * \param dev DRM device. |
| 348 | * |
Sascha Hauer | 884a53e | 2012-02-29 09:06:21 +0100 | [diff] [blame] | 349 | * Calls the driver's \c irq_uninstall() function, and stops the irq. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | */ |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 351 | int drm_irq_uninstall(struct drm_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | { |
Jesse Barnes | dc1336f | 2009-01-06 10:21:24 -0800 | [diff] [blame] | 353 | unsigned long irqflags; |
| 354 | int irq_enabled, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 357 | return -EINVAL; |
| 358 | |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 359 | mutex_lock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | irq_enabled = dev->irq_enabled; |
| 361 | dev->irq_enabled = 0; |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 362 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Jesse Barnes | dc1336f | 2009-01-06 10:21:24 -0800 | [diff] [blame] | 364 | /* |
| 365 | * Wake up any waiters so they don't hang. |
| 366 | */ |
Ben Skeggs | bde4889 | 2011-07-04 12:52:27 +1000 | [diff] [blame] | 367 | if (dev->num_crtcs) { |
| 368 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
| 369 | for (i = 0; i < dev->num_crtcs; i++) { |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 370 | DRM_WAKEUP(&dev->vblank[i].queue); |
| 371 | dev->vblank[i].enabled = false; |
| 372 | dev->vblank[i].last = |
Ben Skeggs | bde4889 | 2011-07-04 12:52:27 +1000 | [diff] [blame] | 373 | dev->driver->get_vblank_counter(dev, i); |
| 374 | } |
| 375 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
Jesse Barnes | dc1336f | 2009-01-06 10:21:24 -0800 | [diff] [blame] | 376 | } |
Jesse Barnes | dc1336f | 2009-01-06 10:21:24 -0800 | [diff] [blame] | 377 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 378 | if (!irq_enabled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | return -EINVAL; |
| 380 | |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 381 | DRM_DEBUG("irq=%d\n", drm_dev_to_irq(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
Dave Airlie | 28d5204 | 2009-09-21 14:33:58 +1000 | [diff] [blame] | 383 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 384 | vga_client_register(dev->pdev, NULL, NULL, NULL); |
| 385 | |
Joonyoung Shim | 5037f8a | 2011-08-04 05:41:01 +0000 | [diff] [blame] | 386 | if (dev->driver->irq_uninstall) |
| 387 | dev->driver->irq_uninstall(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 389 | free_irq(drm_dev_to_irq(dev), dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
| 391 | return 0; |
| 392 | } |
| 393 | EXPORT_SYMBOL(drm_irq_uninstall); |
| 394 | |
| 395 | /** |
| 396 | * IRQ control ioctl. |
| 397 | * |
| 398 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 399 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | * \param cmd command. |
| 401 | * \param arg user argument, pointing to a drm_control structure. |
| 402 | * \return zero on success or a negative number on failure. |
| 403 | * |
| 404 | * Calls irq_install() or irq_uninstall() according to \p arg. |
| 405 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 406 | int drm_control(struct drm_device *dev, void *data, |
| 407 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 409 | struct drm_control *ctl = data; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 410 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 411 | /* if we haven't irq we fallback for compatibility reasons - |
| 412 | * this used to be a separate function in drm_dma.h |
| 413 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 416 | switch (ctl->func) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | case DRM_INST_HANDLER: |
| 418 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 419 | return 0; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 420 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 421 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | if (dev->if_version < DRM_IF_VERSION(1, 2) && |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 423 | ctl->irq != drm_dev_to_irq(dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | return -EINVAL; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 425 | return drm_irq_install(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | case DRM_UNINST_HANDLER: |
| 427 | if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 428 | return 0; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 429 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 430 | return 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 431 | return drm_irq_uninstall(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | default: |
| 433 | return -EINVAL; |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | /** |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 438 | * drm_calc_timestamping_constants - Calculate and |
| 439 | * store various constants which are later needed by |
| 440 | * vblank and swap-completion timestamping, e.g, by |
| 441 | * drm_calc_vbltimestamp_from_scanoutpos(). |
| 442 | * They are derived from crtc's true scanout timing, |
| 443 | * so they take things like panel scaling or other |
| 444 | * adjustments into account. |
| 445 | * |
| 446 | * @crtc drm_crtc whose timestamp constants should be updated. |
| 447 | * |
| 448 | */ |
| 449 | void drm_calc_timestamping_constants(struct drm_crtc *crtc) |
| 450 | { |
| 451 | s64 linedur_ns = 0, pixeldur_ns = 0, framedur_ns = 0; |
| 452 | u64 dotclock; |
| 453 | |
| 454 | /* Dot clock in Hz: */ |
| 455 | dotclock = (u64) crtc->hwmode.clock * 1000; |
| 456 | |
Mario Kleiner | 9be6f8a | 2011-02-21 05:42:02 +0100 | [diff] [blame] | 457 | /* Fields of interlaced scanout modes are only halve a frame duration. |
| 458 | * Double the dotclock to get halve the frame-/line-/pixelduration. |
| 459 | */ |
| 460 | if (crtc->hwmode.flags & DRM_MODE_FLAG_INTERLACE) |
| 461 | dotclock *= 2; |
| 462 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 463 | /* Valid dotclock? */ |
| 464 | if (dotclock > 0) { |
Daniel Kurtz | 85a7ce6 | 2012-12-27 01:01:46 +0000 | [diff] [blame] | 465 | int frame_size; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 466 | /* Convert scanline length in pixels and video dot clock to |
| 467 | * line duration, frame duration and pixel duration in |
| 468 | * nanoseconds: |
| 469 | */ |
| 470 | pixeldur_ns = (s64) div64_u64(1000000000, dotclock); |
| 471 | linedur_ns = (s64) div64_u64(((u64) crtc->hwmode.crtc_htotal * |
| 472 | 1000000000), dotclock); |
Daniel Kurtz | 85a7ce6 | 2012-12-27 01:01:46 +0000 | [diff] [blame] | 473 | frame_size = crtc->hwmode.crtc_htotal * |
| 474 | crtc->hwmode.crtc_vtotal; |
| 475 | framedur_ns = (s64) div64_u64((u64) frame_size * 1000000000, |
| 476 | dotclock); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 477 | } else |
| 478 | DRM_ERROR("crtc %d: Can't calculate constants, dotclock = 0!\n", |
| 479 | crtc->base.id); |
| 480 | |
| 481 | crtc->pixeldur_ns = pixeldur_ns; |
| 482 | crtc->linedur_ns = linedur_ns; |
| 483 | crtc->framedur_ns = framedur_ns; |
| 484 | |
| 485 | DRM_DEBUG("crtc %d: hwmode: htotal %d, vtotal %d, vdisplay %d\n", |
| 486 | crtc->base.id, crtc->hwmode.crtc_htotal, |
| 487 | crtc->hwmode.crtc_vtotal, crtc->hwmode.crtc_vdisplay); |
| 488 | DRM_DEBUG("crtc %d: clock %d kHz framedur %d linedur %d, pixeldur %d\n", |
| 489 | crtc->base.id, (int) dotclock/1000, (int) framedur_ns, |
| 490 | (int) linedur_ns, (int) pixeldur_ns); |
| 491 | } |
| 492 | EXPORT_SYMBOL(drm_calc_timestamping_constants); |
| 493 | |
| 494 | /** |
| 495 | * drm_calc_vbltimestamp_from_scanoutpos - helper routine for kms |
| 496 | * drivers. Implements calculation of exact vblank timestamps from |
| 497 | * given drm_display_mode timings and current video scanout position |
| 498 | * of a crtc. This can be called from within get_vblank_timestamp() |
| 499 | * implementation of a kms driver to implement the actual timestamping. |
| 500 | * |
| 501 | * Should return timestamps conforming to the OML_sync_control OpenML |
| 502 | * extension specification. The timestamp corresponds to the end of |
| 503 | * the vblank interval, aka start of scanout of topmost-leftmost display |
| 504 | * pixel in the following video frame. |
| 505 | * |
| 506 | * Requires support for optional dev->driver->get_scanout_position() |
| 507 | * in kms driver, plus a bit of setup code to provide a drm_display_mode |
| 508 | * that corresponds to the true scanout timing. |
| 509 | * |
| 510 | * The current implementation only handles standard video modes. It |
| 511 | * returns as no operation if a doublescan or interlaced video mode is |
| 512 | * active. Higher level code is expected to handle this. |
| 513 | * |
| 514 | * @dev: DRM device. |
| 515 | * @crtc: Which crtc's vblank timestamp to retrieve. |
| 516 | * @max_error: Desired maximum allowable error in timestamps (nanosecs). |
| 517 | * On return contains true maximum error of timestamp. |
| 518 | * @vblank_time: Pointer to struct timeval which should receive the timestamp. |
| 519 | * @flags: Flags to pass to driver: |
| 520 | * 0 = Default. |
| 521 | * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler. |
| 522 | * @refcrtc: drm_crtc* of crtc which defines scanout timing. |
| 523 | * |
| 524 | * Returns negative value on error, failure or if not supported in current |
| 525 | * video mode: |
| 526 | * |
| 527 | * -EINVAL - Invalid crtc. |
| 528 | * -EAGAIN - Temporary unavailable, e.g., called before initial modeset. |
| 529 | * -ENOTSUPP - Function not supported in current display mode. |
| 530 | * -EIO - Failed, e.g., due to failed scanout position query. |
| 531 | * |
| 532 | * Returns or'ed positive status flags on success: |
| 533 | * |
| 534 | * DRM_VBLANKTIME_SCANOUTPOS_METHOD - Signal this method used for timestamping. |
| 535 | * DRM_VBLANKTIME_INVBL - Timestamp taken while scanout was in vblank interval. |
| 536 | * |
| 537 | */ |
| 538 | int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, int crtc, |
| 539 | int *max_error, |
| 540 | struct timeval *vblank_time, |
| 541 | unsigned flags, |
| 542 | struct drm_crtc *refcrtc) |
| 543 | { |
Imre Deak | e62f2f5 | 2012-10-23 18:53:25 +0000 | [diff] [blame] | 544 | ktime_t stime, etime, mono_time_offset; |
| 545 | struct timeval tv_etime; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 546 | struct drm_display_mode *mode; |
| 547 | int vbl_status, vtotal, vdisplay; |
| 548 | int vpos, hpos, i; |
| 549 | s64 framedur_ns, linedur_ns, pixeldur_ns, delta_ns, duration_ns; |
| 550 | bool invbl; |
| 551 | |
| 552 | if (crtc < 0 || crtc >= dev->num_crtcs) { |
| 553 | DRM_ERROR("Invalid crtc %d\n", crtc); |
| 554 | return -EINVAL; |
| 555 | } |
| 556 | |
| 557 | /* Scanout position query not supported? Should not happen. */ |
| 558 | if (!dev->driver->get_scanout_position) { |
| 559 | DRM_ERROR("Called from driver w/o get_scanout_position()!?\n"); |
| 560 | return -EIO; |
| 561 | } |
| 562 | |
| 563 | mode = &refcrtc->hwmode; |
| 564 | vtotal = mode->crtc_vtotal; |
| 565 | vdisplay = mode->crtc_vdisplay; |
| 566 | |
| 567 | /* Durations of frames, lines, pixels in nanoseconds. */ |
| 568 | framedur_ns = refcrtc->framedur_ns; |
| 569 | linedur_ns = refcrtc->linedur_ns; |
| 570 | pixeldur_ns = refcrtc->pixeldur_ns; |
| 571 | |
| 572 | /* If mode timing undefined, just return as no-op: |
| 573 | * Happens during initial modesetting of a crtc. |
| 574 | */ |
| 575 | if (vtotal <= 0 || vdisplay <= 0 || framedur_ns == 0) { |
| 576 | DRM_DEBUG("crtc %d: Noop due to uninitialized mode.\n", crtc); |
| 577 | return -EAGAIN; |
| 578 | } |
| 579 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 580 | /* Get current scanout position with system timestamp. |
| 581 | * Repeat query up to DRM_TIMESTAMP_MAXRETRIES times |
| 582 | * if single query takes longer than max_error nanoseconds. |
| 583 | * |
| 584 | * This guarantees a tight bound on maximum error if |
| 585 | * code gets preempted or delayed for some reason. |
| 586 | */ |
| 587 | for (i = 0; i < DRM_TIMESTAMP_MAXRETRIES; i++) { |
| 588 | /* Disable preemption to make it very likely to |
| 589 | * succeed in the first iteration even on PREEMPT_RT kernel. |
| 590 | */ |
| 591 | preempt_disable(); |
| 592 | |
| 593 | /* Get system timestamp before query. */ |
Imre Deak | e62f2f5 | 2012-10-23 18:53:25 +0000 | [diff] [blame] | 594 | stime = ktime_get(); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 595 | |
| 596 | /* Get vertical and horizontal scanout pos. vpos, hpos. */ |
| 597 | vbl_status = dev->driver->get_scanout_position(dev, crtc, &vpos, &hpos); |
| 598 | |
| 599 | /* Get system timestamp after query. */ |
Imre Deak | e62f2f5 | 2012-10-23 18:53:25 +0000 | [diff] [blame] | 600 | etime = ktime_get(); |
Imre Deak | c61eef7 | 2012-10-23 18:53:26 +0000 | [diff] [blame] | 601 | if (!drm_timestamp_monotonic) |
| 602 | mono_time_offset = ktime_get_monotonic_offset(); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 603 | |
| 604 | preempt_enable(); |
| 605 | |
| 606 | /* Return as no-op if scanout query unsupported or failed. */ |
| 607 | if (!(vbl_status & DRM_SCANOUTPOS_VALID)) { |
| 608 | DRM_DEBUG("crtc %d : scanoutpos query failed [%d].\n", |
| 609 | crtc, vbl_status); |
| 610 | return -EIO; |
| 611 | } |
| 612 | |
Imre Deak | e62f2f5 | 2012-10-23 18:53:25 +0000 | [diff] [blame] | 613 | duration_ns = ktime_to_ns(etime) - ktime_to_ns(stime); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 614 | |
| 615 | /* Accept result with < max_error nsecs timing uncertainty. */ |
| 616 | if (duration_ns <= (s64) *max_error) |
| 617 | break; |
| 618 | } |
| 619 | |
| 620 | /* Noisy system timing? */ |
| 621 | if (i == DRM_TIMESTAMP_MAXRETRIES) { |
| 622 | DRM_DEBUG("crtc %d: Noisy timestamp %d us > %d us [%d reps].\n", |
| 623 | crtc, (int) duration_ns/1000, *max_error/1000, i); |
| 624 | } |
| 625 | |
| 626 | /* Return upper bound of timestamp precision error. */ |
| 627 | *max_error = (int) duration_ns; |
| 628 | |
| 629 | /* Check if in vblank area: |
| 630 | * vpos is >=0 in video scanout area, but negative |
| 631 | * within vblank area, counting down the number of lines until |
| 632 | * start of scanout. |
| 633 | */ |
| 634 | invbl = vbl_status & DRM_SCANOUTPOS_INVBL; |
| 635 | |
| 636 | /* Convert scanout position into elapsed time at raw_time query |
| 637 | * since start of scanout at first display scanline. delta_ns |
| 638 | * can be negative if start of scanout hasn't happened yet. |
| 639 | */ |
| 640 | delta_ns = (s64) vpos * linedur_ns + (s64) hpos * pixeldur_ns; |
| 641 | |
| 642 | /* Is vpos outside nominal vblank area, but less than |
| 643 | * 1/100 of a frame height away from start of vblank? |
| 644 | * If so, assume this isn't a massively delayed vblank |
| 645 | * interrupt, but a vblank interrupt that fired a few |
| 646 | * microseconds before true start of vblank. Compensate |
| 647 | * by adding a full frame duration to the final timestamp. |
| 648 | * Happens, e.g., on ATI R500, R600. |
| 649 | * |
| 650 | * We only do this if DRM_CALLED_FROM_VBLIRQ. |
| 651 | */ |
| 652 | if ((flags & DRM_CALLED_FROM_VBLIRQ) && !invbl && |
| 653 | ((vdisplay - vpos) < vtotal / 100)) { |
| 654 | delta_ns = delta_ns - framedur_ns; |
| 655 | |
| 656 | /* Signal this correction as "applied". */ |
| 657 | vbl_status |= 0x8; |
| 658 | } |
| 659 | |
Imre Deak | c61eef7 | 2012-10-23 18:53:26 +0000 | [diff] [blame] | 660 | if (!drm_timestamp_monotonic) |
| 661 | etime = ktime_sub(etime, mono_time_offset); |
| 662 | |
Imre Deak | e62f2f5 | 2012-10-23 18:53:25 +0000 | [diff] [blame] | 663 | /* save this only for debugging purposes */ |
| 664 | tv_etime = ktime_to_timeval(etime); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 665 | /* Subtract time delta from raw timestamp to get final |
| 666 | * vblank_time timestamp for end of vblank. |
| 667 | */ |
Michel Dänzer | e91abf8 | 2013-06-12 11:58:44 +0200 | [diff] [blame] | 668 | if (delta_ns < 0) |
| 669 | etime = ktime_add_ns(etime, -delta_ns); |
| 670 | else |
| 671 | etime = ktime_sub_ns(etime, delta_ns); |
Imre Deak | e62f2f5 | 2012-10-23 18:53:25 +0000 | [diff] [blame] | 672 | *vblank_time = ktime_to_timeval(etime); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 673 | |
Joe Perches | bbb0aef5 | 2011-04-17 20:35:52 -0700 | [diff] [blame] | 674 | DRM_DEBUG("crtc %d : v %d p(%d,%d)@ %ld.%ld -> %ld.%ld [e %d us, %d rep]\n", |
| 675 | crtc, (int)vbl_status, hpos, vpos, |
Imre Deak | e62f2f5 | 2012-10-23 18:53:25 +0000 | [diff] [blame] | 676 | (long)tv_etime.tv_sec, (long)tv_etime.tv_usec, |
Joe Perches | bbb0aef5 | 2011-04-17 20:35:52 -0700 | [diff] [blame] | 677 | (long)vblank_time->tv_sec, (long)vblank_time->tv_usec, |
| 678 | (int)duration_ns/1000, i); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 679 | |
| 680 | vbl_status = DRM_VBLANKTIME_SCANOUTPOS_METHOD; |
| 681 | if (invbl) |
| 682 | vbl_status |= DRM_VBLANKTIME_INVBL; |
| 683 | |
| 684 | return vbl_status; |
| 685 | } |
| 686 | EXPORT_SYMBOL(drm_calc_vbltimestamp_from_scanoutpos); |
| 687 | |
Imre Deak | c61eef7 | 2012-10-23 18:53:26 +0000 | [diff] [blame] | 688 | static struct timeval get_drm_timestamp(void) |
| 689 | { |
| 690 | ktime_t now; |
| 691 | |
| 692 | now = ktime_get(); |
| 693 | if (!drm_timestamp_monotonic) |
| 694 | now = ktime_sub(now, ktime_get_monotonic_offset()); |
| 695 | |
| 696 | return ktime_to_timeval(now); |
| 697 | } |
| 698 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 699 | /** |
| 700 | * drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent |
| 701 | * vblank interval. |
| 702 | * |
| 703 | * @dev: DRM device |
| 704 | * @crtc: which crtc's vblank timestamp to retrieve |
| 705 | * @tvblank: Pointer to target struct timeval which should receive the timestamp |
| 706 | * @flags: Flags to pass to driver: |
| 707 | * 0 = Default. |
| 708 | * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl irq handler. |
| 709 | * |
| 710 | * Fetches the system timestamp corresponding to the time of the most recent |
| 711 | * vblank interval on specified crtc. May call into kms-driver to |
| 712 | * compute the timestamp with a high-precision GPU specific method. |
| 713 | * |
| 714 | * Returns zero if timestamp originates from uncorrected do_gettimeofday() |
| 715 | * call, i.e., it isn't very precisely locked to the true vblank. |
| 716 | * |
| 717 | * Returns non-zero if timestamp is considered to be very precise. |
| 718 | */ |
| 719 | u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc, |
| 720 | struct timeval *tvblank, unsigned flags) |
| 721 | { |
Laurent Pinchart | 4a1b071 | 2012-05-17 13:27:21 +0200 | [diff] [blame] | 722 | int ret; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 723 | |
| 724 | /* Define requested maximum error on timestamps (nanoseconds). */ |
| 725 | int max_error = (int) drm_timestamp_precision * 1000; |
| 726 | |
| 727 | /* Query driver if possible and precision timestamping enabled. */ |
| 728 | if (dev->driver->get_vblank_timestamp && (max_error > 0)) { |
| 729 | ret = dev->driver->get_vblank_timestamp(dev, crtc, &max_error, |
| 730 | tvblank, flags); |
| 731 | if (ret > 0) |
| 732 | return (u32) ret; |
| 733 | } |
| 734 | |
| 735 | /* GPU high precision timestamp query unsupported or failed. |
Imre Deak | c61eef7 | 2012-10-23 18:53:26 +0000 | [diff] [blame] | 736 | * Return current monotonic/gettimeofday timestamp as best estimate. |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 737 | */ |
Imre Deak | c61eef7 | 2012-10-23 18:53:26 +0000 | [diff] [blame] | 738 | *tvblank = get_drm_timestamp(); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 739 | |
| 740 | return 0; |
| 741 | } |
| 742 | EXPORT_SYMBOL(drm_get_last_vbltimestamp); |
| 743 | |
| 744 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 745 | * drm_vblank_count - retrieve "cooked" vblank counter value |
| 746 | * @dev: DRM device |
| 747 | * @crtc: which counter to retrieve |
| 748 | * |
| 749 | * Fetches the "cooked" vblank count value that represents the number of |
| 750 | * vblank events since the system was booted, including lost events due to |
| 751 | * modesetting activity. |
| 752 | */ |
| 753 | u32 drm_vblank_count(struct drm_device *dev, int crtc) |
| 754 | { |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 755 | return atomic_read(&dev->vblank[crtc].count); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 756 | } |
| 757 | EXPORT_SYMBOL(drm_vblank_count); |
| 758 | |
| 759 | /** |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 760 | * drm_vblank_count_and_time - retrieve "cooked" vblank counter value |
| 761 | * and the system timestamp corresponding to that vblank counter value. |
| 762 | * |
| 763 | * @dev: DRM device |
| 764 | * @crtc: which counter to retrieve |
| 765 | * @vblanktime: Pointer to struct timeval to receive the vblank timestamp. |
| 766 | * |
| 767 | * Fetches the "cooked" vblank count value that represents the number of |
| 768 | * vblank events since the system was booted, including lost events due to |
| 769 | * modesetting activity. Returns corresponding system timestamp of the time |
| 770 | * of the vblank interval that corresponds to the current value vblank counter |
| 771 | * value. |
| 772 | */ |
| 773 | u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc, |
| 774 | struct timeval *vblanktime) |
| 775 | { |
| 776 | u32 cur_vblank; |
| 777 | |
| 778 | /* Read timestamp from slot of _vblank_time ringbuffer |
| 779 | * that corresponds to current vblank count. Retry if |
| 780 | * count has incremented during readout. This works like |
| 781 | * a seqlock. |
| 782 | */ |
| 783 | do { |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 784 | cur_vblank = atomic_read(&dev->vblank[crtc].count); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 785 | *vblanktime = vblanktimestamp(dev, crtc, cur_vblank); |
| 786 | smp_rmb(); |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 787 | } while (cur_vblank != atomic_read(&dev->vblank[crtc].count)); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 788 | |
| 789 | return cur_vblank; |
| 790 | } |
| 791 | EXPORT_SYMBOL(drm_vblank_count_and_time); |
| 792 | |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 793 | static void send_vblank_event(struct drm_device *dev, |
| 794 | struct drm_pending_vblank_event *e, |
| 795 | unsigned long seq, struct timeval *now) |
| 796 | { |
| 797 | WARN_ON_SMP(!spin_is_locked(&dev->event_lock)); |
| 798 | e->event.sequence = seq; |
| 799 | e->event.tv_sec = now->tv_sec; |
| 800 | e->event.tv_usec = now->tv_usec; |
| 801 | |
| 802 | list_add_tail(&e->base.link, |
| 803 | &e->base.file_priv->event_list); |
| 804 | wake_up_interruptible(&e->base.file_priv->event_wait); |
| 805 | trace_drm_vblank_event_delivered(e->base.pid, e->pipe, |
| 806 | e->event.sequence); |
| 807 | } |
| 808 | |
| 809 | /** |
| 810 | * drm_send_vblank_event - helper to send vblank event after pageflip |
| 811 | * @dev: DRM device |
| 812 | * @crtc: CRTC in question |
| 813 | * @e: the event to send |
| 814 | * |
| 815 | * Updates sequence # and timestamp on event, and sends it to userspace. |
| 816 | * Caller must hold event lock. |
| 817 | */ |
| 818 | void drm_send_vblank_event(struct drm_device *dev, int crtc, |
| 819 | struct drm_pending_vblank_event *e) |
| 820 | { |
| 821 | struct timeval now; |
| 822 | unsigned int seq; |
| 823 | if (crtc >= 0) { |
| 824 | seq = drm_vblank_count_and_time(dev, crtc, &now); |
| 825 | } else { |
| 826 | seq = 0; |
Imre Deak | c61eef7 | 2012-10-23 18:53:26 +0000 | [diff] [blame] | 827 | |
| 828 | now = get_drm_timestamp(); |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 829 | } |
Rob Clark | 21a245d | 2012-12-10 10:49:46 -0600 | [diff] [blame] | 830 | e->pipe = crtc; |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 831 | send_vblank_event(dev, e, seq, &now); |
| 832 | } |
| 833 | EXPORT_SYMBOL(drm_send_vblank_event); |
| 834 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 835 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 836 | * drm_update_vblank_count - update the master vblank counter |
| 837 | * @dev: DRM device |
| 838 | * @crtc: counter to update |
| 839 | * |
| 840 | * Call back into the driver to update the appropriate vblank counter |
| 841 | * (specified by @crtc). Deal with wraparound, if it occurred, and |
| 842 | * update the last read value so we can deal with wraparound on the next |
| 843 | * call if necessary. |
| 844 | * |
| 845 | * Only necessary when going from off->on, to account for frames we |
| 846 | * didn't get an interrupt for. |
| 847 | * |
| 848 | * Note: caller must hold dev->vbl_lock since this reads & writes |
| 849 | * device vblank fields. |
| 850 | */ |
| 851 | static void drm_update_vblank_count(struct drm_device *dev, int crtc) |
| 852 | { |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 853 | u32 cur_vblank, diff, tslot, rc; |
| 854 | struct timeval t_vblank; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 855 | |
| 856 | /* |
| 857 | * Interrupts were disabled prior to this call, so deal with counter |
| 858 | * wrap if needed. |
| 859 | * NOTE! It's possible we lost a full dev->max_vblank_count events |
| 860 | * here if the register is small or we had vblank interrupts off for |
| 861 | * a long time. |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 862 | * |
| 863 | * We repeat the hardware vblank counter & timestamp query until |
| 864 | * we get consistent results. This to prevent races between gpu |
| 865 | * updating its hardware counter while we are retrieving the |
| 866 | * corresponding vblank timestamp. |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 867 | */ |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 868 | do { |
| 869 | cur_vblank = dev->driver->get_vblank_counter(dev, crtc); |
| 870 | rc = drm_get_last_vbltimestamp(dev, crtc, &t_vblank, 0); |
| 871 | } while (cur_vblank != dev->driver->get_vblank_counter(dev, crtc)); |
| 872 | |
| 873 | /* Deal with counter wrap */ |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 874 | diff = cur_vblank - dev->vblank[crtc].last; |
| 875 | if (cur_vblank < dev->vblank[crtc].last) { |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 876 | diff += dev->max_vblank_count; |
| 877 | |
| 878 | DRM_DEBUG("last_vblank[%d]=0x%x, cur_vblank=0x%x => diff=0x%x\n", |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 879 | crtc, dev->vblank[crtc].last, cur_vblank, diff); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 880 | } |
| 881 | |
| 882 | DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n", |
| 883 | crtc, diff); |
| 884 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 885 | /* Reinitialize corresponding vblank timestamp if high-precision query |
| 886 | * available. Skip this step if query unsupported or failed. Will |
| 887 | * reinitialize delayed at next vblank interrupt in that case. |
| 888 | */ |
| 889 | if (rc) { |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 890 | tslot = atomic_read(&dev->vblank[crtc].count) + diff; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 891 | vblanktimestamp(dev, crtc, tslot) = t_vblank; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 892 | } |
| 893 | |
Mario Kleiner | bc21512 | 2011-02-21 05:42:01 +0100 | [diff] [blame] | 894 | smp_mb__before_atomic_inc(); |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 895 | atomic_add(diff, &dev->vblank[crtc].count); |
Mario Kleiner | bc21512 | 2011-02-21 05:42:01 +0100 | [diff] [blame] | 896 | smp_mb__after_atomic_inc(); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 897 | } |
| 898 | |
| 899 | /** |
| 900 | * drm_vblank_get - get a reference count on vblank events |
| 901 | * @dev: DRM device |
| 902 | * @crtc: which CRTC to own |
| 903 | * |
| 904 | * Acquire a reference count on vblank events to avoid having them disabled |
| 905 | * while in use. |
| 906 | * |
| 907 | * RETURNS |
| 908 | * Zero on success, nonzero on failure. |
| 909 | */ |
| 910 | int drm_vblank_get(struct drm_device *dev, int crtc) |
| 911 | { |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 912 | unsigned long irqflags, irqflags2; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 913 | int ret = 0; |
| 914 | |
| 915 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
| 916 | /* Going from 0->1 means we have to enable interrupts again */ |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 917 | if (atomic_add_return(1, &dev->vblank[crtc].refcount) == 1) { |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 918 | spin_lock_irqsave(&dev->vblank_time_lock, irqflags2); |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 919 | if (!dev->vblank[crtc].enabled) { |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 920 | /* Enable vblank irqs under vblank_time_lock protection. |
| 921 | * All vblank count & timestamp updates are held off |
| 922 | * until we are done reinitializing master counter and |
| 923 | * timestamps. Filtercode in drm_handle_vblank() will |
| 924 | * prevent double-accounting of same vblank interval. |
| 925 | */ |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 926 | ret = dev->driver->enable_vblank(dev, crtc); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 927 | DRM_DEBUG("enabling vblank on crtc %d, ret: %d\n", |
| 928 | crtc, ret); |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 929 | if (ret) |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 930 | atomic_dec(&dev->vblank[crtc].refcount); |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 931 | else { |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 932 | dev->vblank[crtc].enabled = true; |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 933 | drm_update_vblank_count(dev, crtc); |
| 934 | } |
| 935 | } |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 936 | spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags2); |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 937 | } else { |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 938 | if (!dev->vblank[crtc].enabled) { |
| 939 | atomic_dec(&dev->vblank[crtc].refcount); |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 940 | ret = -EINVAL; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 941 | } |
| 942 | } |
| 943 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
| 944 | |
| 945 | return ret; |
| 946 | } |
| 947 | EXPORT_SYMBOL(drm_vblank_get); |
| 948 | |
| 949 | /** |
| 950 | * drm_vblank_put - give up ownership of vblank events |
| 951 | * @dev: DRM device |
| 952 | * @crtc: which counter to give up |
| 953 | * |
| 954 | * Release ownership of a given vblank counter, turning off interrupts |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 955 | * if possible. Disable interrupts after drm_vblank_offdelay milliseconds. |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 956 | */ |
| 957 | void drm_vblank_put(struct drm_device *dev, int crtc) |
| 958 | { |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 959 | BUG_ON(atomic_read(&dev->vblank[crtc].refcount) == 0); |
Chris Wilson | b3f5e73 | 2009-02-19 14:48:22 +0000 | [diff] [blame] | 960 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 961 | /* Last user schedules interrupt disable */ |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 962 | if (atomic_dec_and_test(&dev->vblank[crtc].refcount) && |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 963 | (drm_vblank_offdelay > 0)) |
| 964 | mod_timer(&dev->vblank_disable_timer, |
| 965 | jiffies + ((drm_vblank_offdelay * DRM_HZ)/1000)); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 966 | } |
| 967 | EXPORT_SYMBOL(drm_vblank_put); |
| 968 | |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 969 | /** |
| 970 | * drm_vblank_off - disable vblank events on a CRTC |
| 971 | * @dev: DRM device |
| 972 | * @crtc: CRTC in question |
| 973 | * |
| 974 | * Caller must hold event lock. |
| 975 | */ |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 976 | void drm_vblank_off(struct drm_device *dev, int crtc) |
| 977 | { |
Christopher James Halse Rogers | 498548e | 2011-04-27 16:10:57 +1000 | [diff] [blame] | 978 | struct drm_pending_vblank_event *e, *t; |
| 979 | struct timeval now; |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 980 | unsigned long irqflags; |
Christopher James Halse Rogers | 498548e | 2011-04-27 16:10:57 +1000 | [diff] [blame] | 981 | unsigned int seq; |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 982 | |
| 983 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 984 | vblank_disable_and_save(dev, crtc); |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 985 | DRM_WAKEUP(&dev->vblank[crtc].queue); |
Christopher James Halse Rogers | 498548e | 2011-04-27 16:10:57 +1000 | [diff] [blame] | 986 | |
| 987 | /* Send any queued vblank events, lest the natives grow disquiet */ |
| 988 | seq = drm_vblank_count_and_time(dev, crtc, &now); |
Imre Deak | e7783ba | 2012-11-02 13:30:50 +0200 | [diff] [blame] | 989 | |
| 990 | spin_lock(&dev->event_lock); |
Christopher James Halse Rogers | 498548e | 2011-04-27 16:10:57 +1000 | [diff] [blame] | 991 | list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) { |
| 992 | if (e->pipe != crtc) |
| 993 | continue; |
| 994 | DRM_DEBUG("Sending premature vblank event on disable: \ |
| 995 | wanted %d, current %d\n", |
| 996 | e->event.sequence, seq); |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 997 | list_del(&e->base.link); |
Christopher James Halse Rogers | 498548e | 2011-04-27 16:10:57 +1000 | [diff] [blame] | 998 | drm_vblank_put(dev, e->pipe); |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 999 | send_vblank_event(dev, e, seq, &now); |
Christopher James Halse Rogers | 498548e | 2011-04-27 16:10:57 +1000 | [diff] [blame] | 1000 | } |
Imre Deak | e7783ba | 2012-11-02 13:30:50 +0200 | [diff] [blame] | 1001 | spin_unlock(&dev->event_lock); |
Christopher James Halse Rogers | 498548e | 2011-04-27 16:10:57 +1000 | [diff] [blame] | 1002 | |
Li Peng | 778c902 | 2009-11-09 12:51:22 +0800 | [diff] [blame] | 1003 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
| 1004 | } |
| 1005 | EXPORT_SYMBOL(drm_vblank_off); |
| 1006 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1007 | /** |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 1008 | * drm_vblank_pre_modeset - account for vblanks across mode sets |
| 1009 | * @dev: DRM device |
| 1010 | * @crtc: CRTC in question |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 1011 | * |
| 1012 | * Account for vblank events across mode setting events, which will likely |
| 1013 | * reset the hardware frame counter. |
| 1014 | */ |
| 1015 | void drm_vblank_pre_modeset(struct drm_device *dev, int crtc) |
| 1016 | { |
Huacai Chen | b7ea85a | 2013-05-21 06:23:43 +0000 | [diff] [blame] | 1017 | /* vblank is not initialized (IRQ not installed ?), or has been freed */ |
Jerome Glisse | e77cef9 | 2010-01-07 15:39:13 +0100 | [diff] [blame] | 1018 | if (!dev->num_crtcs) |
| 1019 | return; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 1020 | /* |
| 1021 | * To avoid all the problems that might happen if interrupts |
| 1022 | * were enabled/disabled around or between these calls, we just |
| 1023 | * have the kernel take a reference on the CRTC (just once though |
| 1024 | * to avoid corrupting the count if multiple, mismatch calls occur), |
| 1025 | * so that interrupts remain enabled in the interim. |
| 1026 | */ |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 1027 | if (!dev->vblank[crtc].inmodeset) { |
| 1028 | dev->vblank[crtc].inmodeset = 0x1; |
Chris Wilson | b3f5e73 | 2009-02-19 14:48:22 +0000 | [diff] [blame] | 1029 | if (drm_vblank_get(dev, crtc) == 0) |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 1030 | dev->vblank[crtc].inmodeset |= 0x2; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 1031 | } |
| 1032 | } |
| 1033 | EXPORT_SYMBOL(drm_vblank_pre_modeset); |
| 1034 | |
| 1035 | void drm_vblank_post_modeset(struct drm_device *dev, int crtc) |
| 1036 | { |
| 1037 | unsigned long irqflags; |
| 1038 | |
Huacai Chen | b7ea85a | 2013-05-21 06:23:43 +0000 | [diff] [blame] | 1039 | /* vblank is not initialized (IRQ not installed ?), or has been freed */ |
| 1040 | if (!dev->num_crtcs) |
| 1041 | return; |
| 1042 | |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 1043 | if (dev->vblank[crtc].inmodeset) { |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 1044 | spin_lock_irqsave(&dev->vbl_lock, irqflags); |
Ville Syrjälä | ba0bf12 | 2013-10-04 14:53:33 +0300 | [diff] [blame] | 1045 | dev->vblank_disable_allowed = true; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 1046 | spin_unlock_irqrestore(&dev->vbl_lock, irqflags); |
Chris Wilson | b3f5e73 | 2009-02-19 14:48:22 +0000 | [diff] [blame] | 1047 | |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 1048 | if (dev->vblank[crtc].inmodeset & 0x2) |
Chris Wilson | b3f5e73 | 2009-02-19 14:48:22 +0000 | [diff] [blame] | 1049 | drm_vblank_put(dev, crtc); |
| 1050 | |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 1051 | dev->vblank[crtc].inmodeset = 0; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 1052 | } |
| 1053 | } |
| 1054 | EXPORT_SYMBOL(drm_vblank_post_modeset); |
| 1055 | |
| 1056 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1057 | * drm_modeset_ctl - handle vblank event counter changes across mode switch |
| 1058 | * @DRM_IOCTL_ARGS: standard ioctl arguments |
| 1059 | * |
| 1060 | * Applications should call the %_DRM_PRE_MODESET and %_DRM_POST_MODESET |
| 1061 | * ioctls around modesetting so that any lost vblank events are accounted for. |
| 1062 | * |
| 1063 | * Generally the counter will reset across mode sets. If interrupts are |
| 1064 | * enabled around this call, we don't have to do anything since the counter |
| 1065 | * will have already been incremented. |
| 1066 | */ |
| 1067 | int drm_modeset_ctl(struct drm_device *dev, void *data, |
| 1068 | struct drm_file *file_priv) |
| 1069 | { |
| 1070 | struct drm_modeset_ctl *modeset = data; |
Dave Airlie | 1922756 | 2011-02-24 08:35:06 +1000 | [diff] [blame] | 1071 | unsigned int crtc; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1072 | |
| 1073 | /* If drm_vblank_init() hasn't been called yet, just no-op */ |
| 1074 | if (!dev->num_crtcs) |
Laurent Pinchart | 4a1b071 | 2012-05-17 13:27:21 +0200 | [diff] [blame] | 1075 | return 0; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1076 | |
Laurent Pinchart | 2993555 | 2012-05-30 00:58:09 +0200 | [diff] [blame] | 1077 | /* KMS drivers handle this internally */ |
| 1078 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 1079 | return 0; |
| 1080 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1081 | crtc = modeset->crtc; |
Laurent Pinchart | 4a1b071 | 2012-05-17 13:27:21 +0200 | [diff] [blame] | 1082 | if (crtc >= dev->num_crtcs) |
| 1083 | return -EINVAL; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1084 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1085 | switch (modeset->cmd) { |
| 1086 | case _DRM_PRE_MODESET: |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 1087 | drm_vblank_pre_modeset(dev, crtc); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1088 | break; |
| 1089 | case _DRM_POST_MODESET: |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 1090 | drm_vblank_post_modeset(dev, crtc); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1091 | break; |
| 1092 | default: |
Laurent Pinchart | 4a1b071 | 2012-05-17 13:27:21 +0200 | [diff] [blame] | 1093 | return -EINVAL; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1094 | } |
| 1095 | |
Laurent Pinchart | 4a1b071 | 2012-05-17 13:27:21 +0200 | [diff] [blame] | 1096 | return 0; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1097 | } |
| 1098 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1099 | static int drm_queue_vblank_event(struct drm_device *dev, int pipe, |
| 1100 | union drm_wait_vblank *vblwait, |
| 1101 | struct drm_file *file_priv) |
| 1102 | { |
| 1103 | struct drm_pending_vblank_event *e; |
| 1104 | struct timeval now; |
| 1105 | unsigned long flags; |
| 1106 | unsigned int seq; |
Chris Wilson | ea5d552 | 2010-12-01 19:41:31 +0000 | [diff] [blame] | 1107 | int ret; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1108 | |
| 1109 | e = kzalloc(sizeof *e, GFP_KERNEL); |
Chris Wilson | ea5d552 | 2010-12-01 19:41:31 +0000 | [diff] [blame] | 1110 | if (e == NULL) { |
| 1111 | ret = -ENOMEM; |
| 1112 | goto err_put; |
| 1113 | } |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1114 | |
| 1115 | e->pipe = pipe; |
Jesse Barnes | b9c2c9a | 2010-07-01 16:48:09 -0700 | [diff] [blame] | 1116 | e->base.pid = current->pid; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1117 | e->event.base.type = DRM_EVENT_VBLANK; |
| 1118 | e->event.base.length = sizeof e->event; |
| 1119 | e->event.user_data = vblwait->request.signal; |
| 1120 | e->base.event = &e->event.base; |
| 1121 | e->base.file_priv = file_priv; |
| 1122 | e->base.destroy = (void (*) (struct drm_pending_event *)) kfree; |
| 1123 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1124 | spin_lock_irqsave(&dev->event_lock, flags); |
| 1125 | |
| 1126 | if (file_priv->event_space < sizeof e->event) { |
Chris Wilson | ea5d552 | 2010-12-01 19:41:31 +0000 | [diff] [blame] | 1127 | ret = -EBUSY; |
| 1128 | goto err_unlock; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1129 | } |
| 1130 | |
| 1131 | file_priv->event_space -= sizeof e->event; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1132 | seq = drm_vblank_count_and_time(dev, pipe, &now); |
| 1133 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1134 | if ((vblwait->request.type & _DRM_VBLANK_NEXTONMISS) && |
| 1135 | (seq - vblwait->request.sequence) <= (1 << 23)) { |
| 1136 | vblwait->request.sequence = seq + 1; |
Jesse Barnes | 4a92164 | 2009-11-10 08:21:25 +0000 | [diff] [blame] | 1137 | vblwait->reply.sequence = vblwait->request.sequence; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1138 | } |
| 1139 | |
| 1140 | DRM_DEBUG("event on vblank count %d, current %d, crtc %d\n", |
| 1141 | vblwait->request.sequence, seq, pipe); |
| 1142 | |
Jesse Barnes | b9c2c9a | 2010-07-01 16:48:09 -0700 | [diff] [blame] | 1143 | trace_drm_vblank_event_queued(current->pid, pipe, |
| 1144 | vblwait->request.sequence); |
| 1145 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1146 | e->event.sequence = vblwait->request.sequence; |
| 1147 | if ((seq - vblwait->request.sequence) <= (1 << 23)) { |
Dan Carpenter | 6f33162 | 2010-12-09 08:35:40 +0300 | [diff] [blame] | 1148 | drm_vblank_put(dev, pipe); |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 1149 | send_vblank_event(dev, e, seq, &now); |
Mario Kleiner | 000fa7c | 2010-12-10 16:00:19 +0100 | [diff] [blame] | 1150 | vblwait->reply.sequence = seq; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1151 | } else { |
Ilija Hadzic | a6778e9 | 2011-10-31 13:11:57 -0400 | [diff] [blame] | 1152 | /* drm_handle_vblank_events will call drm_vblank_put */ |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1153 | list_add_tail(&e->base.link, &dev->vblank_event_list); |
Mario Kleiner | 000fa7c | 2010-12-10 16:00:19 +0100 | [diff] [blame] | 1154 | vblwait->reply.sequence = vblwait->request.sequence; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1155 | } |
| 1156 | |
| 1157 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 1158 | |
| 1159 | return 0; |
Chris Wilson | ea5d552 | 2010-12-01 19:41:31 +0000 | [diff] [blame] | 1160 | |
| 1161 | err_unlock: |
| 1162 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 1163 | kfree(e); |
| 1164 | err_put: |
Dan Carpenter | 6f33162 | 2010-12-09 08:35:40 +0300 | [diff] [blame] | 1165 | drm_vblank_put(dev, pipe); |
Chris Wilson | ea5d552 | 2010-12-01 19:41:31 +0000 | [diff] [blame] | 1166 | return ret; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1167 | } |
| 1168 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1169 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | * Wait for VBLANK. |
| 1171 | * |
| 1172 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 1173 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | * \param cmd command. |
| 1175 | * \param data user argument, pointing to a drm_wait_vblank structure. |
| 1176 | * \return zero on success or a negative number on failure. |
| 1177 | * |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 1178 | * This function enables the vblank interrupt on the pipe requested, then |
| 1179 | * sleeps waiting for the requested sequence number to occur, and drops |
| 1180 | * the vblank interrupt refcount afterwards. (vblank irq disable follows that |
| 1181 | * after a timeout with no further vblank waits scheduled). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | */ |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1183 | int drm_wait_vblank(struct drm_device *dev, void *data, |
| 1184 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1186 | union drm_wait_vblank *vblwait = data; |
Laurent Pinchart | 4a1b071 | 2012-05-17 13:27:21 +0200 | [diff] [blame] | 1187 | int ret; |
Ilija Hadzic | 19b01b5 | 2011-03-18 16:58:04 -0500 | [diff] [blame] | 1188 | unsigned int flags, seq, crtc, high_crtc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | |
Thierry Reding | 03f6509 | 2013-01-14 16:05:56 +0000 | [diff] [blame] | 1190 | if (drm_core_check_feature(dev, DRIVER_HAVE_IRQ)) |
| 1191 | if ((!drm_dev_to_irq(dev)) || (!dev->irq_enabled)) |
| 1192 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 1194 | if (vblwait->request.type & _DRM_VBLANK_SIGNAL) |
| 1195 | return -EINVAL; |
| 1196 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1197 | if (vblwait->request.type & |
Ilija Hadzic | 19b01b5 | 2011-03-18 16:58:04 -0500 | [diff] [blame] | 1198 | ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK | |
| 1199 | _DRM_VBLANK_HIGH_CRTC_MASK)) { |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 1200 | DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n", |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1201 | vblwait->request.type, |
Ilija Hadzic | 19b01b5 | 2011-03-18 16:58:04 -0500 | [diff] [blame] | 1202 | (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK | |
| 1203 | _DRM_VBLANK_HIGH_CRTC_MASK)); |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 1204 | return -EINVAL; |
| 1205 | } |
| 1206 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1207 | flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK; |
Ilija Hadzic | 19b01b5 | 2011-03-18 16:58:04 -0500 | [diff] [blame] | 1208 | high_crtc = (vblwait->request.type & _DRM_VBLANK_HIGH_CRTC_MASK); |
| 1209 | if (high_crtc) |
| 1210 | crtc = high_crtc >> _DRM_VBLANK_HIGH_CRTC_SHIFT; |
| 1211 | else |
| 1212 | crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1213 | if (crtc >= dev->num_crtcs) |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 1214 | return -EINVAL; |
| 1215 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1216 | ret = drm_vblank_get(dev, crtc); |
| 1217 | if (ret) { |
Paul Rolland | 8d3457e | 2009-08-09 12:24:01 +1000 | [diff] [blame] | 1218 | DRM_DEBUG("failed to acquire vblank counter, %d\n", ret); |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1219 | return ret; |
| 1220 | } |
| 1221 | seq = drm_vblank_count(dev, crtc); |
=?utf-8?q?Michel_D=C3=A4nzer?= | 776c944 | 2006-10-24 22:24:38 +1000 | [diff] [blame] | 1222 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1223 | switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | case _DRM_VBLANK_RELATIVE: |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1225 | vblwait->request.sequence += seq; |
| 1226 | vblwait->request.type &= ~_DRM_VBLANK_RELATIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | case _DRM_VBLANK_ABSOLUTE: |
| 1228 | break; |
| 1229 | default: |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1230 | ret = -EINVAL; |
| 1231 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | } |
| 1233 | |
Ilija Hadzic | a6778e9 | 2011-10-31 13:11:57 -0400 | [diff] [blame] | 1234 | if (flags & _DRM_VBLANK_EVENT) { |
| 1235 | /* must hold on to the vblank ref until the event fires |
| 1236 | * drm_vblank_put will be called asynchronously |
| 1237 | */ |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1238 | return drm_queue_vblank_event(dev, crtc, vblwait, file_priv); |
Ilija Hadzic | a6778e9 | 2011-10-31 13:11:57 -0400 | [diff] [blame] | 1239 | } |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1240 | |
=?utf-8?q?Michel_D=C3=A4nzer?= | ab285d7 | 2006-10-24 23:34:18 +1000 | [diff] [blame] | 1241 | if ((flags & _DRM_VBLANK_NEXTONMISS) && |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 1242 | (seq - vblwait->request.sequence) <= (1<<23)) { |
| 1243 | vblwait->request.sequence = seq + 1; |
=?utf-8?q?Michel_D=C3=A4nzer?= | ab285d7 | 2006-10-24 23:34:18 +1000 | [diff] [blame] | 1244 | } |
| 1245 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 1246 | DRM_DEBUG("waiting on vblank count %d, crtc %d\n", |
| 1247 | vblwait->request.sequence, crtc); |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 1248 | dev->vblank[crtc].last_wait = vblwait->request.sequence; |
| 1249 | DRM_WAIT_ON(ret, dev->vblank[crtc].queue, 3 * DRM_HZ, |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 1250 | (((drm_vblank_count(dev, crtc) - |
| 1251 | vblwait->request.sequence) <= (1 << 23)) || |
| 1252 | !dev->irq_enabled)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 1254 | if (ret != -EINTR) { |
| 1255 | struct timeval now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1257 | vblwait->reply.sequence = drm_vblank_count_and_time(dev, crtc, &now); |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 1258 | vblwait->reply.tval_sec = now.tv_sec; |
| 1259 | vblwait->reply.tval_usec = now.tv_usec; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1260 | |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 1261 | DRM_DEBUG("returning %d to client\n", |
| 1262 | vblwait->reply.sequence); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | } else { |
Eric Anholt | 30b2363 | 2009-01-27 21:19:41 -0800 | [diff] [blame] | 1264 | DRM_DEBUG("vblank wait interrupted by signal\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | } |
| 1266 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1267 | done: |
| 1268 | drm_vblank_put(dev, crtc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | return ret; |
| 1270 | } |
| 1271 | |
Sachin Kamat | ea7f7ab | 2012-08-01 17:15:31 +0530 | [diff] [blame] | 1272 | static void drm_handle_vblank_events(struct drm_device *dev, int crtc) |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1273 | { |
| 1274 | struct drm_pending_vblank_event *e, *t; |
| 1275 | struct timeval now; |
| 1276 | unsigned long flags; |
| 1277 | unsigned int seq; |
| 1278 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1279 | seq = drm_vblank_count_and_time(dev, crtc, &now); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1280 | |
| 1281 | spin_lock_irqsave(&dev->event_lock, flags); |
| 1282 | |
| 1283 | list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) { |
| 1284 | if (e->pipe != crtc) |
| 1285 | continue; |
| 1286 | if ((seq - e->event.sequence) > (1<<23)) |
| 1287 | continue; |
| 1288 | |
| 1289 | DRM_DEBUG("vblank event on %d, current %d\n", |
| 1290 | e->event.sequence, seq); |
| 1291 | |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 1292 | list_del(&e->base.link); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1293 | drm_vblank_put(dev, e->pipe); |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 1294 | send_vblank_event(dev, e, seq, &now); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1295 | } |
| 1296 | |
| 1297 | spin_unlock_irqrestore(&dev->event_lock, flags); |
Jesse Barnes | ac2874b | 2010-07-01 16:47:31 -0700 | [diff] [blame] | 1298 | |
| 1299 | trace_drm_vblank_event(crtc, seq); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1300 | } |
| 1301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | /** |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1303 | * drm_handle_vblank - handle a vblank event |
| 1304 | * @dev: DRM device |
| 1305 | * @crtc: where this event occurred |
| 1306 | * |
| 1307 | * Drivers should call this routine in their vblank interrupt handlers to |
| 1308 | * update the vblank counter and send any signals that may be pending. |
| 1309 | */ |
Chris Wilson | 78c6e17 | 2011-01-31 10:48:04 +0000 | [diff] [blame] | 1310 | bool drm_handle_vblank(struct drm_device *dev, int crtc) |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1311 | { |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1312 | u32 vblcount; |
| 1313 | s64 diff_ns; |
| 1314 | struct timeval tvblank; |
| 1315 | unsigned long irqflags; |
| 1316 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1317 | if (!dev->num_crtcs) |
Chris Wilson | 78c6e17 | 2011-01-31 10:48:04 +0000 | [diff] [blame] | 1318 | return false; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1319 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1320 | /* Need timestamp lock to prevent concurrent execution with |
| 1321 | * vblank enable/disable, as this would cause inconsistent |
| 1322 | * or corrupted timestamps and vblank counts. |
| 1323 | */ |
| 1324 | spin_lock_irqsave(&dev->vblank_time_lock, irqflags); |
| 1325 | |
| 1326 | /* Vblank irq handling disabled. Nothing to do. */ |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 1327 | if (!dev->vblank[crtc].enabled) { |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1328 | spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags); |
Chris Wilson | 78c6e17 | 2011-01-31 10:48:04 +0000 | [diff] [blame] | 1329 | return false; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1330 | } |
| 1331 | |
| 1332 | /* Fetch corresponding timestamp for this vblank interval from |
| 1333 | * driver and store it in proper slot of timestamp ringbuffer. |
| 1334 | */ |
| 1335 | |
| 1336 | /* Get current timestamp and count. */ |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 1337 | vblcount = atomic_read(&dev->vblank[crtc].count); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1338 | drm_get_last_vbltimestamp(dev, crtc, &tvblank, DRM_CALLED_FROM_VBLIRQ); |
| 1339 | |
| 1340 | /* Compute time difference to timestamp of last vblank */ |
| 1341 | diff_ns = timeval_to_ns(&tvblank) - |
| 1342 | timeval_to_ns(&vblanktimestamp(dev, crtc, vblcount)); |
| 1343 | |
| 1344 | /* Update vblank timestamp and count if at least |
| 1345 | * DRM_REDUNDANT_VBLIRQ_THRESH_NS nanoseconds |
| 1346 | * difference between last stored timestamp and current |
| 1347 | * timestamp. A smaller difference means basically |
| 1348 | * identical timestamps. Happens if this vblank has |
| 1349 | * been already processed and this is a redundant call, |
| 1350 | * e.g., due to spurious vblank interrupts. We need to |
| 1351 | * ignore those for accounting. |
| 1352 | */ |
Mario Kleiner | c4cc383 | 2011-02-21 05:42:00 +0100 | [diff] [blame] | 1353 | if (abs64(diff_ns) > DRM_REDUNDANT_VBLIRQ_THRESH_NS) { |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1354 | /* Store new timestamp in ringbuffer. */ |
| 1355 | vblanktimestamp(dev, crtc, vblcount + 1) = tvblank; |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1356 | |
| 1357 | /* Increment cooked vblank count. This also atomically commits |
| 1358 | * the timestamp computed above. |
| 1359 | */ |
Mario Kleiner | bc21512 | 2011-02-21 05:42:01 +0100 | [diff] [blame] | 1360 | smp_mb__before_atomic_inc(); |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 1361 | atomic_inc(&dev->vblank[crtc].count); |
Mario Kleiner | bc21512 | 2011-02-21 05:42:01 +0100 | [diff] [blame] | 1362 | smp_mb__after_atomic_inc(); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1363 | } else { |
| 1364 | DRM_DEBUG("crtc %d: Redundant vblirq ignored. diff_ns = %d\n", |
| 1365 | crtc, (int) diff_ns); |
| 1366 | } |
| 1367 | |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame^] | 1368 | DRM_WAKEUP(&dev->vblank[crtc].queue); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 1369 | drm_handle_vblank_events(dev, crtc); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 1370 | |
| 1371 | spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags); |
Chris Wilson | 78c6e17 | 2011-01-31 10:48:04 +0000 | [diff] [blame] | 1372 | return true; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 1373 | } |
| 1374 | EXPORT_SYMBOL(drm_handle_vblank); |