]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/drm_irq.c
drm/i915: Apply the g4x TLB miss w/a to SR watermarks as well
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / drm_irq.c
CommitLineData
f5752b38
DV
1/*
2 * drm_irq.c IRQ and vblank support
1da177e4
LT
3 *
4 * \author Rickard E. (Rik) Faith <faith@valinux.com>
5 * \author Gareth Hughes <gareth@valinux.com>
6 */
7
8/*
9 * Created: Fri Mar 19 14:30:16 1999 by faith@valinux.com
10 *
11 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
12 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
13 * All Rights Reserved.
14 *
15 * Permission is hereby granted, free of charge, to any person obtaining a
16 * copy of this software and associated documentation files (the "Software"),
17 * to deal in the Software without restriction, including without limitation
18 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
19 * and/or sell copies of the Software, and to permit persons to whom the
20 * Software is furnished to do so, subject to the following conditions:
21 *
22 * The above copyright notice and this permission notice (including the next
23 * paragraph) shall be included in all copies or substantial portions of the
24 * Software.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
29 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
30 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
31 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
32 * OTHER DEALINGS IN THE SOFTWARE.
33 */
34
760285e7 35#include <drm/drmP.h>
ac2874b9 36#include "drm_trace.h"
18882995 37#include "drm_internal.h"
1da177e4
LT
38
39#include <linux/interrupt.h> /* For task queue support */
5a0e3ad6 40#include <linux/slab.h>
1da177e4 41
28d52043 42#include <linux/vgaarb.h>
2d1a8a48 43#include <linux/export.h>
27641c3f 44
27641c3f
MK
45/* Retry timestamp calculation up to 3 times to satisfy
46 * drm_timestamp_precision before giving up.
47 */
48#define DRM_TIMESTAMP_MAXRETRIES 3
49
50/* Threshold in nanoseconds for detection of redundant
51 * vblank irq in drm_handle_vblank(). 1 msec should be ok.
52 */
53#define DRM_REDUNDANT_VBLIRQ_THRESH_NS 1000000
54
fb446a1a 55static bool
cc1ef118 56drm_get_last_vbltimestamp(struct drm_device *dev, unsigned int pipe,
fb446a1a
DV
57 struct timeval *tvblank, unsigned flags);
58
18882995
DV
59static unsigned int drm_timestamp_precision = 20; /* Default to 20 usecs. */
60
61/*
62 * Default to use monotonic timestamps for wait-for-vblank and page-flip
63 * complete events.
64 */
65unsigned int drm_timestamp_monotonic = 1;
66
67static int drm_vblank_offdelay = 5000; /* Default to 5000 msecs. */
68
69module_param_named(vblankoffdelay, drm_vblank_offdelay, int, 0600);
70module_param_named(timestamp_precision_usec, drm_timestamp_precision, int, 0600);
71module_param_named(timestamp_monotonic, drm_timestamp_monotonic, int, 0600);
d9d8c4cf
DC
72MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs] (0: never disable, <0: disable immediately)");
73MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]");
74MODULE_PARM_DESC(timestamp_monotonic, "Use monotonic timestamps");
18882995 75
1da248a5 76static void store_vblank(struct drm_device *dev, unsigned int pipe,
209e4dbc 77 u32 vblank_count_inc,
4dfd6486 78 struct timeval *t_vblank, u32 last)
99264a61 79{
1da248a5 80 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
99264a61
DV
81
82 assert_spin_locked(&dev->vblank_time_lock);
83
4dfd6486
VS
84 vblank->last = last;
85
d4055a9b
MA
86 write_seqlock(&vblank->seqlock);
87 vblank->time = *t_vblank;
99264a61 88 vblank->count += vblank_count_inc;
d4055a9b 89 write_sequnlock(&vblank->seqlock);
99264a61
DV
90}
91
5ac74757
SG
92/*
93 * "No hw counter" fallback implementation of .get_vblank_counter() hook,
94 * if there is no useable hardware frame counter available.
95 */
96static u32 drm_vblank_no_hw_counter(struct drm_device *dev, unsigned int pipe)
97{
98 WARN_ON_ONCE(dev->max_vblank_count != 0);
99 return 0;
100}
101
84e35483
SG
102static u32 __get_vblank_counter(struct drm_device *dev, unsigned int pipe)
103{
104 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
105 struct drm_crtc *crtc = drm_crtc_from_index(dev, pipe);
106
107 if (crtc->funcs->get_vblank_counter)
108 return crtc->funcs->get_vblank_counter(crtc);
109 }
110
111 if (dev->driver->get_vblank_counter)
112 return dev->driver->get_vblank_counter(dev, pipe);
113
114 return drm_vblank_no_hw_counter(dev, pipe);
115}
116
00edbe19 117/*
4dfd6486
VS
118 * Reset the stored timestamp for the current vblank count to correspond
119 * to the last vblank occurred.
120 *
2d1e331f 121 * Only to be called from drm_crtc_vblank_on().
4dfd6486 122 *
ef40cbf9 123 * Note: caller must hold &drm_device.vbl_lock since this reads & writes
4dfd6486
VS
124 * device vblank fields.
125 */
126static void drm_reset_vblank_timestamp(struct drm_device *dev, unsigned int pipe)
127{
128 u32 cur_vblank;
129 bool rc;
130 struct timeval t_vblank;
131 int count = DRM_TIMESTAMP_MAXRETRIES;
132
133 spin_lock(&dev->vblank_time_lock);
134
135 /*
136 * sample the current counter to avoid random jumps
137 * when drm_vblank_enable() applies the diff
138 */
139 do {
84e35483 140 cur_vblank = __get_vblank_counter(dev, pipe);
4dfd6486 141 rc = drm_get_last_vbltimestamp(dev, pipe, &t_vblank, 0);
84e35483 142 } while (cur_vblank != __get_vblank_counter(dev, pipe) && --count > 0);
4dfd6486
VS
143
144 /*
145 * Only reinitialize corresponding vblank timestamp if high-precision query
146 * available and didn't fail. Otherwise reinitialize delayed at next vblank
147 * interrupt and assign 0 for now, to mark the vblanktimestamp as invalid.
148 */
149 if (!rc)
150 t_vblank = (struct timeval) {0, 0};
151
152 /*
153 * +1 to make sure user will never see the same
154 * vblank counter value before and after a modeset
155 */
156 store_vblank(dev, pipe, 1, &t_vblank, cur_vblank);
157
158 spin_unlock(&dev->vblank_time_lock);
159}
160
00edbe19 161/*
13b030af 162 * Call back into the driver to update the appropriate vblank counter
1da248a5 163 * (specified by @pipe). Deal with wraparound, if it occurred, and
13b030af
VS
164 * update the last read value so we can deal with wraparound on the next
165 * call if necessary.
166 *
167 * Only necessary when going from off->on, to account for frames we
168 * didn't get an interrupt for.
169 *
ef40cbf9 170 * Note: caller must hold &drm_device.vbl_lock since this reads & writes
13b030af
VS
171 * device vblank fields.
172 */
a6e610dc
VS
173static void drm_update_vblank_count(struct drm_device *dev, unsigned int pipe,
174 unsigned long flags)
13b030af 175{
cc1ef118 176 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
99264a61 177 u32 cur_vblank, diff;
fb446a1a 178 bool rc;
13b030af 179 struct timeval t_vblank;
facfb062 180 int count = DRM_TIMESTAMP_MAXRETRIES;
4dfd6486 181 int framedur_ns = vblank->framedur_ns;
13b030af
VS
182
183 /*
184 * Interrupts were disabled prior to this call, so deal with counter
185 * wrap if needed.
5ceecb2f 186 * NOTE! It's possible we lost a full dev->max_vblank_count + 1 events
13b030af
VS
187 * here if the register is small or we had vblank interrupts off for
188 * a long time.
189 *
190 * We repeat the hardware vblank counter & timestamp query until
191 * we get consistent results. This to prevent races between gpu
192 * updating its hardware counter while we are retrieving the
193 * corresponding vblank timestamp.
194 */
195 do {
84e35483 196 cur_vblank = __get_vblank_counter(dev, pipe);
a6e610dc 197 rc = drm_get_last_vbltimestamp(dev, pipe, &t_vblank, flags);
84e35483 198 } while (cur_vblank != __get_vblank_counter(dev, pipe) && --count > 0);
13b030af 199
4dfd6486
VS
200 if (dev->max_vblank_count != 0) {
201 /* trust the hw counter when it's around */
202 diff = (cur_vblank - vblank->last) & dev->max_vblank_count;
203 } else if (rc && framedur_ns) {
204 const struct timeval *t_old;
205 u64 diff_ns;
206
d4055a9b 207 t_old = &vblank->time;
4dfd6486 208 diff_ns = timeval_to_ns(&t_vblank) - timeval_to_ns(t_old);
13b030af 209
4dfd6486
VS
210 /*
211 * Figure out how many vblanks we've missed based
212 * on the difference in the timestamps and the
213 * frame/field duration.
214 */
215 diff = DIV_ROUND_CLOSEST_ULL(diff_ns, framedur_ns);
216
217 if (diff == 0 && flags & DRM_CALLED_FROM_VBLIRQ)
235fabe0
VS
218 DRM_DEBUG_VBL("crtc %u: Redundant vblirq ignored."
219 " diff_ns = %lld, framedur_ns = %d)\n",
220 pipe, (long long) diff_ns, framedur_ns);
4dfd6486
VS
221 } else {
222 /* some kind of default for drivers w/o accurate vbl timestamping */
223 diff = (flags & DRM_CALLED_FROM_VBLIRQ) != 0;
13b030af
VS
224 }
225
c61934ed
MK
226 /*
227 * Within a drm_vblank_pre_modeset - drm_vblank_post_modeset
228 * interval? If so then vblank irqs keep running and it will likely
229 * happen that the hardware vblank counter is not trustworthy as it
230 * might reset at some point in that interval and vblank timestamps
231 * are not trustworthy either in that interval. Iow. this can result
232 * in a bogus diff >> 1 which must be avoided as it would cause
233 * random large forward jumps of the software vblank counter.
234 */
235 if (diff > 1 && (vblank->inmodeset & 0x2)) {
236 DRM_DEBUG_VBL("clamping vblank bump to 1 on crtc %u: diffr=%u"
237 " due to pre-modeset.\n", pipe, diff);
238 diff = 1;
239 }
240
235fabe0
VS
241 DRM_DEBUG_VBL("updating vblank count on crtc %u:"
242 " current=%u, diff=%u, hw=%u hw_last=%u\n",
243 pipe, vblank->count, diff, cur_vblank, vblank->last);
13b030af 244
4dfd6486
VS
245 if (diff == 0) {
246 WARN_ON_ONCE(cur_vblank != vblank->last);
da8f4396 247 return;
4dfd6486 248 }
da8f4396 249
99264a61
DV
250 /*
251 * Only reinitialize corresponding vblank timestamp if high-precision query
fa4270d8
VS
252 * available and didn't fail, or we were called from the vblank interrupt.
253 * Otherwise reinitialize delayed at next vblank interrupt and assign 0
254 * for now, to mark the vblanktimestamp as invalid.
13b030af 255 */
fa4270d8 256 if (!rc && (flags & DRM_CALLED_FROM_VBLIRQ) == 0)
d66a1e38
MK
257 t_vblank = (struct timeval) {0, 0};
258
4dfd6486 259 store_vblank(dev, pipe, diff, &t_vblank, cur_vblank);
13b030af
VS
260}
261
d6b0f626
DV
262static u32 drm_vblank_count(struct drm_device *dev, unsigned int pipe)
263{
264 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
265
266 if (WARN_ON(pipe >= dev->num_crtcs))
267 return 0;
268
269 return vblank->count;
270}
271
af61d5ce
ML
272/**
273 * drm_accurate_vblank_count - retrieve the master vblank counter
274 * @crtc: which counter to retrieve
275 *
276 * This function is similar to @drm_crtc_vblank_count but this
277 * function interpolates to handle a race with vblank irq's.
278 *
279 * This is mostly useful for hardware that can obtain the scanout
280 * position, but doesn't have a frame counter.
281 */
282u32 drm_accurate_vblank_count(struct drm_crtc *crtc)
283{
284 struct drm_device *dev = crtc->dev;
285 unsigned int pipe = drm_crtc_index(crtc);
286 u32 vblank;
287 unsigned long flags;
288
289 WARN(!dev->driver->get_vblank_timestamp,
290 "This function requires support for accurate vblank timestamps.");
291
292 spin_lock_irqsave(&dev->vblank_time_lock, flags);
293
294 drm_update_vblank_count(dev, pipe, 0);
295 vblank = drm_vblank_count(dev, pipe);
296
297 spin_unlock_irqrestore(&dev->vblank_time_lock, flags);
298
299 return vblank;
300}
301EXPORT_SYMBOL(drm_accurate_vblank_count);
302
84e35483
SG
303static void __disable_vblank(struct drm_device *dev, unsigned int pipe)
304{
305 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
306 struct drm_crtc *crtc = drm_crtc_from_index(dev, pipe);
307
308 if (crtc->funcs->disable_vblank) {
309 crtc->funcs->disable_vblank(crtc);
310 return;
311 }
312 }
313
314 dev->driver->disable_vblank(dev, pipe);
315}
316
27641c3f
MK
317/*
318 * Disable vblank irq's on crtc, make sure that last vblank count
319 * of hardware and corresponding consistent software vblank counter
320 * are preserved, even if there are any spurious vblank irq's after
321 * disable.
322 */
cc1ef118 323static void vblank_disable_and_save(struct drm_device *dev, unsigned int pipe)
27641c3f 324{
cc1ef118 325 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
27641c3f 326 unsigned long irqflags;
27641c3f 327
43dc7fe2
CW
328 assert_spin_locked(&dev->vbl_lock);
329
27641c3f
MK
330 /* Prevent vblank irq processing while disabling vblank irqs,
331 * so no updates of timestamps or count can happen after we've
332 * disabled. Needed to prevent races in case of delayed irq's.
27641c3f 333 */
27641c3f
MK
334 spin_lock_irqsave(&dev->vblank_time_lock, irqflags);
335
eb2ed66f
LP
336 /*
337 * Only disable vblank interrupts if they're enabled. This avoids
338 * calling the ->disable_vblank() operation in atomic context with the
339 * hardware potentially runtime suspended.
340 */
f5f4c615 341 if (vblank->enabled) {
84e35483 342 __disable_vblank(dev, pipe);
f5f4c615
CW
343 vblank->enabled = false;
344 }
27641c3f 345
4dfd6486
VS
346 /*
347 * Always update the count and timestamp to maintain the
348 * appearance that the counter has been ticking all along until
349 * this time. This makes the count account for the entire time
2d1e331f 350 * between drm_crtc_vblank_on() and drm_crtc_vblank_off().
27641c3f 351 */
4dfd6486 352 drm_update_vblank_count(dev, pipe, 0);
27641c3f 353
27641c3f 354 spin_unlock_irqrestore(&dev->vblank_time_lock, irqflags);
27641c3f
MK
355}
356
0a3e67a4
JB
357static void vblank_disable_fn(unsigned long arg)
358{
e69595c2
VS
359 struct drm_vblank_crtc *vblank = (void *)arg;
360 struct drm_device *dev = vblank->dev;
cc1ef118 361 unsigned int pipe = vblank->pipe;
0a3e67a4 362 unsigned long irqflags;
0a3e67a4 363
e69595c2
VS
364 spin_lock_irqsave(&dev->vbl_lock, irqflags);
365 if (atomic_read(&vblank->refcount) == 0 && vblank->enabled) {
cc1ef118
TR
366 DRM_DEBUG("disabling vblank on crtc %u\n", pipe);
367 vblank_disable_and_save(dev, pipe);
0a3e67a4 368 }
e69595c2 369 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
0a3e67a4
JB
370}
371
f5752b38
DV
372/**
373 * drm_vblank_cleanup - cleanup vblank support
374 * @dev: DRM device
375 *
376 * This function cleans up any resources allocated in drm_vblank_init.
377 */
52440211 378void drm_vblank_cleanup(struct drm_device *dev)
0a3e67a4 379{
cc1ef118 380 unsigned int pipe;
e69595c2 381
0a3e67a4
JB
382 /* Bail if the driver didn't call drm_vblank_init() */
383 if (dev->num_crtcs == 0)
384 return;
385
cc1ef118
TR
386 for (pipe = 0; pipe < dev->num_crtcs; pipe++) {
387 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
8a51d5be 388
43dc7fe2 389 WARN_ON(READ_ONCE(vblank->enabled) &&
3bff93d6 390 drm_core_check_feature(dev, DRIVER_MODESET));
2368ffb1 391
3bff93d6 392 del_timer_sync(&vblank->disable_timer);
e69595c2 393 }
0a3e67a4 394
5380e929 395 kfree(dev->vblank);
0a3e67a4
JB
396
397 dev->num_crtcs = 0;
398}
e77cef9c 399EXPORT_SYMBOL(drm_vblank_cleanup);
0a3e67a4 400
f5752b38
DV
401/**
402 * drm_vblank_init - initialize vblank support
cc1ef118
TR
403 * @dev: DRM device
404 * @num_crtcs: number of CRTCs supported by @dev
f5752b38
DV
405 *
406 * This function initializes vblank support for @num_crtcs display pipelines.
407 *
408 * Returns:
409 * Zero on success or a negative error code on failure.
410 */
cc1ef118 411int drm_vblank_init(struct drm_device *dev, unsigned int num_crtcs)
0a3e67a4 412{
cc1ef118
TR
413 int ret = -ENOMEM;
414 unsigned int i;
0a3e67a4 415
0a3e67a4 416 spin_lock_init(&dev->vbl_lock);
27641c3f
MK
417 spin_lock_init(&dev->vblank_time_lock);
418
0a3e67a4
JB
419 dev->num_crtcs = num_crtcs;
420
5380e929
VS
421 dev->vblank = kcalloc(num_crtcs, sizeof(*dev->vblank), GFP_KERNEL);
422 if (!dev->vblank)
0a3e67a4
JB
423 goto err;
424
e69595c2 425 for (i = 0; i < num_crtcs; i++) {
8a51d5be
VS
426 struct drm_vblank_crtc *vblank = &dev->vblank[i];
427
428 vblank->dev = dev;
cc1ef118 429 vblank->pipe = i;
8a51d5be
VS
430 init_waitqueue_head(&vblank->queue);
431 setup_timer(&vblank->disable_timer, vblank_disable_fn,
432 (unsigned long)vblank);
d4055a9b 433 seqlock_init(&vblank->seqlock);
e69595c2 434 }
27641c3f 435
8f6fce03 436 DRM_INFO("Supports vblank timestamp caching Rev 2 (21.10.2013).\n");
27641c3f
MK
437
438 /* Driver specific high-precision vblank timestamping supported? */
439 if (dev->driver->get_vblank_timestamp)
440 DRM_INFO("Driver supports precise vblank timestamp query.\n");
441 else
442 DRM_INFO("No driver support for vblank timestamp query.\n");
443
5a8b21b2
MK
444 /* Must have precise timestamping for reliable vblank instant disable */
445 if (dev->vblank_disable_immediate && !dev->driver->get_vblank_timestamp) {
446 dev->vblank_disable_immediate = false;
447 DRM_INFO("Setting vblank_disable_immediate to false because "
448 "get_vblank_timestamp == NULL\n");
449 }
450
0a3e67a4
JB
451 return 0;
452
453err:
79a093ae 454 dev->num_crtcs = 0;
0a3e67a4
JB
455 return ret;
456}
457EXPORT_SYMBOL(drm_vblank_init);
458
1da177e4 459/**
f5752b38
DV
460 * drm_irq_install - install IRQ handler
461 * @dev: DRM device
462 * @irq: IRQ number to install the handler for
1da177e4 463 *
0a3e67a4 464 * Initializes the IRQ related data. Installs the handler, calling the driver
f5752b38
DV
465 * irq_preinstall() and irq_postinstall() functions before and after the
466 * installation.
467 *
468 * This is the simplified helper interface provided for drivers with no special
469 * needs. Drivers which need to install interrupt handlers for multiple
ef40cbf9 470 * interrupts must instead set &drm_device.irq_enabled to signal the DRM core
f5752b38
DV
471 * that vblank interrupts are available.
472 *
473 * Returns:
474 * Zero on success or a negative error code on failure.
1da177e4 475 */
bb0f1b5c 476int drm_irq_install(struct drm_device *dev, int irq)
1da177e4 477{
4a1b0714 478 int ret;
b5e89ed5 479 unsigned long sh_flags = 0;
1da177e4
LT
480
481 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
482 return -EINVAL;
483
7c1a38e3 484 if (irq == 0)
1da177e4
LT
485 return -EINVAL;
486
1da177e4 487 /* Driver must have been initialized */
e090c53b 488 if (!dev->dev_private)
1da177e4 489 return -EINVAL;
1da177e4 490
e090c53b 491 if (dev->irq_enabled)
1da177e4 492 return -EBUSY;
4423843c 493 dev->irq_enabled = true;
1da177e4 494
7c1a38e3 495 DRM_DEBUG("irq=%d\n", irq);
1da177e4 496
b5e89ed5 497 /* Before installing handler */
5037f8ac
JS
498 if (dev->driver->irq_preinstall)
499 dev->driver->irq_preinstall(dev);
1da177e4 500
b5e89ed5 501 /* Install handler */
1da177e4 502 if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
935f6e3a 503 sh_flags = IRQF_SHARED;
b5e89ed5 504
7c1a38e3 505 ret = request_irq(irq, dev->driver->irq_handler,
5829d183 506 sh_flags, dev->driver->name, dev);
9bfbd5cb 507
b5e89ed5 508 if (ret < 0) {
4423843c 509 dev->irq_enabled = false;
1da177e4
LT
510 return ret;
511 }
512
b5e89ed5 513 /* After installing handler */
5037f8ac
JS
514 if (dev->driver->irq_postinstall)
515 ret = dev->driver->irq_postinstall(dev);
516
0a3e67a4 517 if (ret < 0) {
4423843c 518 dev->irq_enabled = false;
fa538645 519 if (drm_core_check_feature(dev, DRIVER_LEGACY))
e1c44acc 520 vga_client_register(dev->pdev, NULL, NULL, NULL);
7c1a38e3
DV
521 free_irq(irq, dev);
522 } else {
523 dev->irq = irq;
0a3e67a4 524 }
1da177e4 525
0a3e67a4 526 return ret;
1da177e4 527}
0a3e67a4 528EXPORT_SYMBOL(drm_irq_install);
1da177e4
LT
529
530/**
f5752b38
DV
531 * drm_irq_uninstall - uninstall the IRQ handler
532 * @dev: DRM device
533 *
534 * Calls the driver's irq_uninstall() function and unregisters the IRQ handler.
535 * This should only be called by drivers which used drm_irq_install() to set up
536 * their interrupt handler. Other drivers must only reset
ef40cbf9 537 * &drm_device.irq_enabled to false.
1da177e4 538 *
f5752b38
DV
539 * Note that for kernel modesetting drivers it is a bug if this function fails.
540 * The sanity checks are only to catch buggy user modesetting drivers which call
541 * the same function through an ioctl.
1da177e4 542 *
f5752b38
DV
543 * Returns:
544 * Zero on success or a negative error code on failure.
1da177e4 545 */
27641c3f 546int drm_irq_uninstall(struct drm_device *dev)
1da177e4 547{
dc1336ff 548 unsigned long irqflags;
4423843c
VS
549 bool irq_enabled;
550 int i;
1da177e4
LT
551
552 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
553 return -EINVAL;
554
1da177e4 555 irq_enabled = dev->irq_enabled;
4423843c 556 dev->irq_enabled = false;
1da177e4 557
dc1336ff 558 /*
3bff93d6 559 * Wake up any waiters so they don't hang. This is just to paper over
c78d1ca2 560 * issues for UMS drivers which aren't in full control of their
3bff93d6
DV
561 * vblank/irq handling. KMS drivers must ensure that vblanks are all
562 * disabled when uninstalling the irq handler.
dc1336ff 563 */
bde4889a
BS
564 if (dev->num_crtcs) {
565 spin_lock_irqsave(&dev->vbl_lock, irqflags);
566 for (i = 0; i < dev->num_crtcs; i++) {
8a51d5be
VS
567 struct drm_vblank_crtc *vblank = &dev->vblank[i];
568
3bff93d6
DV
569 if (!vblank->enabled)
570 continue;
571
572 WARN_ON(drm_core_check_feature(dev, DRIVER_MODESET));
573
574 vblank_disable_and_save(dev, i);
8a51d5be 575 wake_up(&vblank->queue);
bde4889a
BS
576 }
577 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
dc1336ff 578 }
dc1336ff 579
b5e89ed5 580 if (!irq_enabled)
1da177e4
LT
581 return -EINVAL;
582
7c1a38e3 583 DRM_DEBUG("irq=%d\n", dev->irq);
1da177e4 584
fa538645 585 if (drm_core_check_feature(dev, DRIVER_LEGACY))
28d52043
DA
586 vga_client_register(dev->pdev, NULL, NULL, NULL);
587
5037f8ac
JS
588 if (dev->driver->irq_uninstall)
589 dev->driver->irq_uninstall(dev);
1da177e4 590
7c1a38e3 591 free_irq(dev->irq, dev);
1da177e4
LT
592
593 return 0;
594}
595EXPORT_SYMBOL(drm_irq_uninstall);
596
25a9939c
DV
597int drm_legacy_irq_control(struct drm_device *dev, void *data,
598 struct drm_file *file_priv)
1da177e4 599{
c153f45f 600 struct drm_control *ctl = data;
a319c1a4 601 int ret = 0, irq;
b5e89ed5 602
27641c3f
MK
603 /* if we haven't irq we fallback for compatibility reasons -
604 * this used to be a separate function in drm_dma.h
605 */
1da177e4 606
22471cf6
DV
607 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
608 return 0;
fa538645 609 if (!drm_core_check_feature(dev, DRIVER_LEGACY))
22471cf6 610 return 0;
c78d1ca2 611 /* UMS was only ever supported on pci devices. */
22471cf6
DV
612 if (WARN_ON(!dev->pdev))
613 return -EINVAL;
1da177e4 614
c153f45f 615 switch (ctl->func) {
1da177e4 616 case DRM_INST_HANDLER:
a319c1a4
DV
617 irq = dev->pdev->irq;
618
1da177e4 619 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
a319c1a4 620 ctl->irq != irq)
1da177e4 621 return -EINVAL;
e090c53b 622 mutex_lock(&dev->struct_mutex);
bb0f1b5c 623 ret = drm_irq_install(dev, irq);
e090c53b
DV
624 mutex_unlock(&dev->struct_mutex);
625
626 return ret;
1da177e4 627 case DRM_UNINST_HANDLER:
e090c53b
DV
628 mutex_lock(&dev->struct_mutex);
629 ret = drm_irq_uninstall(dev);
630 mutex_unlock(&dev->struct_mutex);
631
632 return ret;
1da177e4
LT
633 default:
634 return -EINVAL;
635 }
636}
637
27641c3f 638/**
f5752b38
DV
639 * drm_calc_timestamping_constants - calculate vblank timestamp constants
640 * @crtc: drm_crtc whose timestamp constants should be updated.
641 * @mode: display mode containing the scanout timings
27641c3f 642 *
21b21560
VS
643 * Calculate and store various constants which are later
644 * needed by vblank and swap-completion timestamping, e.g,
645 * by drm_calc_vbltimestamp_from_scanoutpos(). They are
f5752b38 646 * derived from CRTC's true scanout timing, so they take
21b21560 647 * things like panel scaling or other adjustments into account.
27641c3f 648 */
545cdd55
VS
649void drm_calc_timestamping_constants(struct drm_crtc *crtc,
650 const struct drm_display_mode *mode)
27641c3f 651{
0c545ac4
VS
652 struct drm_device *dev = crtc->dev;
653 unsigned int pipe = drm_crtc_index(crtc);
654 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
20b20203 655 int linedur_ns = 0, framedur_ns = 0;
77666b72 656 int dotclock = mode->crtc_clock;
27641c3f 657
0c545ac4
VS
658 if (!dev->num_crtcs)
659 return;
660
661 if (WARN_ON(pipe >= dev->num_crtcs))
662 return;
663
27641c3f
MK
664 /* Valid dotclock? */
665 if (dotclock > 0) {
0dae35a3
VS
666 int frame_size = mode->crtc_htotal * mode->crtc_vtotal;
667
668 /*
669 * Convert scanline length in pixels and video
20b20203
VS
670 * dot clock to line duration and frame duration
671 * in nanoseconds:
27641c3f 672 */
0dae35a3
VS
673 linedur_ns = div_u64((u64) mode->crtc_htotal * 1000000, dotclock);
674 framedur_ns = div_u64((u64) frame_size * 1000000, dotclock);
c0ae24c1
VS
675
676 /*
677 * Fields of interlaced scanout modes are only half a frame duration.
678 */
679 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
680 framedur_ns /= 2;
27641c3f 681 } else
cc1ef118 682 DRM_ERROR("crtc %u: Can't calculate constants, dotclock = 0!\n",
27641c3f
MK
683 crtc->base.id);
684
eba1f35d
VS
685 vblank->linedur_ns = linedur_ns;
686 vblank->framedur_ns = framedur_ns;
27641c3f 687
cc1ef118 688 DRM_DEBUG("crtc %u: hwmode: htotal %d, vtotal %d, vdisplay %d\n",
545cdd55
VS
689 crtc->base.id, mode->crtc_htotal,
690 mode->crtc_vtotal, mode->crtc_vdisplay);
20b20203
VS
691 DRM_DEBUG("crtc %u: clock %d kHz framedur %d linedur %d\n",
692 crtc->base.id, dotclock, framedur_ns, linedur_ns);
27641c3f
MK
693}
694EXPORT_SYMBOL(drm_calc_timestamping_constants);
695
696/**
f5752b38
DV
697 * drm_calc_vbltimestamp_from_scanoutpos - precise vblank timestamp helper
698 * @dev: DRM device
cc1ef118 699 * @pipe: index of CRTC whose vblank timestamp to retrieve
f5752b38
DV
700 * @max_error: Desired maximum allowable error in timestamps (nanosecs)
701 * On return contains true maximum error of timestamp
702 * @vblank_time: Pointer to 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
f5752b38
DV
706 * @mode: mode which defines the scanout timings
707 *
708 * Implements calculation of exact vblank timestamps from given drm_display_mode
709 * timings and current video scanout position of a CRTC. This can be called from
710 * within get_vblank_timestamp() implementation of a kms driver to implement the
711 * actual timestamping.
27641c3f
MK
712 *
713 * Should return timestamps conforming to the OML_sync_control OpenML
714 * extension specification. The timestamp corresponds to the end of
715 * the vblank interval, aka start of scanout of topmost-leftmost display
716 * pixel in the following video frame.
717 *
718 * Requires support for optional dev->driver->get_scanout_position()
719 * in kms driver, plus a bit of setup code to provide a drm_display_mode
720 * that corresponds to the true scanout timing.
721 *
722 * The current implementation only handles standard video modes. It
723 * returns as no operation if a doublescan or interlaced video mode is
724 * active. Higher level code is expected to handle this.
725 *
f5752b38
DV
726 * Returns:
727 * Negative value on error, failure or if not supported in current
27641c3f
MK
728 * video mode:
729 *
62cacc79
DV
730 * -EINVAL Invalid CRTC.
731 * -EAGAIN Temporary unavailable, e.g., called before initial modeset.
732 * -ENOTSUPP Function not supported in current display mode.
733 * -EIO Failed, e.g., due to failed scanout position query.
27641c3f
MK
734 *
735 * Returns or'ed positive status flags on success:
736 *
737 * DRM_VBLANKTIME_SCANOUTPOS_METHOD - Signal this method used for timestamping.
738 * DRM_VBLANKTIME_INVBL - Timestamp taken while scanout was in vblank interval.
739 *
740 */
cc1ef118
TR
741int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
742 unsigned int pipe,
27641c3f
MK
743 int *max_error,
744 struct timeval *vblank_time,
745 unsigned flags,
7da903ef 746 const struct drm_display_mode *mode)
27641c3f 747{
e62f2f5a 748 struct timeval tv_etime;
d2cb58c8 749 ktime_t stime, etime;
ad1716ec
VS
750 unsigned int vbl_status;
751 int ret = DRM_VBLANKTIME_SCANOUTPOS_METHOD;
27641c3f 752 int vpos, hpos, i;
3bb403bf 753 int delta_ns, duration_ns;
27641c3f 754
cc1ef118
TR
755 if (pipe >= dev->num_crtcs) {
756 DRM_ERROR("Invalid crtc %u\n", pipe);
27641c3f
MK
757 return -EINVAL;
758 }
759
760 /* Scanout position query not supported? Should not happen. */
761 if (!dev->driver->get_scanout_position) {
762 DRM_ERROR("Called from driver w/o get_scanout_position()!?\n");
763 return -EIO;
764 }
765
27641c3f
MK
766 /* If mode timing undefined, just return as no-op:
767 * Happens during initial modesetting of a crtc.
768 */
3bb403bf 769 if (mode->crtc_clock == 0) {
cc1ef118 770 DRM_DEBUG("crtc %u: Noop due to uninitialized mode.\n", pipe);
27641c3f
MK
771 return -EAGAIN;
772 }
773
27641c3f
MK
774 /* Get current scanout position with system timestamp.
775 * Repeat query up to DRM_TIMESTAMP_MAXRETRIES times
776 * if single query takes longer than max_error nanoseconds.
777 *
778 * This guarantees a tight bound on maximum error if
779 * code gets preempted or delayed for some reason.
780 */
781 for (i = 0; i < DRM_TIMESTAMP_MAXRETRIES; i++) {
8f6fce03
MK
782 /*
783 * Get vertical and horizontal scanout position vpos, hpos,
784 * and bounding timestamps stime, etime, pre/post query.
785 */
3bb403bf
VS
786 vbl_status = dev->driver->get_scanout_position(dev, pipe, flags,
787 &vpos, &hpos,
788 &stime, &etime,
789 mode);
27641c3f 790
27641c3f
MK
791 /* Return as no-op if scanout query unsupported or failed. */
792 if (!(vbl_status & DRM_SCANOUTPOS_VALID)) {
ad1716ec 793 DRM_DEBUG("crtc %u : scanoutpos query failed [0x%x].\n",
cc1ef118 794 pipe, vbl_status);
27641c3f
MK
795 return -EIO;
796 }
797
8f6fce03 798 /* Compute uncertainty in timestamp of scanout position query. */
e62f2f5a 799 duration_ns = ktime_to_ns(etime) - ktime_to_ns(stime);
27641c3f
MK
800
801 /* Accept result with < max_error nsecs timing uncertainty. */
3c184f69 802 if (duration_ns <= *max_error)
27641c3f
MK
803 break;
804 }
805
806 /* Noisy system timing? */
807 if (i == DRM_TIMESTAMP_MAXRETRIES) {
cc1ef118
TR
808 DRM_DEBUG("crtc %u: Noisy timestamp %d us > %d us [%d reps].\n",
809 pipe, duration_ns/1000, *max_error/1000, i);
27641c3f
MK
810 }
811
812 /* Return upper bound of timestamp precision error. */
3c184f69 813 *max_error = duration_ns;
27641c3f 814
27641c3f
MK
815 /* Convert scanout position into elapsed time at raw_time query
816 * since start of scanout at first display scanline. delta_ns
817 * can be negative if start of scanout hasn't happened yet.
818 */
3bb403bf
VS
819 delta_ns = div_s64(1000000LL * (vpos * mode->crtc_htotal + hpos),
820 mode->crtc_clock);
27641c3f 821
c61eef72 822 if (!drm_timestamp_monotonic)
d2cb58c8 823 etime = ktime_mono_to_real(etime);
c61eef72 824
e62f2f5a
ID
825 /* save this only for debugging purposes */
826 tv_etime = ktime_to_timeval(etime);
27641c3f
MK
827 /* Subtract time delta from raw timestamp to get final
828 * vblank_time timestamp for end of vblank.
829 */
a91d7b91 830 etime = ktime_sub_ns(etime, delta_ns);
e62f2f5a 831 *vblank_time = ktime_to_timeval(etime);
27641c3f 832
235fabe0
VS
833 DRM_DEBUG_VBL("crtc %u : v 0x%x p(%d,%d)@ %ld.%ld -> %ld.%ld [e %d us, %d rep]\n",
834 pipe, vbl_status, hpos, vpos,
835 (long)tv_etime.tv_sec, (long)tv_etime.tv_usec,
836 (long)vblank_time->tv_sec, (long)vblank_time->tv_usec,
837 duration_ns/1000, i);
27641c3f 838
ad1716ec 839 return ret;
27641c3f
MK
840}
841EXPORT_SYMBOL(drm_calc_vbltimestamp_from_scanoutpos);
842
c61eef72
ID
843static struct timeval get_drm_timestamp(void)
844{
845 ktime_t now;
846
d2cb58c8 847 now = drm_timestamp_monotonic ? ktime_get() : ktime_get_real();
c61eef72
ID
848 return ktime_to_timeval(now);
849}
850
27641c3f
MK
851/**
852 * drm_get_last_vbltimestamp - retrieve raw timestamp for the most recent
4dfd909f 853 * vblank interval
27641c3f 854 * @dev: DRM device
cc1ef118 855 * @pipe: index of CRTC whose vblank timestamp to retrieve
27641c3f
MK
856 * @tvblank: Pointer to target struct timeval which should receive the timestamp
857 * @flags: Flags to pass to driver:
f5752b38
DV
858 * 0 = Default,
859 * DRM_CALLED_FROM_VBLIRQ = If function is called from vbl IRQ handler
27641c3f
MK
860 *
861 * Fetches the system timestamp corresponding to the time of the most recent
f5752b38 862 * vblank interval on specified CRTC. May call into kms-driver to
27641c3f
MK
863 * compute the timestamp with a high-precision GPU specific method.
864 *
865 * Returns zero if timestamp originates from uncorrected do_gettimeofday()
866 * call, i.e., it isn't very precisely locked to the true vblank.
867 *
f5752b38 868 * Returns:
fb446a1a 869 * True if timestamp is considered to be very precise, false otherwise.
27641c3f 870 */
fb446a1a 871static bool
cc1ef118 872drm_get_last_vbltimestamp(struct drm_device *dev, unsigned int pipe,
fb446a1a 873 struct timeval *tvblank, unsigned flags)
27641c3f 874{
4a1b0714 875 int ret;
27641c3f
MK
876
877 /* Define requested maximum error on timestamps (nanoseconds). */
878 int max_error = (int) drm_timestamp_precision * 1000;
879
880 /* Query driver if possible and precision timestamping enabled. */
881 if (dev->driver->get_vblank_timestamp && (max_error > 0)) {
cc1ef118 882 ret = dev->driver->get_vblank_timestamp(dev, pipe, &max_error,
27641c3f
MK
883 tvblank, flags);
884 if (ret > 0)
fb446a1a 885 return true;
27641c3f
MK
886 }
887
888 /* GPU high precision timestamp query unsupported or failed.
c61eef72 889 * Return current monotonic/gettimeofday timestamp as best estimate.
27641c3f 890 */
c61eef72 891 *tvblank = get_drm_timestamp();
27641c3f 892
fb446a1a 893 return false;
27641c3f 894}
27641c3f 895
96d3f91e
TR
896/**
897 * drm_crtc_vblank_count - retrieve "cooked" vblank counter value
898 * @crtc: which counter to retrieve
899 *
900 * Fetches the "cooked" vblank count value that represents the number of
901 * vblank events since the system was booted, including lost events due to
902 * modesetting activity.
903 *
96d3f91e
TR
904 * Returns:
905 * The software vblank counter.
906 */
907u32 drm_crtc_vblank_count(struct drm_crtc *crtc)
908{
909 return drm_vblank_count(crtc->dev, drm_crtc_index(crtc));
910}
911EXPORT_SYMBOL(drm_crtc_vblank_count);
912
27641c3f 913/**
cc1ef118
TR
914 * drm_vblank_count_and_time - retrieve "cooked" vblank counter value and the
915 * system timestamp corresponding to that vblank counter value.
27641c3f 916 * @dev: DRM device
cc1ef118 917 * @pipe: index of CRTC whose counter to retrieve
27641c3f
MK
918 * @vblanktime: Pointer to struct timeval to receive the vblank timestamp.
919 *
920 * Fetches the "cooked" vblank count value that represents the number of
921 * vblank events since the system was booted, including lost events due to
922 * modesetting activity. Returns corresponding system timestamp of the time
f5752b38 923 * of the vblank interval that corresponds to the current vblank counter value.
cf648305
TR
924 *
925 * This is the legacy version of drm_crtc_vblank_count_and_time().
27641c3f 926 */
6e5f73fc
GP
927static u32 drm_vblank_count_and_time(struct drm_device *dev, unsigned int pipe,
928 struct timeval *vblanktime)
27641c3f 929{
cc1ef118 930 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
d4055a9b
MA
931 u32 vblank_count;
932 unsigned int seq;
27641c3f 933
cff52e5f
AB
934 if (WARN_ON(pipe >= dev->num_crtcs)) {
935 *vblanktime = (struct timeval) { 0 };
e6ae8687 936 return 0;
cff52e5f 937 }
e6ae8687 938
27641c3f 939 do {
d4055a9b
MA
940 seq = read_seqbegin(&vblank->seqlock);
941 vblank_count = vblank->count;
942 *vblanktime = vblank->time;
943 } while (read_seqretry(&vblank->seqlock, seq));
27641c3f 944
d4055a9b 945 return vblank_count;
27641c3f 946}
27641c3f 947
cf648305
TR
948/**
949 * drm_crtc_vblank_count_and_time - retrieve "cooked" vblank counter value
950 * and the system timestamp corresponding to that vblank counter value
951 * @crtc: which counter to retrieve
952 * @vblanktime: Pointer to struct timeval to receive the vblank timestamp.
953 *
954 * Fetches the "cooked" vblank count value that represents the number of
955 * vblank events since the system was booted, including lost events due to
956 * modesetting activity. Returns corresponding system timestamp of the time
957 * of the vblank interval that corresponds to the current vblank counter value.
cf648305
TR
958 */
959u32 drm_crtc_vblank_count_and_time(struct drm_crtc *crtc,
960 struct timeval *vblanktime)
961{
962 return drm_vblank_count_and_time(crtc->dev, drm_crtc_index(crtc),
963 vblanktime);
964}
965EXPORT_SYMBOL(drm_crtc_vblank_count_and_time);
966
c6eefa17
RC
967static void send_vblank_event(struct drm_device *dev,
968 struct drm_pending_vblank_event *e,
969 unsigned long seq, struct timeval *now)
970{
c6eefa17
RC
971 e->event.sequence = seq;
972 e->event.tv_sec = now->tv_sec;
973 e->event.tv_usec = now->tv_usec;
974
7d52cb88 975 trace_drm_vblank_event_delivered(e->base.file_priv, e->pipe,
c6eefa17 976 e->event.sequence);
c001da4f
MA
977
978 drm_send_event_locked(dev, &e->base);
c6eefa17
RC
979}
980
bbc8764f
DV
981/**
982 * drm_crtc_arm_vblank_event - arm vblank event after pageflip
983 * @crtc: the source CRTC of the vblank event
984 * @e: the event to send
985 *
986 * A lot of drivers need to generate vblank events for the very next vblank
987 * interrupt. For example when the page flip interrupt happens when the page
988 * flip gets armed, but not when it actually executes within the next vblank
989 * period. This helper function implements exactly the required vblank arming
990 * behaviour.
991 *
ef40cbf9
DV
992 * NOTE: Drivers using this to send out the &drm_crtc_state.event as part of an
993 * atomic commit must ensure that the next vblank happens at exactly the same
994 * time as the atomic commit is committed to the hardware. This function itself
995 * does **not** protect again the next vblank interrupt racing with either this
996 * function call or the atomic commit operation. A possible sequence could be:
61802130
DV
997 *
998 * 1. Driver commits new hardware state into vblank-synchronized registers.
999 * 2. A vblank happens, committing the hardware state. Also the corresponding
1000 * vblank interrupt is fired off and fully processed by the interrupt
1001 * handler.
1002 * 3. The atomic commit operation proceeds to call drm_crtc_arm_vblank_event().
1003 * 4. The event is only send out for the next vblank, which is wrong.
1004 *
1005 * An equivalent race can happen when the driver calls
1006 * drm_crtc_arm_vblank_event() before writing out the new hardware state.
1007 *
1008 * The only way to make this work safely is to prevent the vblank from firing
1009 * (and the hardware from committing anything else) until the entire atomic
1010 * commit sequence has run to completion. If the hardware does not have such a
1011 * feature (e.g. using a "go" bit), then it is unsafe to use this functions.
1012 * Instead drivers need to manually send out the event from their interrupt
1013 * handler by calling drm_crtc_send_vblank_event() and make sure that there's no
1014 * possible race with the hardware committing the atomic update.
1015 *
bbc8764f
DV
1016 * Caller must hold event lock. Caller must also hold a vblank reference for
1017 * the event @e, which will be dropped when the next vblank arrives.
bbc8764f
DV
1018 */
1019void drm_crtc_arm_vblank_event(struct drm_crtc *crtc,
1020 struct drm_pending_vblank_event *e)
1021{
93507d13
GP
1022 struct drm_device *dev = crtc->dev;
1023 unsigned int pipe = drm_crtc_index(crtc);
1024
1025 assert_spin_locked(&dev->event_lock);
1026
1027 e->pipe = pipe;
1028 e->event.sequence = drm_vblank_count(dev, pipe);
5db06a8a 1029 e->event.crtc_id = crtc->base.id;
93507d13 1030 list_add_tail(&e->base.link, &dev->vblank_event_list);
bbc8764f
DV
1031}
1032EXPORT_SYMBOL(drm_crtc_arm_vblank_event);
1033
c6eefa17 1034/**
db749b7e
GP
1035 * drm_crtc_send_vblank_event - helper to send vblank event after pageflip
1036 * @crtc: the source CRTC of the vblank event
c6eefa17
RC
1037 * @e: the event to send
1038 *
61802130
DV
1039 * Updates sequence # and timestamp on event for the most recently processed
1040 * vblank, and sends it to userspace. Caller must hold event lock.
1041 *
1042 * See drm_crtc_arm_vblank_event() for a helper which can be used in certain
1043 * situation, especially to send out events for atomic commit operations.
c6eefa17 1044 */
db749b7e
GP
1045void drm_crtc_send_vblank_event(struct drm_crtc *crtc,
1046 struct drm_pending_vblank_event *e)
c6eefa17 1047{
db749b7e
GP
1048 struct drm_device *dev = crtc->dev;
1049 unsigned int seq, pipe = drm_crtc_index(crtc);
c6eefa17 1050 struct timeval now;
4dfd909f 1051
2a7d3d6d 1052 if (dev->num_crtcs > 0) {
cc1ef118 1053 seq = drm_vblank_count_and_time(dev, pipe, &now);
c6eefa17
RC
1054 } else {
1055 seq = 0;
c61eef72
ID
1056
1057 now = get_drm_timestamp();
c6eefa17 1058 }
cc1ef118 1059 e->pipe = pipe;
5db06a8a 1060 e->event.crtc_id = crtc->base.id;
c6eefa17
RC
1061 send_vblank_event(dev, e, seq, &now);
1062}
a4d7b30d
TR
1063EXPORT_SYMBOL(drm_crtc_send_vblank_event);
1064
84e35483
SG
1065static int __enable_vblank(struct drm_device *dev, unsigned int pipe)
1066{
1067 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
1068 struct drm_crtc *crtc = drm_crtc_from_index(dev, pipe);
1069
1070 if (crtc->funcs->enable_vblank)
1071 return crtc->funcs->enable_vblank(crtc);
1072 }
1073
1074 return dev->driver->enable_vblank(dev, pipe);
1075}
1076
f2752282
VS
1077/**
1078 * drm_vblank_enable - enable the vblank interrupt on a CRTC
1079 * @dev: DRM device
cc1ef118 1080 * @pipe: CRTC index
c30e11fc
TR
1081 *
1082 * Returns:
1083 * Zero on success or a negative error code on failure.
f2752282 1084 */
cc1ef118 1085static int drm_vblank_enable(struct drm_device *dev, unsigned int pipe)
f2752282 1086{
cc1ef118 1087 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
f2752282
VS
1088 int ret = 0;
1089
1090 assert_spin_locked(&dev->vbl_lock);
1091
1092 spin_lock(&dev->vblank_time_lock);
1093
8a51d5be 1094 if (!vblank->enabled) {
1cfb80b1
DV
1095 /*
1096 * Enable vblank irqs under vblank_time_lock protection.
f2752282
VS
1097 * All vblank count & timestamp updates are held off
1098 * until we are done reinitializing master counter and
1099 * timestamps. Filtercode in drm_handle_vblank() will
1100 * prevent double-accounting of same vblank interval.
1101 */
84e35483 1102 ret = __enable_vblank(dev, pipe);
cc1ef118 1103 DRM_DEBUG("enabling vblank on crtc %u, ret: %d\n", pipe, ret);
43dc7fe2 1104 if (ret) {
8a51d5be 1105 atomic_dec(&vblank->refcount);
43dc7fe2 1106 } else {
a6e610dc 1107 drm_update_vblank_count(dev, pipe, 0);
43dc7fe2
CW
1108 /* drm_update_vblank_count() includes a wmb so we just
1109 * need to ensure that the compiler emits the write
1110 * to mark the vblank as enabled after the call
1111 * to drm_update_vblank_count().
1112 */
1113 WRITE_ONCE(vblank->enabled, true);
f2752282
VS
1114 }
1115 }
1116
1117 spin_unlock(&dev->vblank_time_lock);
1118
1119 return ret;
1120}
1121
0a3e67a4
JB
1122/**
1123 * drm_vblank_get - get a reference count on vblank events
1124 * @dev: DRM device
cc1ef118 1125 * @pipe: index of CRTC to own
0a3e67a4
JB
1126 *
1127 * Acquire a reference count on vblank events to avoid having them disabled
1128 * while in use.
1129 *
89dd6a4b
DV
1130 * This is the legacy version of drm_crtc_vblank_get().
1131 *
f5752b38 1132 * Returns:
c30e11fc 1133 * Zero on success or a negative error code on failure.
0a3e67a4 1134 */
ceb74152 1135static int drm_vblank_get(struct drm_device *dev, unsigned int pipe)
0a3e67a4 1136{
cc1ef118 1137 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
97cbc883 1138 unsigned long irqflags;
0a3e67a4
JB
1139 int ret = 0;
1140
16e3247d
GH
1141 if (!dev->num_crtcs)
1142 return -EINVAL;
1143
cc1ef118 1144 if (WARN_ON(pipe >= dev->num_crtcs))
e6ae8687
RC
1145 return -EINVAL;
1146
0a3e67a4
JB
1147 spin_lock_irqsave(&dev->vbl_lock, irqflags);
1148 /* Going from 0->1 means we have to enable interrupts again */
8a51d5be 1149 if (atomic_add_return(1, &vblank->refcount) == 1) {
cc1ef118 1150 ret = drm_vblank_enable(dev, pipe);
778c9026 1151 } else {
8a51d5be
VS
1152 if (!vblank->enabled) {
1153 atomic_dec(&vblank->refcount);
778c9026 1154 ret = -EINVAL;
0a3e67a4
JB
1155 }
1156 }
1157 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
1158
1159 return ret;
1160}
0a3e67a4 1161
89dd6a4b
DV
1162/**
1163 * drm_crtc_vblank_get - get a reference count on vblank events
1164 * @crtc: which CRTC to own
1165 *
1166 * Acquire a reference count on vblank events to avoid having them disabled
1167 * while in use.
1168 *
89dd6a4b 1169 * Returns:
c30e11fc 1170 * Zero on success or a negative error code on failure.
89dd6a4b
DV
1171 */
1172int drm_crtc_vblank_get(struct drm_crtc *crtc)
1173{
1174 return drm_vblank_get(crtc->dev, drm_crtc_index(crtc));
1175}
1176EXPORT_SYMBOL(drm_crtc_vblank_get);
1177
0a3e67a4 1178/**
cc1ef118 1179 * drm_vblank_put - release ownership of vblank events
0a3e67a4 1180 * @dev: DRM device
cc1ef118 1181 * @pipe: index of CRTC to release
0a3e67a4
JB
1182 *
1183 * Release ownership of a given vblank counter, turning off interrupts
27641c3f 1184 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
89dd6a4b
DV
1185 *
1186 * This is the legacy version of drm_crtc_vblank_put().
0a3e67a4 1187 */
ceb74152 1188static void drm_vblank_put(struct drm_device *dev, unsigned int pipe)
0a3e67a4 1189{
cc1ef118 1190 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
8a51d5be 1191
cc1ef118 1192 if (WARN_ON(pipe >= dev->num_crtcs))
7f907bf2 1193 return;
b3f5e732 1194
7d1de851 1195 if (WARN_ON(atomic_read(&vblank->refcount) == 0))
e6ae8687
RC
1196 return;
1197
0a3e67a4 1198 /* Last user schedules interrupt disable */
4ed0ce3d 1199 if (atomic_dec_and_test(&vblank->refcount)) {
ab8905f1
DV
1200 if (drm_vblank_offdelay == 0)
1201 return;
608b2050 1202 else if (drm_vblank_offdelay < 0)
4ed0ce3d 1203 vblank_disable_fn((unsigned long)vblank);
608b2050 1204 else if (!dev->vblank_disable_immediate)
4ed0ce3d
VS
1205 mod_timer(&vblank->disable_timer,
1206 jiffies + ((drm_vblank_offdelay * HZ)/1000));
1207 }
0a3e67a4 1208}
0a3e67a4 1209
89dd6a4b
DV
1210/**
1211 * drm_crtc_vblank_put - give up ownership of vblank events
1212 * @crtc: which counter to give up
1213 *
1214 * Release ownership of a given vblank counter, turning off interrupts
1215 * if possible. Disable interrupts after drm_vblank_offdelay milliseconds.
89dd6a4b
DV
1216 */
1217void drm_crtc_vblank_put(struct drm_crtc *crtc)
1218{
1219 drm_vblank_put(crtc->dev, drm_crtc_index(crtc));
1220}
1221EXPORT_SYMBOL(drm_crtc_vblank_put);
1222
e8450f51
DV
1223/**
1224 * drm_wait_one_vblank - wait for one vblank
1225 * @dev: DRM device
cc1ef118 1226 * @pipe: CRTC index
e8450f51 1227 *
1da248a5
VS
1228 * This waits for one vblank to pass on @pipe, using the irq driver interfaces.
1229 * It is a failure to call this when the vblank irq for @pipe is disabled, e.g.
e8450f51
DV
1230 * due to lack of driver support or because the crtc is off.
1231 */
cc1ef118 1232void drm_wait_one_vblank(struct drm_device *dev, unsigned int pipe)
e8450f51 1233{
cc1ef118 1234 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
e8450f51
DV
1235 int ret;
1236 u32 last;
1237
cc1ef118 1238 if (WARN_ON(pipe >= dev->num_crtcs))
7d1de851
TR
1239 return;
1240
cc1ef118
TR
1241 ret = drm_vblank_get(dev, pipe);
1242 if (WARN(ret, "vblank not available on crtc %i, ret=%i\n", pipe, ret))
e8450f51
DV
1243 return;
1244
cc1ef118 1245 last = drm_vblank_count(dev, pipe);
e8450f51 1246
cc1ef118
TR
1247 ret = wait_event_timeout(vblank->queue,
1248 last != drm_vblank_count(dev, pipe),
e8450f51
DV
1249 msecs_to_jiffies(100));
1250
cc1ef118 1251 WARN(ret == 0, "vblank wait timed out on crtc %i\n", pipe);
e8450f51 1252
cc1ef118 1253 drm_vblank_put(dev, pipe);
e8450f51
DV
1254}
1255EXPORT_SYMBOL(drm_wait_one_vblank);
1256
1257/**
1258 * drm_crtc_wait_one_vblank - wait for one vblank
1259 * @crtc: DRM crtc
1260 *
1261 * This waits for one vblank to pass on @crtc, using the irq driver interfaces.
1262 * It is a failure to call this when the vblank irq for @crtc is disabled, e.g.
1263 * due to lack of driver support or because the crtc is off.
1264 */
1265void drm_crtc_wait_one_vblank(struct drm_crtc *crtc)
1266{
1267 drm_wait_one_vblank(crtc->dev, drm_crtc_index(crtc));
1268}
1269EXPORT_SYMBOL(drm_crtc_wait_one_vblank);
1270
c6eefa17 1271/**
2d1e331f
DV
1272 * drm_crtc_vblank_off - disable vblank events on a CRTC
1273 * @crtc: CRTC in question
c6eefa17 1274 *
f5752b38
DV
1275 * Drivers can use this function to shut down the vblank interrupt handling when
1276 * disabling a crtc. This function ensures that the latest vblank frame count is
2d1e331f 1277 * stored so that drm_vblank_on can restore it again.
f5752b38
DV
1278 *
1279 * Drivers must use this function when the hardware vblank counter can get
1280 * reset, e.g. when suspending.
c6eefa17 1281 */
2d1e331f 1282void drm_crtc_vblank_off(struct drm_crtc *crtc)
778c9026 1283{
2d1e331f
DV
1284 struct drm_device *dev = crtc->dev;
1285 unsigned int pipe = drm_crtc_index(crtc);
cc1ef118 1286 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
498548ec
CJHR
1287 struct drm_pending_vblank_event *e, *t;
1288 struct timeval now;
778c9026 1289 unsigned long irqflags;
498548ec 1290 unsigned int seq;
778c9026 1291
cc1ef118 1292 if (WARN_ON(pipe >= dev->num_crtcs))
e6ae8687
RC
1293 return;
1294
56cc279b
VS
1295 spin_lock_irqsave(&dev->event_lock, irqflags);
1296
1297 spin_lock(&dev->vbl_lock);
e8235891
MK
1298 DRM_DEBUG_VBL("crtc %d, vblank enabled %d, inmodeset %d\n",
1299 pipe, vblank->enabled, vblank->inmodeset);
1300
2d1e331f
DV
1301 /* Avoid redundant vblank disables without previous
1302 * drm_crtc_vblank_on(). */
e8235891
MK
1303 if (drm_core_check_feature(dev, DRIVER_ATOMIC) || !vblank->inmodeset)
1304 vblank_disable_and_save(dev, pipe);
1305
8a51d5be 1306 wake_up(&vblank->queue);
498548ec 1307
56cc279b
VS
1308 /*
1309 * Prevent subsequent drm_vblank_get() from re-enabling
1310 * the vblank interrupt by bumping the refcount.
1311 */
1312 if (!vblank->inmodeset) {
1313 atomic_inc(&vblank->refcount);
1314 vblank->inmodeset = 1;
1315 }
1316 spin_unlock(&dev->vbl_lock);
1317
498548ec 1318 /* Send any queued vblank events, lest the natives grow disquiet */
cc1ef118 1319 seq = drm_vblank_count_and_time(dev, pipe, &now);
e7783ba3 1320
498548ec 1321 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
cc1ef118 1322 if (e->pipe != pipe)
498548ec 1323 continue;
44844892 1324 DRM_DEBUG("Sending premature vblank event on disable: "
1d776851 1325 "wanted %u, current %u\n",
498548ec 1326 e->event.sequence, seq);
c6eefa17 1327 list_del(&e->base.link);
cc1ef118 1328 drm_vblank_put(dev, pipe);
c6eefa17 1329 send_vblank_event(dev, e, seq, &now);
498548ec 1330 }
56cc279b 1331 spin_unlock_irqrestore(&dev->event_lock, irqflags);
778c9026 1332}
89dd6a4b
DV
1333EXPORT_SYMBOL(drm_crtc_vblank_off);
1334
9625604c
DV
1335/**
1336 * drm_crtc_vblank_reset - reset vblank state to off on a CRTC
2b193f02 1337 * @crtc: CRTC in question
9625604c
DV
1338 *
1339 * Drivers can use this function to reset the vblank state to off at load time.
1340 * Drivers should use this together with the drm_crtc_vblank_off() and
1341 * drm_crtc_vblank_on() functions. The difference compared to
1342 * drm_crtc_vblank_off() is that this function doesn't save the vblank counter
1343 * and hence doesn't need to call any driver hooks.
1344 */
2b193f02 1345void drm_crtc_vblank_reset(struct drm_crtc *crtc)
9625604c 1346{
2b193f02 1347 struct drm_device *dev = crtc->dev;
9625604c 1348 unsigned long irqflags;
2b193f02 1349 unsigned int pipe = drm_crtc_index(crtc);
1da248a5 1350 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
9625604c
DV
1351
1352 spin_lock_irqsave(&dev->vbl_lock, irqflags);
1353 /*
1354 * Prevent subsequent drm_vblank_get() from enabling the vblank
1355 * interrupt by bumping the refcount.
1356 */
1357 if (!vblank->inmodeset) {
1358 atomic_inc(&vblank->refcount);
1359 vblank->inmodeset = 1;
1360 }
1361 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
1362
1363 WARN_ON(!list_empty(&dev->vblank_event_list));
1364}
1365EXPORT_SYMBOL(drm_crtc_vblank_reset);
1366
f2752282 1367/**
2d1e331f
DV
1368 * drm_crtc_vblank_on - enable vblank events on a CRTC
1369 * @crtc: CRTC in question
f5752b38
DV
1370 *
1371 * This functions restores the vblank interrupt state captured with
2d1e331f
DV
1372 * drm_crtc_vblank_off() again. Note that calls to drm_crtc_vblank_on() and
1373 * drm_crtc_vblank_off() can be unbalanced and so can also be unconditionally called
f5752b38 1374 * in driver load code to reflect the current hardware state of the crtc.
f2752282 1375 */
2d1e331f 1376void drm_crtc_vblank_on(struct drm_crtc *crtc)
f2752282 1377{
2d1e331f
DV
1378 struct drm_device *dev = crtc->dev;
1379 unsigned int pipe = drm_crtc_index(crtc);
cc1ef118 1380 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
f2752282
VS
1381 unsigned long irqflags;
1382
cc1ef118 1383 if (WARN_ON(pipe >= dev->num_crtcs))
e6ae8687
RC
1384 return;
1385
f2752282 1386 spin_lock_irqsave(&dev->vbl_lock, irqflags);
e8235891
MK
1387 DRM_DEBUG_VBL("crtc %d, vblank enabled %d, inmodeset %d\n",
1388 pipe, vblank->enabled, vblank->inmodeset);
1389
7ffd7a68 1390 /* Drop our private "prevent drm_vblank_get" refcount */
8a51d5be
VS
1391 if (vblank->inmodeset) {
1392 atomic_dec(&vblank->refcount);
1393 vblank->inmodeset = 0;
7ffd7a68 1394 }
f8ad028c 1395
4dfd6486
VS
1396 drm_reset_vblank_timestamp(dev, pipe);
1397
cd19e52a
VS
1398 /*
1399 * re-enable interrupts if there are users left, or the
1400 * user wishes vblank interrupts to be enabled all the time.
1401 */
bb74fc1b 1402 if (atomic_read(&vblank->refcount) != 0 || drm_vblank_offdelay == 0)
cc1ef118 1403 WARN_ON(drm_vblank_enable(dev, pipe));
f2752282
VS
1404 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
1405}
89dd6a4b
DV
1406EXPORT_SYMBOL(drm_crtc_vblank_on);
1407
07600c53
DV
1408static void drm_legacy_vblank_pre_modeset(struct drm_device *dev,
1409 unsigned int pipe)
f453ba04 1410{
cc1ef118 1411 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
8a51d5be 1412
b7ea85a4 1413 /* vblank is not initialized (IRQ not installed ?), or has been freed */
e77cef9c
JG
1414 if (!dev->num_crtcs)
1415 return;
e6ae8687 1416
cc1ef118 1417 if (WARN_ON(pipe >= dev->num_crtcs))
e6ae8687
RC
1418 return;
1419
f453ba04
DA
1420 /*
1421 * To avoid all the problems that might happen if interrupts
1422 * were enabled/disabled around or between these calls, we just
1423 * have the kernel take a reference on the CRTC (just once though
1424 * to avoid corrupting the count if multiple, mismatch calls occur),
1425 * so that interrupts remain enabled in the interim.
1426 */
8a51d5be
VS
1427 if (!vblank->inmodeset) {
1428 vblank->inmodeset = 0x1;
cc1ef118 1429 if (drm_vblank_get(dev, pipe) == 0)
8a51d5be 1430 vblank->inmodeset |= 0x2;
f453ba04
DA
1431 }
1432}
f453ba04 1433
07600c53
DV
1434static void drm_legacy_vblank_post_modeset(struct drm_device *dev,
1435 unsigned int pipe)
f453ba04 1436{
cc1ef118 1437 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
f453ba04
DA
1438 unsigned long irqflags;
1439
b7ea85a4
HC
1440 /* vblank is not initialized (IRQ not installed ?), or has been freed */
1441 if (!dev->num_crtcs)
1442 return;
1443
cc1ef118 1444 if (WARN_ON(pipe >= dev->num_crtcs))
7d1de851
TR
1445 return;
1446
8a51d5be 1447 if (vblank->inmodeset) {
f453ba04 1448 spin_lock_irqsave(&dev->vbl_lock, irqflags);
c61934ed 1449 drm_reset_vblank_timestamp(dev, pipe);
f453ba04 1450 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
b3f5e732 1451
8a51d5be 1452 if (vblank->inmodeset & 0x2)
cc1ef118 1453 drm_vblank_put(dev, pipe);
b3f5e732 1454
8a51d5be 1455 vblank->inmodeset = 0;
f453ba04
DA
1456 }
1457}
f453ba04 1458
25a9939c
DV
1459int drm_legacy_modeset_ctl(struct drm_device *dev, void *data,
1460 struct drm_file *file_priv)
0a3e67a4
JB
1461{
1462 struct drm_modeset_ctl *modeset = data;
cc1ef118 1463 unsigned int pipe;
0a3e67a4
JB
1464
1465 /* If drm_vblank_init() hasn't been called yet, just no-op */
1466 if (!dev->num_crtcs)
4a1b0714 1467 return 0;
0a3e67a4 1468
29935554 1469 /* KMS drivers handle this internally */
fa538645 1470 if (!drm_core_check_feature(dev, DRIVER_LEGACY))
29935554
LP
1471 return 0;
1472
cc1ef118
TR
1473 pipe = modeset->crtc;
1474 if (pipe >= dev->num_crtcs)
4a1b0714 1475 return -EINVAL;
0a3e67a4 1476
0a3e67a4
JB
1477 switch (modeset->cmd) {
1478 case _DRM_PRE_MODESET:
07600c53 1479 drm_legacy_vblank_pre_modeset(dev, pipe);
0a3e67a4
JB
1480 break;
1481 case _DRM_POST_MODESET:
07600c53 1482 drm_legacy_vblank_post_modeset(dev, pipe);
0a3e67a4
JB
1483 break;
1484 default:
4a1b0714 1485 return -EINVAL;
0a3e67a4
JB
1486 }
1487
4a1b0714 1488 return 0;
0a3e67a4
JB
1489}
1490
9a4d9bab
CW
1491static inline bool vblank_passed(u32 seq, u32 ref)
1492{
1493 return (seq - ref) <= (1 << 23);
1494}
1495
cc1ef118 1496static int drm_queue_vblank_event(struct drm_device *dev, unsigned int pipe,
c9a9c5e0
KH
1497 union drm_wait_vblank *vblwait,
1498 struct drm_file *file_priv)
1499{
ffe7c73a 1500 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
c9a9c5e0
KH
1501 struct drm_pending_vblank_event *e;
1502 struct timeval now;
1503 unsigned long flags;
1504 unsigned int seq;
ea5d552c 1505 int ret;
c9a9c5e0 1506
f76511b9 1507 e = kzalloc(sizeof(*e), GFP_KERNEL);
ea5d552c
CW
1508 if (e == NULL) {
1509 ret = -ENOMEM;
1510 goto err_put;
1511 }
c9a9c5e0
KH
1512
1513 e->pipe = pipe;
1514 e->event.base.type = DRM_EVENT_VBLANK;
f76511b9 1515 e->event.base.length = sizeof(e->event);
c9a9c5e0 1516 e->event.user_data = vblwait->request.signal;
c9a9c5e0 1517
c9a9c5e0
KH
1518 spin_lock_irqsave(&dev->event_lock, flags);
1519
ffe7c73a 1520 /*
2d1e331f
DV
1521 * drm_crtc_vblank_off() might have been called after we called
1522 * drm_vblank_get(). drm_crtc_vblank_off() holds event_lock around the
1523 * vblank disable, so no need for further locking. The reference from
1524 * drm_vblank_get() protects against vblank disable from another source.
ffe7c73a 1525 */
43dc7fe2 1526 if (!READ_ONCE(vblank->enabled)) {
ffe7c73a
VS
1527 ret = -EINVAL;
1528 goto err_unlock;
1529 }
1530
4020b220
DV
1531 ret = drm_event_reserve_init_locked(dev, file_priv, &e->base,
1532 &e->event.base);
1533
1534 if (ret)
ea5d552c 1535 goto err_unlock;
c9a9c5e0 1536
27641c3f
MK
1537 seq = drm_vblank_count_and_time(dev, pipe, &now);
1538
1d776851 1539 DRM_DEBUG("event on vblank count %u, current %u, crtc %u\n",
c9a9c5e0
KH
1540 vblwait->request.sequence, seq, pipe);
1541
7d52cb88 1542 trace_drm_vblank_event_queued(file_priv, pipe,
b9c2c9ae
JB
1543 vblwait->request.sequence);
1544
c9a9c5e0 1545 e->event.sequence = vblwait->request.sequence;
9a4d9bab 1546 if (vblank_passed(seq, vblwait->request.sequence)) {
6f331623 1547 drm_vblank_put(dev, pipe);
c6eefa17 1548 send_vblank_event(dev, e, seq, &now);
000fa7cf 1549 vblwait->reply.sequence = seq;
c9a9c5e0 1550 } else {
a6778e9e 1551 /* drm_handle_vblank_events will call drm_vblank_put */
c9a9c5e0 1552 list_add_tail(&e->base.link, &dev->vblank_event_list);
000fa7cf 1553 vblwait->reply.sequence = vblwait->request.sequence;
c9a9c5e0
KH
1554 }
1555
1556 spin_unlock_irqrestore(&dev->event_lock, flags);
1557
1558 return 0;
ea5d552c
CW
1559
1560err_unlock:
1561 spin_unlock_irqrestore(&dev->event_lock, flags);
1562 kfree(e);
1563err_put:
6f331623 1564 drm_vblank_put(dev, pipe);
ea5d552c 1565 return ret;
c9a9c5e0
KH
1566}
1567
b33b0270
CW
1568static bool drm_wait_vblank_is_query(union drm_wait_vblank *vblwait)
1569{
1570 if (vblwait->request.sequence)
1571 return false;
1572
1573 return _DRM_VBLANK_RELATIVE ==
1574 (vblwait->request.type & (_DRM_VBLANK_TYPES_MASK |
1575 _DRM_VBLANK_EVENT |
1576 _DRM_VBLANK_NEXTONMISS));
1577}
1578
f5752b38 1579/*
1da177e4
LT
1580 * Wait for VBLANK.
1581 *
1582 * \param inode device inode.
6c340eac 1583 * \param file_priv DRM file private.
1da177e4
LT
1584 * \param cmd command.
1585 * \param data user argument, pointing to a drm_wait_vblank structure.
1586 * \return zero on success or a negative number on failure.
1587 *
30b23634
EA
1588 * This function enables the vblank interrupt on the pipe requested, then
1589 * sleeps waiting for the requested sequence number to occur, and drops
f5752b38 1590 * the vblank interrupt refcount afterwards. (vblank IRQ disable follows that
30b23634 1591 * after a timeout with no further vblank waits scheduled).
1da177e4 1592 */
0a3e67a4
JB
1593int drm_wait_vblank(struct drm_device *dev, void *data,
1594 struct drm_file *file_priv)
1da177e4 1595{
8a51d5be 1596 struct drm_vblank_crtc *vblank;
c153f45f 1597 union drm_wait_vblank *vblwait = data;
4a1b0714 1598 int ret;
cc1ef118 1599 unsigned int flags, seq, pipe, high_pipe;
1da177e4 1600
4984979b
DV
1601 if (!dev->irq_enabled)
1602 return -EINVAL;
1da177e4 1603
30b23634
EA
1604 if (vblwait->request.type & _DRM_VBLANK_SIGNAL)
1605 return -EINVAL;
1606
c153f45f 1607 if (vblwait->request.type &
19b01b5f
IH
1608 ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1609 _DRM_VBLANK_HIGH_CRTC_MASK)) {
776c9443 1610 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
c153f45f 1611 vblwait->request.type,
19b01b5f
IH
1612 (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK |
1613 _DRM_VBLANK_HIGH_CRTC_MASK));
776c9443
MD
1614 return -EINVAL;
1615 }
1616
c153f45f 1617 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
cc1ef118
TR
1618 high_pipe = (vblwait->request.type & _DRM_VBLANK_HIGH_CRTC_MASK);
1619 if (high_pipe)
1620 pipe = high_pipe >> _DRM_VBLANK_HIGH_CRTC_SHIFT;
19b01b5f 1621 else
cc1ef118
TR
1622 pipe = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
1623 if (pipe >= dev->num_crtcs)
776c9443
MD
1624 return -EINVAL;
1625
cc1ef118 1626 vblank = &dev->vblank[pipe];
8a51d5be 1627
b33b0270
CW
1628 /* If the counter is currently enabled and accurate, short-circuit
1629 * queries to return the cached timestamp of the last vblank.
1630 */
1631 if (dev->vblank_disable_immediate &&
1632 drm_wait_vblank_is_query(vblwait) &&
1633 READ_ONCE(vblank->enabled)) {
1634 struct timeval now;
1635
1636 vblwait->reply.sequence =
1637 drm_vblank_count_and_time(dev, pipe, &now);
1638 vblwait->reply.tval_sec = now.tv_sec;
1639 vblwait->reply.tval_usec = now.tv_usec;
1640 return 0;
1641 }
1642
cc1ef118 1643 ret = drm_vblank_get(dev, pipe);
0a3e67a4 1644 if (ret) {
82c8e025 1645 DRM_DEBUG("crtc %d failed to acquire vblank counter, %d\n", pipe, ret);
0a3e67a4
JB
1646 return ret;
1647 }
cc1ef118 1648 seq = drm_vblank_count(dev, pipe);
776c9443 1649
c153f45f 1650 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
1da177e4 1651 case _DRM_VBLANK_RELATIVE:
c153f45f
EA
1652 vblwait->request.sequence += seq;
1653 vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
1da177e4
LT
1654 case _DRM_VBLANK_ABSOLUTE:
1655 break;
1656 default:
0a3e67a4
JB
1657 ret = -EINVAL;
1658 goto done;
1da177e4
LT
1659 }
1660
97ef1ae0 1661 if ((flags & _DRM_VBLANK_NEXTONMISS) &&
9a4d9bab 1662 vblank_passed(seq, vblwait->request.sequence))
97ef1ae0 1663 vblwait->request.sequence = seq + 1;
97ef1ae0 1664
a6778e9e
IH
1665 if (flags & _DRM_VBLANK_EVENT) {
1666 /* must hold on to the vblank ref until the event fires
1667 * drm_vblank_put will be called asynchronously
1668 */
cc1ef118 1669 return drm_queue_vblank_event(dev, pipe, vblwait, file_priv);
a6778e9e 1670 }
c9a9c5e0 1671
82c8e025
CW
1672 if (vblwait->request.sequence != seq) {
1673 DRM_DEBUG("waiting on vblank count %u, crtc %u\n",
1674 vblwait->request.sequence, pipe);
1675 DRM_WAIT_ON(ret, vblank->queue, 3 * HZ,
9a4d9bab
CW
1676 vblank_passed(drm_vblank_count(dev, pipe),
1677 vblwait->request.sequence) ||
6c06a597 1678 !READ_ONCE(vblank->enabled));
82c8e025 1679 }
1da177e4 1680
30b23634
EA
1681 if (ret != -EINTR) {
1682 struct timeval now;
1da177e4 1683
cc1ef118 1684 vblwait->reply.sequence = drm_vblank_count_and_time(dev, pipe, &now);
30b23634
EA
1685 vblwait->reply.tval_sec = now.tv_sec;
1686 vblwait->reply.tval_usec = now.tv_usec;
27641c3f 1687
82c8e025
CW
1688 DRM_DEBUG("crtc %d returning %u to client\n",
1689 pipe, vblwait->reply.sequence);
1da177e4 1690 } else {
82c8e025 1691 DRM_DEBUG("crtc %d vblank wait interrupted by signal\n", pipe);
1da177e4
LT
1692 }
1693
0a3e67a4 1694done:
cc1ef118 1695 drm_vblank_put(dev, pipe);
1da177e4
LT
1696 return ret;
1697}
1698
cc1ef118 1699static void drm_handle_vblank_events(struct drm_device *dev, unsigned int pipe)
c9a9c5e0
KH
1700{
1701 struct drm_pending_vblank_event *e, *t;
1702 struct timeval now;
c9a9c5e0
KH
1703 unsigned int seq;
1704
56cc279b 1705 assert_spin_locked(&dev->event_lock);
c9a9c5e0 1706
cc1ef118 1707 seq = drm_vblank_count_and_time(dev, pipe, &now);
c9a9c5e0
KH
1708
1709 list_for_each_entry_safe(e, t, &dev->vblank_event_list, base.link) {
cc1ef118 1710 if (e->pipe != pipe)
c9a9c5e0 1711 continue;
9a4d9bab 1712 if (!vblank_passed(seq, e->event.sequence))
c9a9c5e0
KH
1713 continue;
1714
1d776851 1715 DRM_DEBUG("vblank event on %u, current %u\n",
c9a9c5e0
KH
1716 e->event.sequence, seq);
1717
c6eefa17 1718 list_del(&e->base.link);
cc1ef118 1719 drm_vblank_put(dev, pipe);
c6eefa17 1720 send_vblank_event(dev, e, seq, &now);
c9a9c5e0
KH
1721 }
1722
cc1ef118 1723 trace_drm_vblank_event(pipe, seq);
c9a9c5e0
KH
1724}
1725
0a3e67a4
JB
1726/**
1727 * drm_handle_vblank - handle a vblank event
1728 * @dev: DRM device
cc1ef118 1729 * @pipe: index of CRTC where this event occurred
0a3e67a4
JB
1730 *
1731 * Drivers should call this routine in their vblank interrupt handlers to
1732 * update the vblank counter and send any signals that may be pending.
115ebcd4
TR
1733 *
1734 * This is the legacy version of drm_crtc_handle_vblank().
0a3e67a4 1735 */
cc1ef118 1736bool drm_handle_vblank(struct drm_device *dev, unsigned int pipe)
0a3e67a4 1737{
cc1ef118 1738 struct drm_vblank_crtc *vblank = &dev->vblank[pipe];
27641c3f 1739 unsigned long irqflags;
75cff083 1740 bool disable_irq;
27641c3f 1741
ee3c7795 1742 if (WARN_ON_ONCE(!dev->num_crtcs))
78c6e170 1743 return false;
c9a9c5e0 1744
cc1ef118 1745 if (WARN_ON(pipe >= dev->num_crtcs))
e6ae8687
RC
1746 return false;
1747
56cc279b
VS
1748 spin_lock_irqsave(&dev->event_lock, irqflags);
1749
27641c3f
MK
1750 /* Need timestamp lock to prevent concurrent execution with
1751 * vblank enable/disable, as this would cause inconsistent
1752 * or corrupted timestamps and vblank counts.
1753 */
56cc279b 1754 spin_lock(&dev->vblank_time_lock);
27641c3f
MK
1755
1756 /* Vblank irq handling disabled. Nothing to do. */
8a51d5be 1757 if (!vblank->enabled) {
56cc279b
VS
1758 spin_unlock(&dev->vblank_time_lock);
1759 spin_unlock_irqrestore(&dev->event_lock, irqflags);
78c6e170 1760 return false;
27641c3f
MK
1761 }
1762
4dfd6486 1763 drm_update_vblank_count(dev, pipe, DRM_CALLED_FROM_VBLIRQ);
27641c3f 1764
56cc279b
VS
1765 spin_unlock(&dev->vblank_time_lock);
1766
8a51d5be 1767 wake_up(&vblank->queue);
27641c3f 1768
608b2050 1769 /* With instant-off, we defer disabling the interrupt until after
75cff083
CW
1770 * we finish processing the following vblank after all events have
1771 * been signaled. The disable has to be last (after
1772 * drm_handle_vblank_events) so that the timestamp is always accurate.
608b2050 1773 */
75cff083
CW
1774 disable_irq = (dev->vblank_disable_immediate &&
1775 drm_vblank_offdelay > 0 &&
1776 !atomic_read(&vblank->refcount));
1777
1778 drm_handle_vblank_events(dev, pipe);
608b2050 1779
56cc279b
VS
1780 spin_unlock_irqrestore(&dev->event_lock, irqflags);
1781
75cff083
CW
1782 if (disable_irq)
1783 vblank_disable_fn((unsigned long)vblank);
1784
78c6e170 1785 return true;
0a3e67a4
JB
1786}
1787EXPORT_SYMBOL(drm_handle_vblank);
115ebcd4
TR
1788
1789/**
1790 * drm_crtc_handle_vblank - handle a vblank event
1791 * @crtc: where this event occurred
1792 *
1793 * Drivers should call this routine in their vblank interrupt handlers to
1794 * update the vblank counter and send any signals that may be pending.
1795 *
1796 * This is the native KMS version of drm_handle_vblank().
1797 *
1798 * Returns:
1799 * True if the event was successfully handled, false on failure.
1800 */
1801bool drm_crtc_handle_vblank(struct drm_crtc *crtc)
1802{
1803 return drm_handle_vblank(crtc->dev, drm_crtc_index(crtc));
1804}
1805EXPORT_SYMBOL(drm_crtc_handle_vblank);