1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2015-2018, 2020-2021 The Linux Foundation. All rights reserved.
3  */
4 
5 #define pr_fmt(fmt)	"[drm:%s:%d] " fmt, __func__, __LINE__
6 #include "dpu_encoder_phys.h"
7 #include "dpu_hw_interrupts.h"
8 #include "dpu_hw_merge3d.h"
9 #include "dpu_core_irq.h"
10 #include "dpu_formats.h"
11 #include "dpu_trace.h"
12 #include "disp/msm_disp_snapshot.h"
13 
14 #define DPU_DEBUG_VIDENC(e, fmt, ...) DPU_DEBUG("enc%d intf%d " fmt, \
15 		(e) && (e)->parent ? \
16 		(e)->parent->base.id : -1, \
17 		(e) && (e)->hw_intf ? \
18 		(e)->hw_intf->idx - INTF_0 : -1, ##__VA_ARGS__)
19 
20 #define DPU_ERROR_VIDENC(e, fmt, ...) DPU_ERROR("enc%d intf%d " fmt, \
21 		(e) && (e)->parent ? \
22 		(e)->parent->base.id : -1, \
23 		(e) && (e)->hw_intf ? \
24 		(e)->hw_intf->idx - INTF_0 : -1, ##__VA_ARGS__)
25 
26 #define to_dpu_encoder_phys_vid(x) \
27 	container_of(x, struct dpu_encoder_phys_vid, base)
28 
29 static bool dpu_encoder_phys_vid_is_master(
30 		struct dpu_encoder_phys *phys_enc)
31 {
32 	bool ret = false;
33 
34 	if (phys_enc->split_role != ENC_ROLE_SLAVE)
35 		ret = true;
36 
37 	return ret;
38 }
39 
40 static void drm_mode_to_intf_timing_params(
41 		const struct dpu_encoder_phys *phys_enc,
42 		const struct drm_display_mode *mode,
43 		struct intf_timing_params *timing)
44 {
45 	memset(timing, 0, sizeof(*timing));
46 
47 	if ((mode->htotal < mode->hsync_end)
48 			|| (mode->hsync_start < mode->hdisplay)
49 			|| (mode->vtotal < mode->vsync_end)
50 			|| (mode->vsync_start < mode->vdisplay)
51 			|| (mode->hsync_end < mode->hsync_start)
52 			|| (mode->vsync_end < mode->vsync_start)) {
53 		DPU_ERROR(
54 		    "invalid params - hstart:%d,hend:%d,htot:%d,hdisplay:%d\n",
55 				mode->hsync_start, mode->hsync_end,
56 				mode->htotal, mode->hdisplay);
57 		DPU_ERROR("vstart:%d,vend:%d,vtot:%d,vdisplay:%d\n",
58 				mode->vsync_start, mode->vsync_end,
59 				mode->vtotal, mode->vdisplay);
60 		return;
61 	}
62 
63 	/*
64 	 * https://www.kernel.org/doc/htmldocs/drm/ch02s05.html
65 	 *  Active Region      Front Porch   Sync   Back Porch
66 	 * <-----------------><------------><-----><----------->
67 	 * <- [hv]display --->
68 	 * <--------- [hv]sync_start ------>
69 	 * <----------------- [hv]sync_end ------->
70 	 * <---------------------------- [hv]total ------------->
71 	 */
72 	timing->width = mode->hdisplay;	/* active width */
73 	timing->height = mode->vdisplay;	/* active height */
74 	timing->xres = timing->width;
75 	timing->yres = timing->height;
76 	timing->h_back_porch = mode->htotal - mode->hsync_end;
77 	timing->h_front_porch = mode->hsync_start - mode->hdisplay;
78 	timing->v_back_porch = mode->vtotal - mode->vsync_end;
79 	timing->v_front_porch = mode->vsync_start - mode->vdisplay;
80 	timing->hsync_pulse_width = mode->hsync_end - mode->hsync_start;
81 	timing->vsync_pulse_width = mode->vsync_end - mode->vsync_start;
82 	timing->hsync_polarity = (mode->flags & DRM_MODE_FLAG_NHSYNC) ? 1 : 0;
83 	timing->vsync_polarity = (mode->flags & DRM_MODE_FLAG_NVSYNC) ? 1 : 0;
84 	timing->border_clr = 0;
85 	timing->underflow_clr = 0xff;
86 	timing->hsync_skew = mode->hskew;
87 
88 	/* DSI controller cannot handle active-low sync signals. */
89 	if (phys_enc->hw_intf->cap->type == INTF_DSI) {
90 		timing->hsync_polarity = 0;
91 		timing->vsync_polarity = 0;
92 	}
93 
94 	/* for DP/EDP, Shift timings to align it to bottom right */
95 	if (phys_enc->hw_intf->cap->type == INTF_DP) {
96 		timing->h_back_porch += timing->h_front_porch;
97 		timing->h_front_porch = 0;
98 		timing->v_back_porch += timing->v_front_porch;
99 		timing->v_front_porch = 0;
100 	}
101 
102 	timing->wide_bus_en = dpu_encoder_is_widebus_enabled(phys_enc->parent);
103 
104 	/*
105 	 * for DP, divide the horizonal parameters by 2 when
106 	 * widebus is enabled
107 	 */
108 	if (phys_enc->hw_intf->cap->type == INTF_DP && timing->wide_bus_en) {
109 		timing->width = timing->width >> 1;
110 		timing->xres = timing->xres >> 1;
111 		timing->h_back_porch = timing->h_back_porch >> 1;
112 		timing->h_front_porch = timing->h_front_porch >> 1;
113 		timing->hsync_pulse_width = timing->hsync_pulse_width >> 1;
114 	}
115 }
116 
117 static u32 get_horizontal_total(const struct intf_timing_params *timing)
118 {
119 	u32 active = timing->xres;
120 	u32 inactive =
121 	    timing->h_back_porch + timing->h_front_porch +
122 	    timing->hsync_pulse_width;
123 	return active + inactive;
124 }
125 
126 static u32 get_vertical_total(const struct intf_timing_params *timing)
127 {
128 	u32 active = timing->yres;
129 	u32 inactive =
130 	    timing->v_back_porch + timing->v_front_porch +
131 	    timing->vsync_pulse_width;
132 	return active + inactive;
133 }
134 
135 /*
136  * programmable_fetch_get_num_lines:
137  *	Number of fetch lines in vertical front porch
138  * @timing: Pointer to the intf timing information for the requested mode
139  *
140  * Returns the number of fetch lines in vertical front porch at which mdp
141  * can start fetching the next frame.
142  *
143  * Number of needed prefetch lines is anything that cannot be absorbed in the
144  * start of frame time (back porch + vsync pulse width).
145  *
146  * Some panels have very large VFP, however we only need a total number of
147  * lines based on the chip worst case latencies.
148  */
149 static u32 programmable_fetch_get_num_lines(
150 		struct dpu_encoder_phys *phys_enc,
151 		const struct intf_timing_params *timing)
152 {
153 	u32 worst_case_needed_lines =
154 	    phys_enc->hw_intf->cap->prog_fetch_lines_worst_case;
155 	u32 start_of_frame_lines =
156 	    timing->v_back_porch + timing->vsync_pulse_width;
157 	u32 needed_vfp_lines = worst_case_needed_lines - start_of_frame_lines;
158 	u32 actual_vfp_lines = 0;
159 
160 	/* Fetch must be outside active lines, otherwise undefined. */
161 	if (start_of_frame_lines >= worst_case_needed_lines) {
162 		DPU_DEBUG_VIDENC(phys_enc,
163 				"prog fetch is not needed, large vbp+vsw\n");
164 		actual_vfp_lines = 0;
165 	} else if (timing->v_front_porch < needed_vfp_lines) {
166 		/* Warn fetch needed, but not enough porch in panel config */
167 		pr_warn_once
168 			("low vbp+vfp may lead to perf issues in some cases\n");
169 		DPU_DEBUG_VIDENC(phys_enc,
170 				"less vfp than fetch req, using entire vfp\n");
171 		actual_vfp_lines = timing->v_front_porch;
172 	} else {
173 		DPU_DEBUG_VIDENC(phys_enc, "room in vfp for needed prefetch\n");
174 		actual_vfp_lines = needed_vfp_lines;
175 	}
176 
177 	DPU_DEBUG_VIDENC(phys_enc,
178 		"v_front_porch %u v_back_porch %u vsync_pulse_width %u\n",
179 		timing->v_front_porch, timing->v_back_porch,
180 		timing->vsync_pulse_width);
181 	DPU_DEBUG_VIDENC(phys_enc,
182 		"wc_lines %u needed_vfp_lines %u actual_vfp_lines %u\n",
183 		worst_case_needed_lines, needed_vfp_lines, actual_vfp_lines);
184 
185 	return actual_vfp_lines;
186 }
187 
188 /*
189  * programmable_fetch_config: Programs HW to prefetch lines by offsetting
190  *	the start of fetch into the vertical front porch for cases where the
191  *	vsync pulse width and vertical back porch time is insufficient
192  *
193  *	Gets # of lines to pre-fetch, then calculate VSYNC counter value.
194  *	HW layer requires VSYNC counter of first pixel of tgt VFP line.
195  *
196  * @timing: Pointer to the intf timing information for the requested mode
197  */
198 static void programmable_fetch_config(struct dpu_encoder_phys *phys_enc,
199 				      const struct intf_timing_params *timing)
200 {
201 	struct intf_prog_fetch f = { 0 };
202 	u32 vfp_fetch_lines = 0;
203 	u32 horiz_total = 0;
204 	u32 vert_total = 0;
205 	u32 vfp_fetch_start_vsync_counter = 0;
206 	unsigned long lock_flags;
207 
208 	if (WARN_ON_ONCE(!phys_enc->hw_intf->ops.setup_prg_fetch))
209 		return;
210 
211 	vfp_fetch_lines = programmable_fetch_get_num_lines(phys_enc, timing);
212 	if (vfp_fetch_lines) {
213 		vert_total = get_vertical_total(timing);
214 		horiz_total = get_horizontal_total(timing);
215 		vfp_fetch_start_vsync_counter =
216 		    (vert_total - vfp_fetch_lines) * horiz_total + 1;
217 		f.enable = 1;
218 		f.fetch_start = vfp_fetch_start_vsync_counter;
219 	}
220 
221 	DPU_DEBUG_VIDENC(phys_enc,
222 		"vfp_fetch_lines %u vfp_fetch_start_vsync_counter %u\n",
223 		vfp_fetch_lines, vfp_fetch_start_vsync_counter);
224 
225 	spin_lock_irqsave(phys_enc->enc_spinlock, lock_flags);
226 	phys_enc->hw_intf->ops.setup_prg_fetch(phys_enc->hw_intf, &f);
227 	spin_unlock_irqrestore(phys_enc->enc_spinlock, lock_flags);
228 }
229 
230 static void dpu_encoder_phys_vid_setup_timing_engine(
231 		struct dpu_encoder_phys *phys_enc)
232 {
233 	struct drm_display_mode mode;
234 	struct intf_timing_params timing_params = { 0 };
235 	const struct dpu_format *fmt = NULL;
236 	u32 fmt_fourcc = DRM_FORMAT_RGB888;
237 	unsigned long lock_flags;
238 	struct dpu_hw_intf_cfg intf_cfg = { 0 };
239 
240 	drm_mode_init(&mode, &phys_enc->cached_mode);
241 
242 	if (!phys_enc->hw_ctl->ops.setup_intf_cfg) {
243 		DPU_ERROR("invalid encoder %d\n", phys_enc != NULL);
244 		return;
245 	}
246 
247 	if (!phys_enc->hw_intf->ops.setup_timing_gen) {
248 		DPU_ERROR("timing engine setup is not supported\n");
249 		return;
250 	}
251 
252 	DPU_DEBUG_VIDENC(phys_enc, "enabling mode:\n");
253 	drm_mode_debug_printmodeline(&mode);
254 
255 	if (phys_enc->split_role != ENC_ROLE_SOLO) {
256 		mode.hdisplay >>= 1;
257 		mode.htotal >>= 1;
258 		mode.hsync_start >>= 1;
259 		mode.hsync_end >>= 1;
260 
261 		DPU_DEBUG_VIDENC(phys_enc,
262 			"split_role %d, halve horizontal %d %d %d %d\n",
263 			phys_enc->split_role,
264 			mode.hdisplay, mode.htotal,
265 			mode.hsync_start, mode.hsync_end);
266 	}
267 
268 	drm_mode_to_intf_timing_params(phys_enc, &mode, &timing_params);
269 
270 	fmt = dpu_get_dpu_format(fmt_fourcc);
271 	DPU_DEBUG_VIDENC(phys_enc, "fmt_fourcc 0x%X\n", fmt_fourcc);
272 
273 	intf_cfg.intf = phys_enc->hw_intf->idx;
274 	intf_cfg.intf_mode_sel = DPU_CTL_MODE_SEL_VID;
275 	intf_cfg.stream_sel = 0; /* Don't care value for video mode */
276 	intf_cfg.mode_3d = dpu_encoder_helper_get_3d_blend_mode(phys_enc);
277 	if (phys_enc->hw_pp->merge_3d)
278 		intf_cfg.merge_3d = phys_enc->hw_pp->merge_3d->idx;
279 
280 	spin_lock_irqsave(phys_enc->enc_spinlock, lock_flags);
281 	phys_enc->hw_intf->ops.setup_timing_gen(phys_enc->hw_intf,
282 			&timing_params, fmt);
283 	phys_enc->hw_ctl->ops.setup_intf_cfg(phys_enc->hw_ctl, &intf_cfg);
284 
285 	/* setup which pp blk will connect to this intf */
286 	if (phys_enc->hw_intf->ops.bind_pingpong_blk)
287 		phys_enc->hw_intf->ops.bind_pingpong_blk(
288 				phys_enc->hw_intf,
289 				true,
290 				phys_enc->hw_pp->idx);
291 
292 	if (phys_enc->hw_pp->merge_3d)
293 		phys_enc->hw_pp->merge_3d->ops.setup_3d_mode(phys_enc->hw_pp->merge_3d, intf_cfg.mode_3d);
294 
295 	spin_unlock_irqrestore(phys_enc->enc_spinlock, lock_flags);
296 
297 	programmable_fetch_config(phys_enc, &timing_params);
298 }
299 
300 static void dpu_encoder_phys_vid_vblank_irq(void *arg, int irq_idx)
301 {
302 	struct dpu_encoder_phys *phys_enc = arg;
303 	struct dpu_hw_ctl *hw_ctl;
304 	unsigned long lock_flags;
305 	u32 flush_register = 0;
306 
307 	hw_ctl = phys_enc->hw_ctl;
308 
309 	DPU_ATRACE_BEGIN("vblank_irq");
310 
311 	if (phys_enc->parent_ops->handle_vblank_virt)
312 		phys_enc->parent_ops->handle_vblank_virt(phys_enc->parent,
313 				phys_enc);
314 
315 	atomic_read(&phys_enc->pending_kickoff_cnt);
316 
317 	/*
318 	 * only decrement the pending flush count if we've actually flushed
319 	 * hardware. due to sw irq latency, vblank may have already happened
320 	 * so we need to double-check with hw that it accepted the flush bits
321 	 */
322 	spin_lock_irqsave(phys_enc->enc_spinlock, lock_flags);
323 	if (hw_ctl->ops.get_flush_register)
324 		flush_register = hw_ctl->ops.get_flush_register(hw_ctl);
325 
326 	if (!(flush_register & hw_ctl->ops.get_pending_flush(hw_ctl)))
327 		atomic_add_unless(&phys_enc->pending_kickoff_cnt, -1, 0);
328 	spin_unlock_irqrestore(phys_enc->enc_spinlock, lock_flags);
329 
330 	/* Signal any waiting atomic commit thread */
331 	wake_up_all(&phys_enc->pending_kickoff_wq);
332 
333 	phys_enc->parent_ops->handle_frame_done(phys_enc->parent, phys_enc,
334 			DPU_ENCODER_FRAME_EVENT_DONE);
335 
336 	DPU_ATRACE_END("vblank_irq");
337 }
338 
339 static void dpu_encoder_phys_vid_underrun_irq(void *arg, int irq_idx)
340 {
341 	struct dpu_encoder_phys *phys_enc = arg;
342 
343 	if (phys_enc->parent_ops->handle_underrun_virt)
344 		phys_enc->parent_ops->handle_underrun_virt(phys_enc->parent,
345 			phys_enc);
346 }
347 
348 static bool dpu_encoder_phys_vid_needs_single_flush(
349 		struct dpu_encoder_phys *phys_enc)
350 {
351 	return phys_enc->split_role != ENC_ROLE_SOLO;
352 }
353 
354 static void dpu_encoder_phys_vid_atomic_mode_set(
355 		struct dpu_encoder_phys *phys_enc,
356 		struct drm_crtc_state *crtc_state,
357 		struct drm_connector_state *conn_state)
358 {
359 	phys_enc->irq[INTR_IDX_VSYNC] = phys_enc->hw_intf->cap->intr_vsync;
360 
361 	phys_enc->irq[INTR_IDX_UNDERRUN] = phys_enc->hw_intf->cap->intr_underrun;
362 }
363 
364 static int dpu_encoder_phys_vid_control_vblank_irq(
365 		struct dpu_encoder_phys *phys_enc,
366 		bool enable)
367 {
368 	int ret = 0;
369 	int refcount;
370 
371 	refcount = atomic_read(&phys_enc->vblank_refcount);
372 
373 	/* Slave encoders don't report vblank */
374 	if (!dpu_encoder_phys_vid_is_master(phys_enc))
375 		goto end;
376 
377 	/* protect against negative */
378 	if (!enable && refcount == 0) {
379 		ret = -EINVAL;
380 		goto end;
381 	}
382 
383 	DRM_DEBUG_VBL("id:%u enable=%d/%d\n", DRMID(phys_enc->parent), enable,
384 		      atomic_read(&phys_enc->vblank_refcount));
385 
386 	if (enable && atomic_inc_return(&phys_enc->vblank_refcount) == 1)
387 		ret = dpu_core_irq_register_callback(phys_enc->dpu_kms,
388 				phys_enc->irq[INTR_IDX_VSYNC],
389 				dpu_encoder_phys_vid_vblank_irq,
390 				phys_enc);
391 	else if (!enable && atomic_dec_return(&phys_enc->vblank_refcount) == 0)
392 		ret = dpu_core_irq_unregister_callback(phys_enc->dpu_kms,
393 				phys_enc->irq[INTR_IDX_VSYNC]);
394 
395 end:
396 	if (ret) {
397 		DRM_ERROR("failed: id:%u intf:%d ret:%d enable:%d refcnt:%d\n",
398 			  DRMID(phys_enc->parent),
399 			  phys_enc->hw_intf->idx - INTF_0, ret, enable,
400 			  refcount);
401 	}
402 	return ret;
403 }
404 
405 static void dpu_encoder_phys_vid_enable(struct dpu_encoder_phys *phys_enc)
406 {
407 	struct dpu_hw_ctl *ctl;
408 
409 	ctl = phys_enc->hw_ctl;
410 
411 	DPU_DEBUG_VIDENC(phys_enc, "\n");
412 
413 	if (WARN_ON(!phys_enc->hw_intf->ops.enable_timing))
414 		return;
415 
416 	dpu_encoder_helper_split_config(phys_enc, phys_enc->hw_intf->idx);
417 
418 	dpu_encoder_phys_vid_setup_timing_engine(phys_enc);
419 
420 	/*
421 	 * For single flush cases (dual-ctl or pp-split), skip setting the
422 	 * flush bit for the slave intf, since both intfs use same ctl
423 	 * and HW will only flush the master.
424 	 */
425 	if (dpu_encoder_phys_vid_needs_single_flush(phys_enc) &&
426 		!dpu_encoder_phys_vid_is_master(phys_enc))
427 		goto skip_flush;
428 
429 	ctl->ops.update_pending_flush_intf(ctl, phys_enc->hw_intf->idx);
430 	if (ctl->ops.update_pending_flush_merge_3d && phys_enc->hw_pp->merge_3d)
431 		ctl->ops.update_pending_flush_merge_3d(ctl, phys_enc->hw_pp->merge_3d->idx);
432 
433 skip_flush:
434 	DPU_DEBUG_VIDENC(phys_enc,
435 		"update pending flush ctl %d intf %d\n",
436 		ctl->idx - CTL_0, phys_enc->hw_intf->idx);
437 
438 	atomic_set(&phys_enc->underrun_cnt, 0);
439 
440 	/* ctl_flush & timing engine enable will be triggered by framework */
441 	if (phys_enc->enable_state == DPU_ENC_DISABLED)
442 		phys_enc->enable_state = DPU_ENC_ENABLING;
443 }
444 
445 static void dpu_encoder_phys_vid_destroy(struct dpu_encoder_phys *phys_enc)
446 {
447 	DPU_DEBUG_VIDENC(phys_enc, "\n");
448 	kfree(phys_enc);
449 }
450 
451 static int dpu_encoder_phys_vid_wait_for_vblank(
452 		struct dpu_encoder_phys *phys_enc)
453 {
454 	struct dpu_encoder_wait_info wait_info;
455 	int ret;
456 
457 	wait_info.wq = &phys_enc->pending_kickoff_wq;
458 	wait_info.atomic_cnt = &phys_enc->pending_kickoff_cnt;
459 	wait_info.timeout_ms = KICKOFF_TIMEOUT_MS;
460 
461 	if (!dpu_encoder_phys_vid_is_master(phys_enc)) {
462 		return 0;
463 	}
464 
465 	/* Wait for kickoff to complete */
466 	ret = dpu_encoder_helper_wait_for_irq(phys_enc,
467 			phys_enc->irq[INTR_IDX_VSYNC],
468 			dpu_encoder_phys_vid_vblank_irq,
469 			&wait_info);
470 
471 	if (ret == -ETIMEDOUT) {
472 		dpu_encoder_helper_report_irq_timeout(phys_enc, INTR_IDX_VSYNC);
473 	}
474 
475 	return ret;
476 }
477 
478 static int dpu_encoder_phys_vid_wait_for_commit_done(
479 		struct dpu_encoder_phys *phys_enc)
480 {
481 	struct dpu_hw_ctl *hw_ctl = phys_enc->hw_ctl;
482 	int ret;
483 
484 	if (!hw_ctl)
485 		return 0;
486 
487 	ret = wait_event_timeout(phys_enc->pending_kickoff_wq,
488 		(hw_ctl->ops.get_flush_register(hw_ctl) == 0),
489 		msecs_to_jiffies(50));
490 	if (ret <= 0) {
491 		DPU_ERROR("vblank timeout\n");
492 		return -ETIMEDOUT;
493 	}
494 
495 	return 0;
496 }
497 
498 static void dpu_encoder_phys_vid_prepare_for_kickoff(
499 		struct dpu_encoder_phys *phys_enc)
500 {
501 	struct dpu_hw_ctl *ctl;
502 	int rc;
503 	struct drm_encoder *drm_enc;
504 
505 	drm_enc = phys_enc->parent;
506 
507 	ctl = phys_enc->hw_ctl;
508 	if (!ctl->ops.wait_reset_status)
509 		return;
510 
511 	/*
512 	 * hw supports hardware initiated ctl reset, so before we kickoff a new
513 	 * frame, need to check and wait for hw initiated ctl reset completion
514 	 */
515 	rc = ctl->ops.wait_reset_status(ctl);
516 	if (rc) {
517 		DPU_ERROR_VIDENC(phys_enc, "ctl %d reset failure: %d\n",
518 				ctl->idx, rc);
519 		msm_disp_snapshot_state(drm_enc->dev);
520 		dpu_core_irq_unregister_callback(phys_enc->dpu_kms,
521 				phys_enc->irq[INTR_IDX_VSYNC]);
522 	}
523 }
524 
525 static void dpu_encoder_phys_vid_disable(struct dpu_encoder_phys *phys_enc)
526 {
527 	unsigned long lock_flags;
528 	int ret;
529 
530 	if (!phys_enc->parent || !phys_enc->parent->dev) {
531 		DPU_ERROR("invalid encoder/device\n");
532 		return;
533 	}
534 
535 	if (!phys_enc->hw_intf) {
536 		DPU_ERROR("invalid hw_intf %d hw_ctl %d\n",
537 				phys_enc->hw_intf != NULL, phys_enc->hw_ctl != NULL);
538 		return;
539 	}
540 
541 	if (WARN_ON(!phys_enc->hw_intf->ops.enable_timing))
542 		return;
543 
544 	if (phys_enc->enable_state == DPU_ENC_DISABLED) {
545 		DPU_ERROR("already disabled\n");
546 		return;
547 	}
548 
549 	spin_lock_irqsave(phys_enc->enc_spinlock, lock_flags);
550 	phys_enc->hw_intf->ops.enable_timing(phys_enc->hw_intf, 0);
551 	if (dpu_encoder_phys_vid_is_master(phys_enc))
552 		dpu_encoder_phys_inc_pending(phys_enc);
553 	spin_unlock_irqrestore(phys_enc->enc_spinlock, lock_flags);
554 
555 	/*
556 	 * Wait for a vsync so we know the ENABLE=0 latched before
557 	 * the (connector) source of the vsync's gets disabled,
558 	 * otherwise we end up in a funny state if we re-enable
559 	 * before the disable latches, which results that some of
560 	 * the settings changes for the new modeset (like new
561 	 * scanout buffer) don't latch properly..
562 	 */
563 	if (dpu_encoder_phys_vid_is_master(phys_enc)) {
564 		ret = dpu_encoder_phys_vid_wait_for_vblank(phys_enc);
565 		if (ret) {
566 			atomic_set(&phys_enc->pending_kickoff_cnt, 0);
567 			DRM_ERROR("wait disable failed: id:%u intf:%d ret:%d\n",
568 				  DRMID(phys_enc->parent),
569 				  phys_enc->hw_intf->idx - INTF_0, ret);
570 		}
571 	}
572 
573 	phys_enc->enable_state = DPU_ENC_DISABLED;
574 }
575 
576 static void dpu_encoder_phys_vid_handle_post_kickoff(
577 		struct dpu_encoder_phys *phys_enc)
578 {
579 	unsigned long lock_flags;
580 
581 	/*
582 	 * Video mode must flush CTL before enabling timing engine
583 	 * Video encoders need to turn on their interfaces now
584 	 */
585 	if (phys_enc->enable_state == DPU_ENC_ENABLING) {
586 		trace_dpu_enc_phys_vid_post_kickoff(DRMID(phys_enc->parent),
587 				    phys_enc->hw_intf->idx - INTF_0);
588 		spin_lock_irqsave(phys_enc->enc_spinlock, lock_flags);
589 		phys_enc->hw_intf->ops.enable_timing(phys_enc->hw_intf, 1);
590 		spin_unlock_irqrestore(phys_enc->enc_spinlock, lock_flags);
591 		phys_enc->enable_state = DPU_ENC_ENABLED;
592 	}
593 }
594 
595 static void dpu_encoder_phys_vid_irq_control(struct dpu_encoder_phys *phys_enc,
596 		bool enable)
597 {
598 	int ret;
599 
600 	trace_dpu_enc_phys_vid_irq_ctrl(DRMID(phys_enc->parent),
601 			    phys_enc->hw_intf->idx - INTF_0,
602 			    enable,
603 			    atomic_read(&phys_enc->vblank_refcount));
604 
605 	if (enable) {
606 		ret = dpu_encoder_phys_vid_control_vblank_irq(phys_enc, true);
607 		if (WARN_ON(ret))
608 			return;
609 
610 		dpu_core_irq_register_callback(phys_enc->dpu_kms,
611 				phys_enc->irq[INTR_IDX_UNDERRUN],
612 				dpu_encoder_phys_vid_underrun_irq,
613 				phys_enc);
614 	} else {
615 		dpu_encoder_phys_vid_control_vblank_irq(phys_enc, false);
616 		dpu_core_irq_unregister_callback(phys_enc->dpu_kms,
617 				phys_enc->irq[INTR_IDX_UNDERRUN]);
618 	}
619 }
620 
621 static int dpu_encoder_phys_vid_get_line_count(
622 		struct dpu_encoder_phys *phys_enc)
623 {
624 	if (!dpu_encoder_phys_vid_is_master(phys_enc))
625 		return -EINVAL;
626 
627 	if (!phys_enc->hw_intf || !phys_enc->hw_intf->ops.get_line_count)
628 		return -EINVAL;
629 
630 	return phys_enc->hw_intf->ops.get_line_count(phys_enc->hw_intf);
631 }
632 
633 static int dpu_encoder_phys_vid_get_frame_count(
634 		struct dpu_encoder_phys *phys_enc)
635 {
636 	struct intf_status s = {0};
637 	u32 fetch_start = 0;
638 	struct drm_display_mode mode;
639 
640 	drm_mode_init(&mode, &phys_enc->cached_mode);
641 
642 	if (!dpu_encoder_phys_vid_is_master(phys_enc))
643 		return -EINVAL;
644 
645 	if (!phys_enc->hw_intf || !phys_enc->hw_intf->ops.get_status)
646 		return -EINVAL;
647 
648 	phys_enc->hw_intf->ops.get_status(phys_enc->hw_intf, &s);
649 
650 	if (s.is_prog_fetch_en && s.is_en) {
651 		fetch_start = mode.vtotal - (mode.vsync_start - mode.vdisplay);
652 		if ((s.line_count > fetch_start) &&
653 			(s.line_count <= mode.vtotal))
654 			return s.frame_count + 1;
655 	}
656 
657 	return s.frame_count;
658 }
659 
660 static void dpu_encoder_phys_vid_init_ops(struct dpu_encoder_phys_ops *ops)
661 {
662 	ops->is_master = dpu_encoder_phys_vid_is_master;
663 	ops->atomic_mode_set = dpu_encoder_phys_vid_atomic_mode_set;
664 	ops->enable = dpu_encoder_phys_vid_enable;
665 	ops->disable = dpu_encoder_phys_vid_disable;
666 	ops->destroy = dpu_encoder_phys_vid_destroy;
667 	ops->control_vblank_irq = dpu_encoder_phys_vid_control_vblank_irq;
668 	ops->wait_for_commit_done = dpu_encoder_phys_vid_wait_for_commit_done;
669 	ops->wait_for_vblank = dpu_encoder_phys_vid_wait_for_vblank;
670 	ops->wait_for_tx_complete = dpu_encoder_phys_vid_wait_for_vblank;
671 	ops->irq_control = dpu_encoder_phys_vid_irq_control;
672 	ops->prepare_for_kickoff = dpu_encoder_phys_vid_prepare_for_kickoff;
673 	ops->handle_post_kickoff = dpu_encoder_phys_vid_handle_post_kickoff;
674 	ops->needs_single_flush = dpu_encoder_phys_vid_needs_single_flush;
675 	ops->get_line_count = dpu_encoder_phys_vid_get_line_count;
676 	ops->get_frame_count = dpu_encoder_phys_vid_get_frame_count;
677 }
678 
679 struct dpu_encoder_phys *dpu_encoder_phys_vid_init(
680 		struct dpu_enc_phys_init_params *p)
681 {
682 	struct dpu_encoder_phys *phys_enc = NULL;
683 	int i;
684 
685 	if (!p) {
686 		DPU_ERROR("failed to create encoder due to invalid parameter\n");
687 		return ERR_PTR(-EINVAL);
688 	}
689 
690 	phys_enc = kzalloc(sizeof(*phys_enc), GFP_KERNEL);
691 	if (!phys_enc) {
692 		DPU_ERROR("failed to create encoder due to memory allocation error\n");
693 		return ERR_PTR(-ENOMEM);
694 	}
695 
696 	phys_enc->hw_mdptop = p->dpu_kms->hw_mdp;
697 	phys_enc->intf_idx = p->intf_idx;
698 
699 	DPU_DEBUG_VIDENC(phys_enc, "\n");
700 
701 	dpu_encoder_phys_vid_init_ops(&phys_enc->ops);
702 	phys_enc->parent = p->parent;
703 	phys_enc->parent_ops = p->parent_ops;
704 	phys_enc->dpu_kms = p->dpu_kms;
705 	phys_enc->split_role = p->split_role;
706 	phys_enc->intf_mode = INTF_MODE_VIDEO;
707 	phys_enc->enc_spinlock = p->enc_spinlock;
708 	for (i = 0; i < ARRAY_SIZE(phys_enc->irq); i++)
709 		phys_enc->irq[i] = -EINVAL;
710 
711 	atomic_set(&phys_enc->vblank_refcount, 0);
712 	atomic_set(&phys_enc->pending_kickoff_cnt, 0);
713 	init_waitqueue_head(&phys_enc->pending_kickoff_wq);
714 	phys_enc->enable_state = DPU_ENC_DISABLED;
715 
716 	DPU_DEBUG_VIDENC(phys_enc, "created intf idx:%d\n", p->intf_idx);
717 
718 	return phys_enc;
719 }
720