xref: /linux/drivers/gpu/drm/i915/display/intel_crtc.c (revision f6e8dc9edf963dbc99085e54f6ced6da9daa6100)
1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright © 2020 Intel Corporation
4  */
5 #include <linux/kernel.h>
6 #include <linux/pm_qos.h>
7 #include <linux/slab.h>
8 
9 #include <drm/drm_atomic_helper.h>
10 #include <drm/drm_fourcc.h>
11 #include <drm/drm_plane.h>
12 #include <drm/drm_print.h>
13 #include <drm/drm_vblank.h>
14 #include <drm/drm_vblank_work.h>
15 
16 #include "i915_drv.h"
17 #include "i915_vgpu.h"
18 #include "i9xx_plane.h"
19 #include "icl_dsi.h"
20 #include "intel_atomic.h"
21 #include "intel_color.h"
22 #include "intel_crtc.h"
23 #include "intel_cursor.h"
24 #include "intel_display_debugfs.h"
25 #include "intel_display_irq.h"
26 #include "intel_display_trace.h"
27 #include "intel_display_types.h"
28 #include "intel_drrs.h"
29 #include "intel_dsi.h"
30 #include "intel_fifo_underrun.h"
31 #include "intel_pipe_crc.h"
32 #include "intel_plane.h"
33 #include "intel_psr.h"
34 #include "intel_sprite.h"
35 #include "intel_vblank.h"
36 #include "intel_vrr.h"
37 #include "skl_universal_plane.h"
38 
39 static void assert_vblank_disabled(struct drm_crtc *crtc)
40 {
41 	struct intel_display *display = to_intel_display(crtc->dev);
42 
43 	if (INTEL_DISPLAY_STATE_WARN(display, drm_crtc_vblank_get(crtc) == 0,
44 				     "[CRTC:%d:%s] vblank assertion failure (expected off, current on)\n",
45 				     crtc->base.id, crtc->name))
46 		drm_crtc_vblank_put(crtc);
47 }
48 
49 struct intel_crtc *intel_first_crtc(struct intel_display *display)
50 {
51 	return to_intel_crtc(drm_crtc_from_index(display->drm, 0));
52 }
53 
54 struct intel_crtc *intel_crtc_for_pipe(struct intel_display *display,
55 				       enum pipe pipe)
56 {
57 	struct intel_crtc *crtc;
58 
59 	for_each_intel_crtc(display->drm, crtc) {
60 		if (crtc->pipe == pipe)
61 			return crtc;
62 	}
63 
64 	return NULL;
65 }
66 
67 void intel_crtc_wait_for_next_vblank(struct intel_crtc *crtc)
68 {
69 	drm_crtc_wait_one_vblank(&crtc->base);
70 }
71 
72 void intel_wait_for_vblank_if_active(struct intel_display *display,
73 				     enum pipe pipe)
74 {
75 	struct intel_crtc *crtc = intel_crtc_for_pipe(display, pipe);
76 
77 	if (crtc->active)
78 		intel_crtc_wait_for_next_vblank(crtc);
79 }
80 
81 u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc)
82 {
83 	struct drm_vblank_crtc *vblank = drm_crtc_vblank_crtc(&crtc->base);
84 
85 	if (!crtc->active)
86 		return 0;
87 
88 	if (!vblank->max_vblank_count)
89 		return (u32)drm_crtc_accurate_vblank_count(&crtc->base);
90 
91 	return crtc->base.funcs->get_vblank_counter(&crtc->base);
92 }
93 
94 u32 intel_crtc_max_vblank_count(const struct intel_crtc_state *crtc_state)
95 {
96 	struct intel_display *display = to_intel_display(crtc_state);
97 
98 	/*
99 	 * From Gen 11, in case of dsi cmd mode, frame counter wouldn't
100 	 * have updated at the beginning of TE, if we want to use
101 	 * the hw counter, then we would find it updated in only
102 	 * the next TE, hence switching to sw counter.
103 	 */
104 	if (crtc_state->mode_flags & (I915_MODE_FLAG_DSI_USE_TE0 |
105 				      I915_MODE_FLAG_DSI_USE_TE1))
106 		return 0;
107 
108 	/*
109 	 * On i965gm the hardware frame counter reads
110 	 * zero when the TV encoder is enabled :(
111 	 */
112 	if (display->platform.i965gm &&
113 	    (crtc_state->output_types & BIT(INTEL_OUTPUT_TVOUT)))
114 		return 0;
115 
116 	if (DISPLAY_VER(display) >= 5 || display->platform.g4x)
117 		return 0xffffffff; /* full 32 bit counter */
118 	else if (DISPLAY_VER(display) >= 3)
119 		return 0xffffff; /* only 24 bits of frame count */
120 	else
121 		return 0; /* Gen2 doesn't have a hardware frame counter */
122 }
123 
124 void intel_crtc_vblank_on(const struct intel_crtc_state *crtc_state)
125 {
126 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
127 
128 	crtc->vblank_psr_notify = intel_psr_needs_vblank_notification(crtc_state);
129 
130 	assert_vblank_disabled(&crtc->base);
131 	drm_crtc_set_max_vblank_count(&crtc->base,
132 				      intel_crtc_max_vblank_count(crtc_state));
133 	drm_crtc_vblank_on(&crtc->base);
134 
135 	/*
136 	 * Should really happen exactly when we enable the pipe
137 	 * but we want the frame counters in the trace, and that
138 	 * requires vblank support on some platforms/outputs.
139 	 */
140 	trace_intel_pipe_enable(crtc);
141 }
142 
143 void intel_crtc_vblank_off(const struct intel_crtc_state *crtc_state)
144 {
145 	struct intel_display *display = to_intel_display(crtc_state);
146 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
147 
148 	/*
149 	 * Should really happen exactly when we disable the pipe
150 	 * but we want the frame counters in the trace, and that
151 	 * requires vblank support on some platforms/outputs.
152 	 */
153 	trace_intel_pipe_disable(crtc);
154 
155 	drm_crtc_vblank_off(&crtc->base);
156 	assert_vblank_disabled(&crtc->base);
157 
158 	crtc->vblank_psr_notify = false;
159 
160 	flush_work(&display->irq.vblank_notify_work);
161 }
162 
163 struct intel_crtc_state *intel_crtc_state_alloc(struct intel_crtc *crtc)
164 {
165 	struct intel_crtc_state *crtc_state;
166 
167 	crtc_state = kmalloc(sizeof(*crtc_state), GFP_KERNEL);
168 
169 	if (crtc_state)
170 		intel_crtc_state_reset(crtc_state, crtc);
171 
172 	return crtc_state;
173 }
174 
175 void intel_crtc_state_reset(struct intel_crtc_state *crtc_state,
176 			    struct intel_crtc *crtc)
177 {
178 	memset(crtc_state, 0, sizeof(*crtc_state));
179 
180 	__drm_atomic_helper_crtc_state_reset(&crtc_state->uapi, &crtc->base);
181 
182 	crtc_state->cpu_transcoder = INVALID_TRANSCODER;
183 	crtc_state->master_transcoder = INVALID_TRANSCODER;
184 	crtc_state->hsw_workaround_pipe = INVALID_PIPE;
185 	crtc_state->scaler_state.scaler_id = -1;
186 	crtc_state->mst_master_transcoder = INVALID_TRANSCODER;
187 	crtc_state->max_link_bpp_x16 = INT_MAX;
188 }
189 
190 static struct intel_crtc *intel_crtc_alloc(void)
191 {
192 	struct intel_crtc_state *crtc_state;
193 	struct intel_crtc *crtc;
194 
195 	crtc = kzalloc(sizeof(*crtc), GFP_KERNEL);
196 	if (!crtc)
197 		return ERR_PTR(-ENOMEM);
198 
199 	crtc_state = intel_crtc_state_alloc(crtc);
200 	if (!crtc_state) {
201 		kfree(crtc);
202 		return ERR_PTR(-ENOMEM);
203 	}
204 
205 	crtc->base.state = &crtc_state->uapi;
206 	crtc->config = crtc_state;
207 
208 	return crtc;
209 }
210 
211 static void intel_crtc_free(struct intel_crtc *crtc)
212 {
213 	intel_crtc_destroy_state(&crtc->base, crtc->base.state);
214 	kfree(crtc);
215 }
216 
217 static void intel_crtc_destroy(struct drm_crtc *_crtc)
218 {
219 	struct intel_crtc *crtc = to_intel_crtc(_crtc);
220 
221 	cpu_latency_qos_remove_request(&crtc->vblank_pm_qos);
222 
223 	drm_crtc_cleanup(&crtc->base);
224 	kfree(crtc);
225 }
226 
227 static int intel_crtc_late_register(struct drm_crtc *crtc)
228 {
229 	intel_crtc_debugfs_add(to_intel_crtc(crtc));
230 	return 0;
231 }
232 
233 #define INTEL_CRTC_FUNCS \
234 	.set_config = drm_atomic_helper_set_config, \
235 	.destroy = intel_crtc_destroy, \
236 	.page_flip = drm_atomic_helper_page_flip, \
237 	.atomic_duplicate_state = intel_crtc_duplicate_state, \
238 	.atomic_destroy_state = intel_crtc_destroy_state, \
239 	.set_crc_source = intel_crtc_set_crc_source, \
240 	.verify_crc_source = intel_crtc_verify_crc_source, \
241 	.get_crc_sources = intel_crtc_get_crc_sources, \
242 	.late_register = intel_crtc_late_register
243 
244 static const struct drm_crtc_funcs bdw_crtc_funcs = {
245 	INTEL_CRTC_FUNCS,
246 
247 	.get_vblank_counter = g4x_get_vblank_counter,
248 	.enable_vblank = bdw_enable_vblank,
249 	.disable_vblank = bdw_disable_vblank,
250 	.get_vblank_timestamp = intel_crtc_get_vblank_timestamp,
251 };
252 
253 static const struct drm_crtc_funcs ilk_crtc_funcs = {
254 	INTEL_CRTC_FUNCS,
255 
256 	.get_vblank_counter = g4x_get_vblank_counter,
257 	.enable_vblank = ilk_enable_vblank,
258 	.disable_vblank = ilk_disable_vblank,
259 	.get_vblank_timestamp = intel_crtc_get_vblank_timestamp,
260 };
261 
262 static const struct drm_crtc_funcs g4x_crtc_funcs = {
263 	INTEL_CRTC_FUNCS,
264 
265 	.get_vblank_counter = g4x_get_vblank_counter,
266 	.enable_vblank = i965_enable_vblank,
267 	.disable_vblank = i965_disable_vblank,
268 	.get_vblank_timestamp = intel_crtc_get_vblank_timestamp,
269 };
270 
271 static const struct drm_crtc_funcs i965_crtc_funcs = {
272 	INTEL_CRTC_FUNCS,
273 
274 	.get_vblank_counter = i915_get_vblank_counter,
275 	.enable_vblank = i965_enable_vblank,
276 	.disable_vblank = i965_disable_vblank,
277 	.get_vblank_timestamp = intel_crtc_get_vblank_timestamp,
278 };
279 
280 static const struct drm_crtc_funcs i915gm_crtc_funcs = {
281 	INTEL_CRTC_FUNCS,
282 
283 	.get_vblank_counter = i915_get_vblank_counter,
284 	.enable_vblank = i915gm_enable_vblank,
285 	.disable_vblank = i915gm_disable_vblank,
286 	.get_vblank_timestamp = intel_crtc_get_vblank_timestamp,
287 };
288 
289 static const struct drm_crtc_funcs i915_crtc_funcs = {
290 	INTEL_CRTC_FUNCS,
291 
292 	.get_vblank_counter = i915_get_vblank_counter,
293 	.enable_vblank = i8xx_enable_vblank,
294 	.disable_vblank = i8xx_disable_vblank,
295 	.get_vblank_timestamp = intel_crtc_get_vblank_timestamp,
296 };
297 
298 static const struct drm_crtc_funcs i8xx_crtc_funcs = {
299 	INTEL_CRTC_FUNCS,
300 
301 	/* no hw vblank counter */
302 	.enable_vblank = i8xx_enable_vblank,
303 	.disable_vblank = i8xx_disable_vblank,
304 	.get_vblank_timestamp = intel_crtc_get_vblank_timestamp,
305 };
306 
307 int intel_crtc_init(struct intel_display *display, enum pipe pipe)
308 {
309 	struct intel_plane *primary, *cursor;
310 	const struct drm_crtc_funcs *funcs;
311 	struct intel_crtc *crtc;
312 	int sprite, ret;
313 
314 	crtc = intel_crtc_alloc();
315 	if (IS_ERR(crtc))
316 		return PTR_ERR(crtc);
317 
318 	crtc->pipe = pipe;
319 	crtc->num_scalers = DISPLAY_RUNTIME_INFO(display)->num_scalers[pipe];
320 
321 	if (DISPLAY_VER(display) >= 9)
322 		primary = skl_universal_plane_create(display, pipe, PLANE_1);
323 	else
324 		primary = intel_primary_plane_create(display, pipe);
325 	if (IS_ERR(primary)) {
326 		ret = PTR_ERR(primary);
327 		goto fail;
328 	}
329 	crtc->plane_ids_mask |= BIT(primary->id);
330 
331 	intel_init_fifo_underrun_reporting(display, crtc, false);
332 
333 	for_each_sprite(display, pipe, sprite) {
334 		struct intel_plane *plane;
335 
336 		if (DISPLAY_VER(display) >= 9)
337 			plane = skl_universal_plane_create(display, pipe, PLANE_2 + sprite);
338 		else
339 			plane = intel_sprite_plane_create(display, pipe, sprite);
340 		if (IS_ERR(plane)) {
341 			ret = PTR_ERR(plane);
342 			goto fail;
343 		}
344 		crtc->plane_ids_mask |= BIT(plane->id);
345 	}
346 
347 	cursor = intel_cursor_plane_create(display, pipe);
348 	if (IS_ERR(cursor)) {
349 		ret = PTR_ERR(cursor);
350 		goto fail;
351 	}
352 	crtc->plane_ids_mask |= BIT(cursor->id);
353 
354 	if (HAS_GMCH(display)) {
355 		if (display->platform.cherryview ||
356 		    display->platform.valleyview ||
357 		    display->platform.g4x)
358 			funcs = &g4x_crtc_funcs;
359 		else if (DISPLAY_VER(display) == 4)
360 			funcs = &i965_crtc_funcs;
361 		else if (display->platform.i945gm ||
362 			 display->platform.i915gm)
363 			funcs = &i915gm_crtc_funcs;
364 		else if (DISPLAY_VER(display) == 3)
365 			funcs = &i915_crtc_funcs;
366 		else
367 			funcs = &i8xx_crtc_funcs;
368 	} else {
369 		if (DISPLAY_VER(display) >= 8)
370 			funcs = &bdw_crtc_funcs;
371 		else
372 			funcs = &ilk_crtc_funcs;
373 	}
374 
375 	ret = drm_crtc_init_with_planes(display->drm, &crtc->base,
376 					&primary->base, &cursor->base,
377 					funcs, "pipe %c", pipe_name(pipe));
378 	if (ret)
379 		goto fail;
380 
381 	if (DISPLAY_VER(display) >= 11)
382 		drm_crtc_create_scaling_filter_property(&crtc->base,
383 						BIT(DRM_SCALING_FILTER_DEFAULT) |
384 						BIT(DRM_SCALING_FILTER_NEAREST_NEIGHBOR));
385 
386 	intel_color_crtc_init(crtc);
387 	intel_drrs_crtc_init(crtc);
388 	intel_crtc_crc_init(crtc);
389 
390 	cpu_latency_qos_add_request(&crtc->vblank_pm_qos, PM_QOS_DEFAULT_VALUE);
391 
392 	drm_WARN_ON(display->drm, drm_crtc_index(&crtc->base) != crtc->pipe);
393 
394 	return 0;
395 
396 fail:
397 	intel_crtc_free(crtc);
398 
399 	return ret;
400 }
401 
402 int intel_crtc_get_pipe_from_crtc_id_ioctl(struct drm_device *dev, void *data,
403 					   struct drm_file *file)
404 {
405 	struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
406 	struct drm_crtc *drm_crtc;
407 	struct intel_crtc *crtc;
408 
409 	drm_crtc = drm_crtc_find(dev, file, pipe_from_crtc_id->crtc_id);
410 	if (!drm_crtc)
411 		return -ENOENT;
412 
413 	crtc = to_intel_crtc(drm_crtc);
414 	pipe_from_crtc_id->pipe = crtc->pipe;
415 
416 	return 0;
417 }
418 
419 static bool intel_crtc_needs_vblank_work(const struct intel_crtc_state *crtc_state)
420 {
421 	struct intel_display *display = to_intel_display(crtc_state);
422 
423 	return crtc_state->hw.active &&
424 		!crtc_state->preload_luts &&
425 		!intel_crtc_needs_modeset(crtc_state) &&
426 		(intel_crtc_needs_color_update(crtc_state) &&
427 		 !HAS_DOUBLE_BUFFERED_LUT(display)) &&
428 		!intel_color_uses_dsb(crtc_state) &&
429 		!crtc_state->use_dsb;
430 }
431 
432 static void intel_crtc_vblank_work(struct kthread_work *base)
433 {
434 	struct drm_vblank_work *work = to_drm_vblank_work(base);
435 	struct intel_crtc_state *crtc_state =
436 		container_of(work, typeof(*crtc_state), vblank_work);
437 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
438 
439 	trace_intel_crtc_vblank_work_start(crtc);
440 
441 	intel_color_load_luts(crtc_state);
442 
443 	if (crtc_state->uapi.event) {
444 		spin_lock_irq(&crtc->base.dev->event_lock);
445 		drm_crtc_send_vblank_event(&crtc->base, crtc_state->uapi.event);
446 		spin_unlock_irq(&crtc->base.dev->event_lock);
447 		crtc_state->uapi.event = NULL;
448 	}
449 
450 	trace_intel_crtc_vblank_work_end(crtc);
451 }
452 
453 static void intel_crtc_vblank_work_init(struct intel_crtc_state *crtc_state)
454 {
455 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
456 
457 	drm_vblank_work_init(&crtc_state->vblank_work, &crtc->base,
458 			     intel_crtc_vblank_work);
459 	/*
460 	 * Interrupt latency is critical for getting the vblank
461 	 * work executed as early as possible during the vblank.
462 	 */
463 	cpu_latency_qos_update_request(&crtc->vblank_pm_qos, 0);
464 }
465 
466 void intel_wait_for_vblank_workers(struct intel_atomic_state *state)
467 {
468 	struct intel_crtc_state *crtc_state;
469 	struct intel_crtc *crtc;
470 	int i;
471 
472 	for_each_new_intel_crtc_in_state(state, crtc, crtc_state, i) {
473 		if (!intel_crtc_needs_vblank_work(crtc_state))
474 			continue;
475 
476 		drm_vblank_work_flush(&crtc_state->vblank_work);
477 		cpu_latency_qos_update_request(&crtc->vblank_pm_qos,
478 					       PM_QOS_DEFAULT_VALUE);
479 	}
480 }
481 
482 int intel_usecs_to_scanlines(const struct drm_display_mode *adjusted_mode,
483 			     int usecs)
484 {
485 	/* paranoia */
486 	if (!adjusted_mode->crtc_htotal)
487 		return 1;
488 
489 	return DIV_ROUND_UP_ULL(mul_u32_u32(usecs, adjusted_mode->crtc_clock),
490 				1000 * adjusted_mode->crtc_htotal);
491 }
492 
493 int intel_scanlines_to_usecs(const struct drm_display_mode *adjusted_mode,
494 			     int scanlines)
495 {
496 	/* paranoia */
497 	if (!adjusted_mode->crtc_clock)
498 		return 1;
499 
500 	return DIV_ROUND_UP_ULL(mul_u32_u32(scanlines, adjusted_mode->crtc_htotal * 1000),
501 				adjusted_mode->crtc_clock);
502 }
503 
504 /**
505  * intel_pipe_update_start() - start update of a set of display registers
506  * @state: the atomic state
507  * @crtc: the crtc
508  *
509  * Mark the start of an update to pipe registers that should be updated
510  * atomically regarding vblank. If the next vblank will happens within
511  * the next 100 us, this function waits until the vblank passes.
512  *
513  * After a successful call to this function, interrupts will be disabled
514  * until a subsequent call to intel_pipe_update_end(). That is done to
515  * avoid random delays.
516  */
517 void intel_pipe_update_start(struct intel_atomic_state *state,
518 			     struct intel_crtc *crtc)
519 {
520 	struct intel_display *display = to_intel_display(state);
521 	const struct intel_crtc_state *old_crtc_state =
522 		intel_atomic_get_old_crtc_state(state, crtc);
523 	struct intel_crtc_state *new_crtc_state =
524 		intel_atomic_get_new_crtc_state(state, crtc);
525 	struct intel_vblank_evade_ctx evade;
526 	int scanline;
527 
528 	drm_WARN_ON(display->drm, new_crtc_state->use_dsb);
529 
530 	intel_psr_lock(new_crtc_state);
531 
532 	if (new_crtc_state->do_async_flip) {
533 		intel_crtc_prepare_vblank_event(new_crtc_state,
534 						&crtc->flip_done_event);
535 		return;
536 	}
537 
538 	if (intel_crtc_needs_vblank_work(new_crtc_state))
539 		intel_crtc_vblank_work_init(new_crtc_state);
540 
541 	if (state->base.legacy_cursor_update) {
542 		struct intel_plane *plane;
543 		struct intel_plane_state *old_plane_state, *new_plane_state;
544 		int i;
545 
546 		for_each_oldnew_intel_plane_in_state(state, plane, old_plane_state,
547 						     new_plane_state, i) {
548 			if (old_plane_state->uapi.crtc == &crtc->base)
549 				intel_plane_init_cursor_vblank_work(old_plane_state,
550 								    new_plane_state);
551 		}
552 	}
553 
554 	intel_vblank_evade_init(old_crtc_state, new_crtc_state, &evade);
555 
556 	if (drm_WARN_ON(display->drm, drm_crtc_vblank_get(&crtc->base)))
557 		goto irq_disable;
558 
559 	/*
560 	 * Wait for psr to idle out after enabling the VBL interrupts
561 	 * VBL interrupts will start the PSR exit and prevent a PSR
562 	 * re-entry as well.
563 	 */
564 	intel_psr_wait_for_idle_locked(new_crtc_state);
565 
566 	local_irq_disable();
567 
568 	crtc->debug.min_vbl = evade.min;
569 	crtc->debug.max_vbl = evade.max;
570 	trace_intel_pipe_update_start(crtc);
571 
572 	scanline = intel_vblank_evade(&evade);
573 
574 	drm_crtc_vblank_put(&crtc->base);
575 
576 	crtc->debug.scanline_start = scanline;
577 	crtc->debug.start_vbl_time = ktime_get();
578 	crtc->debug.start_vbl_count = intel_crtc_get_vblank_counter(crtc);
579 
580 	trace_intel_pipe_update_vblank_evaded(crtc);
581 	return;
582 
583 irq_disable:
584 	local_irq_disable();
585 }
586 
587 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_VBLANK_EVADE)
588 static void dbg_vblank_evade(struct intel_crtc *crtc, ktime_t end)
589 {
590 	u64 delta = ktime_to_ns(ktime_sub(end, crtc->debug.start_vbl_time));
591 	unsigned int h;
592 
593 	h = ilog2(delta >> 9);
594 	if (h >= ARRAY_SIZE(crtc->debug.vbl.times))
595 		h = ARRAY_SIZE(crtc->debug.vbl.times) - 1;
596 	crtc->debug.vbl.times[h]++;
597 
598 	crtc->debug.vbl.sum += delta;
599 	if (!crtc->debug.vbl.min || delta < crtc->debug.vbl.min)
600 		crtc->debug.vbl.min = delta;
601 	if (delta > crtc->debug.vbl.max)
602 		crtc->debug.vbl.max = delta;
603 
604 	if (delta > 1000 * VBLANK_EVASION_TIME_US) {
605 		drm_dbg_kms(crtc->base.dev,
606 			    "Atomic update on pipe (%c) took %lld us, max time under evasion is %u us\n",
607 			    pipe_name(crtc->pipe),
608 			    div_u64(delta, 1000),
609 			    VBLANK_EVASION_TIME_US);
610 		crtc->debug.vbl.over++;
611 	}
612 }
613 #else
614 static void dbg_vblank_evade(struct intel_crtc *crtc, ktime_t end) {}
615 #endif
616 
617 void intel_crtc_arm_vblank_event(struct intel_crtc_state *crtc_state)
618 {
619 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
620 	unsigned long irqflags;
621 
622 	if (!crtc_state->uapi.event)
623 		return;
624 
625 	drm_WARN_ON(crtc->base.dev, drm_crtc_vblank_get(&crtc->base) != 0);
626 
627 	spin_lock_irqsave(&crtc->base.dev->event_lock, irqflags);
628 	drm_crtc_arm_vblank_event(&crtc->base, crtc_state->uapi.event);
629 	spin_unlock_irqrestore(&crtc->base.dev->event_lock, irqflags);
630 
631 	crtc_state->uapi.event = NULL;
632 }
633 
634 void intel_crtc_prepare_vblank_event(struct intel_crtc_state *crtc_state,
635 				     struct drm_pending_vblank_event **event)
636 {
637 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
638 	unsigned long irqflags;
639 
640 	spin_lock_irqsave(&crtc->base.dev->event_lock, irqflags);
641 	*event = crtc_state->uapi.event;
642 	spin_unlock_irqrestore(&crtc->base.dev->event_lock, irqflags);
643 
644 	crtc_state->uapi.event = NULL;
645 }
646 
647 /**
648  * intel_pipe_update_end() - end update of a set of display registers
649  * @state: the atomic state
650  * @crtc: the crtc
651  *
652  * Mark the end of an update started with intel_pipe_update_start(). This
653  * re-enables interrupts and verifies the update was actually completed
654  * before a vblank.
655  */
656 void intel_pipe_update_end(struct intel_atomic_state *state,
657 			   struct intel_crtc *crtc)
658 {
659 	struct intel_display *display = to_intel_display(state);
660 	struct intel_crtc_state *new_crtc_state =
661 		intel_atomic_get_new_crtc_state(state, crtc);
662 	enum pipe pipe = crtc->pipe;
663 	int scanline_end = intel_get_crtc_scanline(crtc);
664 	u32 end_vbl_count = intel_crtc_get_vblank_counter(crtc);
665 	ktime_t end_vbl_time = ktime_get();
666 	struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
667 
668 	drm_WARN_ON(display->drm, new_crtc_state->use_dsb);
669 
670 	if (new_crtc_state->do_async_flip)
671 		goto out;
672 
673 	trace_intel_pipe_update_end(crtc, end_vbl_count, scanline_end);
674 
675 	/*
676 	 * Incase of mipi dsi command mode, we need to set frame update
677 	 * request for every commit.
678 	 */
679 	if (DISPLAY_VER(display) >= 11 &&
680 	    intel_crtc_has_type(new_crtc_state, INTEL_OUTPUT_DSI))
681 		icl_dsi_frame_update(new_crtc_state);
682 
683 	/* We're still in the vblank-evade critical section, this can't race.
684 	 * Would be slightly nice to just grab the vblank count and arm the
685 	 * event outside of the critical section - the spinlock might spin for a
686 	 * while ... */
687 	if (intel_crtc_needs_vblank_work(new_crtc_state)) {
688 		drm_vblank_work_schedule(&new_crtc_state->vblank_work,
689 					 drm_crtc_accurate_vblank_count(&crtc->base) + 1,
690 					 false);
691 	} else {
692 		intel_crtc_arm_vblank_event(new_crtc_state);
693 	}
694 
695 	if (state->base.legacy_cursor_update) {
696 		struct intel_plane *plane;
697 		struct intel_plane_state *old_plane_state;
698 		int i;
699 
700 		for_each_old_intel_plane_in_state(state, plane, old_plane_state, i) {
701 			if (old_plane_state->uapi.crtc == &crtc->base &&
702 			    old_plane_state->unpin_work.vblank) {
703 				drm_vblank_work_schedule(&old_plane_state->unpin_work,
704 							 drm_crtc_accurate_vblank_count(&crtc->base) + 1,
705 							 false);
706 
707 				/* Remove plane from atomic state, cleanup/free is done from vblank worker. */
708 				memset(&state->base.planes[i], 0, sizeof(state->base.planes[i]));
709 			}
710 		}
711 	}
712 
713 	/*
714 	 * Send VRR Push to terminate Vblank. If we are already in vblank
715 	 * this has to be done _after_ sampling the frame counter, as
716 	 * otherwise the push would immediately terminate the vblank and
717 	 * the sampled frame counter would correspond to the next frame
718 	 * instead of the current frame.
719 	 *
720 	 * There is a tiny race here (iff vblank evasion failed us) where
721 	 * we might sample the frame counter just before vmax vblank start
722 	 * but the push would be sent just after it. That would cause the
723 	 * push to affect the next frame instead of the current frame,
724 	 * which would cause the next frame to terminate already at vmin
725 	 * vblank start instead of vmax vblank start.
726 	 */
727 	if (!state->base.legacy_cursor_update)
728 		intel_vrr_send_push(NULL, new_crtc_state);
729 
730 	local_irq_enable();
731 
732 	if (intel_vgpu_active(dev_priv))
733 		goto out;
734 
735 	if (crtc->debug.start_vbl_count &&
736 	    crtc->debug.start_vbl_count != end_vbl_count) {
737 		drm_err(display->drm,
738 			"Atomic update failure on pipe %c (start=%u end=%u) time %lld us, min %d, max %d, scanline start %d, end %d\n",
739 			pipe_name(pipe), crtc->debug.start_vbl_count,
740 			end_vbl_count,
741 			ktime_us_delta(end_vbl_time,
742 				       crtc->debug.start_vbl_time),
743 			crtc->debug.min_vbl, crtc->debug.max_vbl,
744 			crtc->debug.scanline_start, scanline_end);
745 	}
746 
747 	dbg_vblank_evade(crtc, end_vbl_time);
748 
749 out:
750 	intel_psr_unlock(new_crtc_state);
751 }
752