1
2
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
13#define DPU_DEBUG_VIDENC(e, fmt, ...) DPU_DEBUG("enc%d intf%d " fmt, \
14 (e) && (e)->parent ? \
15 (e)->parent->base.id : -1, \
16 (e) && (e)->hw_intf ? \
17 (e)->hw_intf->idx - INTF_0 : -1, ##__VA_ARGS__)
18
19#define DPU_ERROR_VIDENC(e, fmt, ...) DPU_ERROR("enc%d intf%d " fmt, \
20 (e) && (e)->parent ? \
21 (e)->parent->base.id : -1, \
22 (e) && (e)->hw_intf ? \
23 (e)->hw_intf->idx - INTF_0 : -1, ##__VA_ARGS__)
24
25#define to_dpu_encoder_phys_vid(x) \
26 container_of(x, struct dpu_encoder_phys_vid, base)
27
28static bool dpu_encoder_phys_vid_is_master(
29 struct dpu_encoder_phys *phys_enc)
30{
31 bool ret = false;
32
33 if (phys_enc->split_role != ENC_ROLE_SLAVE)
34 ret = true;
35
36 return ret;
37}
38
39static void drm_mode_to_intf_timing_params(
40 const struct dpu_encoder_phys *phys_enc,
41 const struct drm_display_mode *mode,
42 struct intf_timing_params *timing)
43{
44 memset(timing, 0, sizeof(*timing));
45
46 if ((mode->htotal < mode->hsync_end)
47 || (mode->hsync_start < mode->hdisplay)
48 || (mode->vtotal < mode->vsync_end)
49 || (mode->vsync_start < mode->vdisplay)
50 || (mode->hsync_end < mode->hsync_start)
51 || (mode->vsync_end < mode->vsync_start)) {
52 DPU_ERROR(
53 "invalid params - hstart:%d,hend:%d,htot:%d,hdisplay:%d\n",
54 mode->hsync_start, mode->hsync_end,
55 mode->htotal, mode->hdisplay);
56 DPU_ERROR("vstart:%d,vend:%d,vtot:%d,vdisplay:%d\n",
57 mode->vsync_start, mode->vsync_end,
58 mode->vtotal, mode->vdisplay);
59 return;
60 }
61
62
63
64
65
66
67
68
69
70
71 timing->width = mode->hdisplay;
72 timing->height = mode->vdisplay;
73 timing->xres = timing->width;
74 timing->yres = timing->height;
75 timing->h_back_porch = mode->htotal - mode->hsync_end;
76 timing->h_front_porch = mode->hsync_start - mode->hdisplay;
77 timing->v_back_porch = mode->vtotal - mode->vsync_end;
78 timing->v_front_porch = mode->vsync_start - mode->vdisplay;
79 timing->hsync_pulse_width = mode->hsync_end - mode->hsync_start;
80 timing->vsync_pulse_width = mode->vsync_end - mode->vsync_start;
81 timing->hsync_polarity = (mode->flags & DRM_MODE_FLAG_NHSYNC) ? 1 : 0;
82 timing->vsync_polarity = (mode->flags & DRM_MODE_FLAG_NVSYNC) ? 1 : 0;
83 timing->border_clr = 0;
84 timing->underflow_clr = 0xff;
85 timing->hsync_skew = mode->hskew;
86
87
88 if (phys_enc->hw_intf->cap->type == INTF_DSI) {
89 timing->hsync_polarity = 0;
90 timing->vsync_polarity = 0;
91 }
92
93
94
95
96
97
98
99
100
101
102
103
104
105 if ((phys_enc->hw_intf->cap->type == INTF_DP) ||
106 (phys_enc->hw_intf->cap->type == INTF_EDP)) {
107 timing->h_back_porch += timing->h_front_porch;
108 timing->h_front_porch = 0;
109 timing->v_back_porch += timing->v_front_porch;
110 timing->v_front_porch = 0;
111 }
112}
113
114static u32 get_horizontal_total(const struct intf_timing_params *timing)
115{
116 u32 active = timing->xres;
117 u32 inactive =
118 timing->h_back_porch + timing->h_front_porch +
119 timing->hsync_pulse_width;
120 return active + inactive;
121}
122
123static u32 get_vertical_total(const struct intf_timing_params *timing)
124{
125 u32 active = timing->yres;
126 u32 inactive =
127 timing->v_back_porch + timing->v_front_porch +
128 timing->vsync_pulse_width;
129 return active + inactive;
130}
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146static u32 programmable_fetch_get_num_lines(
147 struct dpu_encoder_phys *phys_enc,
148 const struct intf_timing_params *timing)
149{
150 u32 worst_case_needed_lines =
151 phys_enc->hw_intf->cap->prog_fetch_lines_worst_case;
152 u32 start_of_frame_lines =
153 timing->v_back_porch + timing->vsync_pulse_width;
154 u32 needed_vfp_lines = worst_case_needed_lines - start_of_frame_lines;
155 u32 actual_vfp_lines = 0;
156
157
158 if (start_of_frame_lines >= worst_case_needed_lines) {
159 DPU_DEBUG_VIDENC(phys_enc,
160 "prog fetch is not needed, large vbp+vsw\n");
161 actual_vfp_lines = 0;
162 } else if (timing->v_front_porch < needed_vfp_lines) {
163
164 pr_warn_once
165 ("low vbp+vfp may lead to perf issues in some cases\n");
166 DPU_DEBUG_VIDENC(phys_enc,
167 "less vfp than fetch req, using entire vfp\n");
168 actual_vfp_lines = timing->v_front_porch;
169 } else {
170 DPU_DEBUG_VIDENC(phys_enc, "room in vfp for needed prefetch\n");
171 actual_vfp_lines = needed_vfp_lines;
172 }
173
174 DPU_DEBUG_VIDENC(phys_enc,
175 "v_front_porch %u v_back_porch %u vsync_pulse_width %u\n",
176 timing->v_front_porch, timing->v_back_porch,
177 timing->vsync_pulse_width);
178 DPU_DEBUG_VIDENC(phys_enc,
179 "wc_lines %u needed_vfp_lines %u actual_vfp_lines %u\n",
180 worst_case_needed_lines, needed_vfp_lines, actual_vfp_lines);
181
182 return actual_vfp_lines;
183}
184
185
186
187
188
189
190
191
192
193
194
195static void programmable_fetch_config(struct dpu_encoder_phys *phys_enc,
196 const struct intf_timing_params *timing)
197{
198 struct intf_prog_fetch f = { 0 };
199 u32 vfp_fetch_lines = 0;
200 u32 horiz_total = 0;
201 u32 vert_total = 0;
202 u32 vfp_fetch_start_vsync_counter = 0;
203 unsigned long lock_flags;
204
205 if (WARN_ON_ONCE(!phys_enc->hw_intf->ops.setup_prg_fetch))
206 return;
207
208 vfp_fetch_lines = programmable_fetch_get_num_lines(phys_enc, timing);
209 if (vfp_fetch_lines) {
210 vert_total = get_vertical_total(timing);
211 horiz_total = get_horizontal_total(timing);
212 vfp_fetch_start_vsync_counter =
213 (vert_total - vfp_fetch_lines) * horiz_total + 1;
214 f.enable = 1;
215 f.fetch_start = vfp_fetch_start_vsync_counter;
216 }
217
218 DPU_DEBUG_VIDENC(phys_enc,
219 "vfp_fetch_lines %u vfp_fetch_start_vsync_counter %u\n",
220 vfp_fetch_lines, vfp_fetch_start_vsync_counter);
221
222 spin_lock_irqsave(phys_enc->enc_spinlock, lock_flags);
223 phys_enc->hw_intf->ops.setup_prg_fetch(phys_enc->hw_intf, &f);
224 spin_unlock_irqrestore(phys_enc->enc_spinlock, lock_flags);
225}
226
227static bool dpu_encoder_phys_vid_mode_fixup(
228 struct dpu_encoder_phys *phys_enc,
229 const struct drm_display_mode *mode,
230 struct drm_display_mode *adj_mode)
231{
232 DPU_DEBUG_VIDENC(phys_enc, "\n");
233
234
235
236
237 return true;
238}
239
240static void dpu_encoder_phys_vid_setup_timing_engine(
241 struct dpu_encoder_phys *phys_enc)
242{
243 struct drm_display_mode mode;
244 struct intf_timing_params timing_params = { 0 };
245 const struct dpu_format *fmt = NULL;
246 u32 fmt_fourcc = DRM_FORMAT_RGB888;
247 unsigned long lock_flags;
248 struct dpu_hw_intf_cfg intf_cfg = { 0 };
249
250 if (!phys_enc->hw_ctl->ops.setup_intf_cfg) {
251 DPU_ERROR("invalid encoder %d\n", phys_enc != NULL);
252 return;
253 }
254
255 mode = phys_enc->cached_mode;
256 if (!phys_enc->hw_intf->ops.setup_timing_gen) {
257 DPU_ERROR("timing engine setup is not supported\n");
258 return;
259 }
260
261 DPU_DEBUG_VIDENC(phys_enc, "enabling mode:\n");
262 drm_mode_debug_printmodeline(&mode);
263
264 if (phys_enc->split_role != ENC_ROLE_SOLO) {
265 mode.hdisplay >>= 1;
266 mode.htotal >>= 1;
267 mode.hsync_start >>= 1;
268 mode.hsync_end >>= 1;
269
270 DPU_DEBUG_VIDENC(phys_enc,
271 "split_role %d, halve horizontal %d %d %d %d\n",
272 phys_enc->split_role,
273 mode.hdisplay, mode.htotal,
274 mode.hsync_start, mode.hsync_end);
275 }
276
277 drm_mode_to_intf_timing_params(phys_enc, &mode, &timing_params);
278
279 fmt = dpu_get_dpu_format(fmt_fourcc);
280 DPU_DEBUG_VIDENC(phys_enc, "fmt_fourcc 0x%X\n", fmt_fourcc);
281
282 intf_cfg.intf = phys_enc->hw_intf->idx;
283 intf_cfg.intf_mode_sel = DPU_CTL_MODE_SEL_VID;
284 intf_cfg.stream_sel = 0;
285 intf_cfg.mode_3d = dpu_encoder_helper_get_3d_blend_mode(phys_enc);
286 if (phys_enc->hw_pp->merge_3d)
287 intf_cfg.merge_3d = phys_enc->hw_pp->merge_3d->id;
288
289 spin_lock_irqsave(phys_enc->enc_spinlock, lock_flags);
290 phys_enc->hw_intf->ops.setup_timing_gen(phys_enc->hw_intf,
291 &timing_params, fmt);
292 phys_enc->hw_ctl->ops.setup_intf_cfg(phys_enc->hw_ctl, &intf_cfg);
293
294
295 if (phys_enc->hw_intf->ops.bind_pingpong_blk)
296 phys_enc->hw_intf->ops.bind_pingpong_blk(
297 phys_enc->hw_intf,
298 true,
299 phys_enc->hw_pp->idx);
300
301 if (phys_enc->hw_pp->merge_3d) {
302 struct dpu_hw_merge_3d *merge_3d = to_dpu_hw_merge_3d(phys_enc->hw_pp->merge_3d);
303
304 merge_3d->ops.setup_3d_mode(merge_3d, intf_cfg.mode_3d);
305 }
306
307 spin_unlock_irqrestore(phys_enc->enc_spinlock, lock_flags);
308
309 programmable_fetch_config(phys_enc, &timing_params);
310}
311
312static void dpu_encoder_phys_vid_vblank_irq(void *arg, int irq_idx)
313{
314 struct dpu_encoder_phys *phys_enc = arg;
315 struct dpu_hw_ctl *hw_ctl;
316 unsigned long lock_flags;
317 u32 flush_register = 0;
318
319 hw_ctl = phys_enc->hw_ctl;
320
321 DPU_ATRACE_BEGIN("vblank_irq");
322
323 if (phys_enc->parent_ops->handle_vblank_virt)
324 phys_enc->parent_ops->handle_vblank_virt(phys_enc->parent,
325 phys_enc);
326
327 atomic_read(&phys_enc->pending_kickoff_cnt);
328
329
330
331
332
333
334 spin_lock_irqsave(phys_enc->enc_spinlock, lock_flags);
335 if (hw_ctl->ops.get_flush_register)
336 flush_register = hw_ctl->ops.get_flush_register(hw_ctl);
337
338 if (!(flush_register & hw_ctl->ops.get_pending_flush(hw_ctl)))
339 atomic_add_unless(&phys_enc->pending_kickoff_cnt, -1, 0);
340 spin_unlock_irqrestore(phys_enc->enc_spinlock, lock_flags);
341
342
343 wake_up_all(&phys_enc->pending_kickoff_wq);
344
345 phys_enc->parent_ops->handle_frame_done(phys_enc->parent, phys_enc,
346 DPU_ENCODER_FRAME_EVENT_DONE);
347
348 DPU_ATRACE_END("vblank_irq");
349}
350
351static void dpu_encoder_phys_vid_underrun_irq(void *arg, int irq_idx)
352{
353 struct dpu_encoder_phys *phys_enc = arg;
354
355 if (phys_enc->parent_ops->handle_underrun_virt)
356 phys_enc->parent_ops->handle_underrun_virt(phys_enc->parent,
357 phys_enc);
358}
359
360static bool dpu_encoder_phys_vid_needs_single_flush(
361 struct dpu_encoder_phys *phys_enc)
362{
363 return phys_enc->split_role != ENC_ROLE_SOLO;
364}
365
366static void _dpu_encoder_phys_vid_setup_irq_hw_idx(
367 struct dpu_encoder_phys *phys_enc)
368{
369 struct dpu_encoder_irq *irq;
370
371
372
373
374
375
376
377 irq = &phys_enc->irq[INTR_IDX_VSYNC];
378 if (irq->irq_idx < 0)
379 irq->hw_idx = phys_enc->intf_idx;
380
381 irq = &phys_enc->irq[INTR_IDX_UNDERRUN];
382 if (irq->irq_idx < 0)
383 irq->hw_idx = phys_enc->intf_idx;
384}
385
386static void dpu_encoder_phys_vid_mode_set(
387 struct dpu_encoder_phys *phys_enc,
388 struct drm_display_mode *mode,
389 struct drm_display_mode *adj_mode)
390{
391 if (adj_mode) {
392 phys_enc->cached_mode = *adj_mode;
393 drm_mode_debug_printmodeline(adj_mode);
394 DPU_DEBUG_VIDENC(phys_enc, "caching mode:\n");
395 }
396
397 _dpu_encoder_phys_vid_setup_irq_hw_idx(phys_enc);
398}
399
400static int dpu_encoder_phys_vid_control_vblank_irq(
401 struct dpu_encoder_phys *phys_enc,
402 bool enable)
403{
404 int ret = 0;
405 int refcount;
406
407 refcount = atomic_read(&phys_enc->vblank_refcount);
408
409
410 if (!dpu_encoder_phys_vid_is_master(phys_enc))
411 goto end;
412
413
414 if (!enable && refcount == 0) {
415 ret = -EINVAL;
416 goto end;
417 }
418
419 DRM_DEBUG_KMS("id:%u enable=%d/%d\n", DRMID(phys_enc->parent), enable,
420 atomic_read(&phys_enc->vblank_refcount));
421
422 if (enable && atomic_inc_return(&phys_enc->vblank_refcount) == 1)
423 ret = dpu_encoder_helper_register_irq(phys_enc, INTR_IDX_VSYNC);
424 else if (!enable && atomic_dec_return(&phys_enc->vblank_refcount) == 0)
425 ret = dpu_encoder_helper_unregister_irq(phys_enc,
426 INTR_IDX_VSYNC);
427
428end:
429 if (ret) {
430 DRM_ERROR("failed: id:%u intf:%d ret:%d enable:%d refcnt:%d\n",
431 DRMID(phys_enc->parent),
432 phys_enc->hw_intf->idx - INTF_0, ret, enable,
433 refcount);
434 }
435 return ret;
436}
437
438static void dpu_encoder_phys_vid_enable(struct dpu_encoder_phys *phys_enc)
439{
440 struct dpu_hw_ctl *ctl;
441
442 ctl = phys_enc->hw_ctl;
443
444 DPU_DEBUG_VIDENC(phys_enc, "\n");
445
446 if (WARN_ON(!phys_enc->hw_intf->ops.enable_timing))
447 return;
448
449 dpu_encoder_helper_split_config(phys_enc, phys_enc->hw_intf->idx);
450
451 dpu_encoder_phys_vid_setup_timing_engine(phys_enc);
452
453
454
455
456
457
458 if (dpu_encoder_phys_vid_needs_single_flush(phys_enc) &&
459 !dpu_encoder_phys_vid_is_master(phys_enc))
460 goto skip_flush;
461
462 ctl->ops.update_pending_flush_intf(ctl, phys_enc->hw_intf->idx);
463 if (ctl->ops.update_pending_flush_merge_3d && phys_enc->hw_pp->merge_3d)
464 ctl->ops.update_pending_flush_merge_3d(ctl, phys_enc->hw_pp->merge_3d->id);
465
466skip_flush:
467 DPU_DEBUG_VIDENC(phys_enc,
468 "update pending flush ctl %d intf %d\n",
469 ctl->idx - CTL_0, phys_enc->hw_intf->idx);
470
471
472
473 if (phys_enc->enable_state == DPU_ENC_DISABLED)
474 phys_enc->enable_state = DPU_ENC_ENABLING;
475}
476
477static void dpu_encoder_phys_vid_destroy(struct dpu_encoder_phys *phys_enc)
478{
479 DPU_DEBUG_VIDENC(phys_enc, "\n");
480 kfree(phys_enc);
481}
482
483static void dpu_encoder_phys_vid_get_hw_resources(
484 struct dpu_encoder_phys *phys_enc,
485 struct dpu_encoder_hw_resources *hw_res)
486{
487 hw_res->intfs[phys_enc->intf_idx - INTF_0] = INTF_MODE_VIDEO;
488}
489
490static int dpu_encoder_phys_vid_wait_for_vblank(
491 struct dpu_encoder_phys *phys_enc)
492{
493 struct dpu_encoder_wait_info wait_info;
494 int ret;
495
496 wait_info.wq = &phys_enc->pending_kickoff_wq;
497 wait_info.atomic_cnt = &phys_enc->pending_kickoff_cnt;
498 wait_info.timeout_ms = KICKOFF_TIMEOUT_MS;
499
500 if (!dpu_encoder_phys_vid_is_master(phys_enc)) {
501 return 0;
502 }
503
504
505 ret = dpu_encoder_helper_wait_for_irq(phys_enc, INTR_IDX_VSYNC,
506 &wait_info);
507
508 if (ret == -ETIMEDOUT) {
509 dpu_encoder_helper_report_irq_timeout(phys_enc, INTR_IDX_VSYNC);
510 }
511
512 return ret;
513}
514
515static int dpu_encoder_phys_vid_wait_for_commit_done(
516 struct dpu_encoder_phys *phys_enc)
517{
518 struct dpu_hw_ctl *hw_ctl = phys_enc->hw_ctl;
519 int ret;
520
521 if (!hw_ctl)
522 return 0;
523
524 ret = wait_event_timeout(phys_enc->pending_kickoff_wq,
525 (hw_ctl->ops.get_flush_register(hw_ctl) == 0),
526 msecs_to_jiffies(50));
527 if (ret <= 0) {
528 DPU_ERROR("vblank timeout\n");
529 return -ETIMEDOUT;
530 }
531
532 return 0;
533}
534
535static void dpu_encoder_phys_vid_prepare_for_kickoff(
536 struct dpu_encoder_phys *phys_enc)
537{
538 struct dpu_hw_ctl *ctl;
539 int rc;
540
541 ctl = phys_enc->hw_ctl;
542 if (!ctl->ops.wait_reset_status)
543 return;
544
545
546
547
548
549 rc = ctl->ops.wait_reset_status(ctl);
550 if (rc) {
551 DPU_ERROR_VIDENC(phys_enc, "ctl %d reset failure: %d\n",
552 ctl->idx, rc);
553 dpu_encoder_helper_unregister_irq(phys_enc, INTR_IDX_VSYNC);
554 }
555}
556
557static void dpu_encoder_phys_vid_disable(struct dpu_encoder_phys *phys_enc)
558{
559 unsigned long lock_flags;
560 int ret;
561
562 if (!phys_enc->parent || !phys_enc->parent->dev) {
563 DPU_ERROR("invalid encoder/device\n");
564 return;
565 }
566
567 if (!phys_enc->hw_intf) {
568 DPU_ERROR("invalid hw_intf %d hw_ctl %d\n",
569 phys_enc->hw_intf != NULL, phys_enc->hw_ctl != NULL);
570 return;
571 }
572
573 if (WARN_ON(!phys_enc->hw_intf->ops.enable_timing))
574 return;
575
576 if (phys_enc->enable_state == DPU_ENC_DISABLED) {
577 DPU_ERROR("already disabled\n");
578 return;
579 }
580
581 spin_lock_irqsave(phys_enc->enc_spinlock, lock_flags);
582 phys_enc->hw_intf->ops.enable_timing(phys_enc->hw_intf, 0);
583 if (dpu_encoder_phys_vid_is_master(phys_enc))
584 dpu_encoder_phys_inc_pending(phys_enc);
585 spin_unlock_irqrestore(phys_enc->enc_spinlock, lock_flags);
586
587
588
589
590
591
592
593
594
595 if (dpu_encoder_phys_vid_is_master(phys_enc)) {
596 ret = dpu_encoder_phys_vid_wait_for_vblank(phys_enc);
597 if (ret) {
598 atomic_set(&phys_enc->pending_kickoff_cnt, 0);
599 DRM_ERROR("wait disable failed: id:%u intf:%d ret:%d\n",
600 DRMID(phys_enc->parent),
601 phys_enc->hw_intf->idx - INTF_0, ret);
602 }
603 }
604
605 phys_enc->enable_state = DPU_ENC_DISABLED;
606}
607
608static void dpu_encoder_phys_vid_handle_post_kickoff(
609 struct dpu_encoder_phys *phys_enc)
610{
611 unsigned long lock_flags;
612
613
614
615
616
617 if (phys_enc->enable_state == DPU_ENC_ENABLING) {
618 trace_dpu_enc_phys_vid_post_kickoff(DRMID(phys_enc->parent),
619 phys_enc->hw_intf->idx - INTF_0);
620 spin_lock_irqsave(phys_enc->enc_spinlock, lock_flags);
621 phys_enc->hw_intf->ops.enable_timing(phys_enc->hw_intf, 1);
622 spin_unlock_irqrestore(phys_enc->enc_spinlock, lock_flags);
623 phys_enc->enable_state = DPU_ENC_ENABLED;
624 }
625}
626
627static void dpu_encoder_phys_vid_irq_control(struct dpu_encoder_phys *phys_enc,
628 bool enable)
629{
630 int ret;
631
632 trace_dpu_enc_phys_vid_irq_ctrl(DRMID(phys_enc->parent),
633 phys_enc->hw_intf->idx - INTF_0,
634 enable,
635 atomic_read(&phys_enc->vblank_refcount));
636
637 if (enable) {
638 ret = dpu_encoder_phys_vid_control_vblank_irq(phys_enc, true);
639 if (ret)
640 return;
641
642 dpu_encoder_helper_register_irq(phys_enc, INTR_IDX_UNDERRUN);
643 } else {
644 dpu_encoder_phys_vid_control_vblank_irq(phys_enc, false);
645 dpu_encoder_helper_unregister_irq(phys_enc, INTR_IDX_UNDERRUN);
646 }
647}
648
649static int dpu_encoder_phys_vid_get_line_count(
650 struct dpu_encoder_phys *phys_enc)
651{
652 if (!dpu_encoder_phys_vid_is_master(phys_enc))
653 return -EINVAL;
654
655 if (!phys_enc->hw_intf || !phys_enc->hw_intf->ops.get_line_count)
656 return -EINVAL;
657
658 return phys_enc->hw_intf->ops.get_line_count(phys_enc->hw_intf);
659}
660
661static void dpu_encoder_phys_vid_init_ops(struct dpu_encoder_phys_ops *ops)
662{
663 ops->is_master = dpu_encoder_phys_vid_is_master;
664 ops->mode_set = dpu_encoder_phys_vid_mode_set;
665 ops->mode_fixup = dpu_encoder_phys_vid_mode_fixup;
666 ops->enable = dpu_encoder_phys_vid_enable;
667 ops->disable = dpu_encoder_phys_vid_disable;
668 ops->destroy = dpu_encoder_phys_vid_destroy;
669 ops->get_hw_resources = dpu_encoder_phys_vid_get_hw_resources;
670 ops->control_vblank_irq = dpu_encoder_phys_vid_control_vblank_irq;
671 ops->wait_for_commit_done = dpu_encoder_phys_vid_wait_for_commit_done;
672 ops->wait_for_vblank = dpu_encoder_phys_vid_wait_for_vblank;
673 ops->wait_for_tx_complete = dpu_encoder_phys_vid_wait_for_vblank;
674 ops->irq_control = dpu_encoder_phys_vid_irq_control;
675 ops->prepare_for_kickoff = dpu_encoder_phys_vid_prepare_for_kickoff;
676 ops->handle_post_kickoff = dpu_encoder_phys_vid_handle_post_kickoff;
677 ops->needs_single_flush = dpu_encoder_phys_vid_needs_single_flush;
678 ops->get_line_count = dpu_encoder_phys_vid_get_line_count;
679}
680
681struct dpu_encoder_phys *dpu_encoder_phys_vid_init(
682 struct dpu_enc_phys_init_params *p)
683{
684 struct dpu_encoder_phys *phys_enc = NULL;
685 struct dpu_encoder_irq *irq;
686 int i, ret = 0;
687
688 if (!p) {
689 ret = -EINVAL;
690 goto fail;
691 }
692
693 phys_enc = kzalloc(sizeof(*phys_enc), GFP_KERNEL);
694 if (!phys_enc) {
695 ret = -ENOMEM;
696 goto fail;
697 }
698
699 phys_enc->hw_mdptop = p->dpu_kms->hw_mdp;
700 phys_enc->intf_idx = p->intf_idx;
701
702 DPU_DEBUG_VIDENC(phys_enc, "\n");
703
704 dpu_encoder_phys_vid_init_ops(&phys_enc->ops);
705 phys_enc->parent = p->parent;
706 phys_enc->parent_ops = p->parent_ops;
707 phys_enc->dpu_kms = p->dpu_kms;
708 phys_enc->split_role = p->split_role;
709 phys_enc->intf_mode = INTF_MODE_VIDEO;
710 phys_enc->enc_spinlock = p->enc_spinlock;
711 for (i = 0; i < INTR_IDX_MAX; i++) {
712 irq = &phys_enc->irq[i];
713 INIT_LIST_HEAD(&irq->cb.list);
714 irq->irq_idx = -EINVAL;
715 irq->hw_idx = -EINVAL;
716 irq->cb.arg = phys_enc;
717 }
718
719 irq = &phys_enc->irq[INTR_IDX_VSYNC];
720 irq->name = "vsync_irq";
721 irq->intr_type = DPU_IRQ_TYPE_INTF_VSYNC;
722 irq->intr_idx = INTR_IDX_VSYNC;
723 irq->cb.func = dpu_encoder_phys_vid_vblank_irq;
724
725 irq = &phys_enc->irq[INTR_IDX_UNDERRUN];
726 irq->name = "underrun";
727 irq->intr_type = DPU_IRQ_TYPE_INTF_UNDER_RUN;
728 irq->intr_idx = INTR_IDX_UNDERRUN;
729 irq->cb.func = dpu_encoder_phys_vid_underrun_irq;
730
731 atomic_set(&phys_enc->vblank_refcount, 0);
732 atomic_set(&phys_enc->pending_kickoff_cnt, 0);
733 init_waitqueue_head(&phys_enc->pending_kickoff_wq);
734 phys_enc->enable_state = DPU_ENC_DISABLED;
735
736 DPU_DEBUG_VIDENC(phys_enc, "created intf idx:%d\n", p->intf_idx);
737
738 return phys_enc;
739
740fail:
741 DPU_ERROR("failed to create encoder\n");
742 if (phys_enc)
743 dpu_encoder_phys_vid_destroy(phys_enc);
744
745 return ERR_PTR(ret);
746}
747