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