1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2014-2018, The Linux Foundation. All rights reserved.
4 * Copyright (C) 2013 Red Hat
5 * Author: Rob Clark <robdclark@gmail.com>
8 #define pr_fmt(fmt) "[drm:%s:%d] " fmt, __func__, __LINE__
9 #include <linux/debugfs.h>
10 #include <linux/kthread.h>
11 #include <linux/seq_file.h>
13 #include <drm/drm_crtc.h>
14 #include <drm/drm_file.h>
15 #include <drm/drm_probe_helper.h>
20 #include "dpu_hw_catalog.h"
21 #include "dpu_hw_intf.h"
22 #include "dpu_hw_ctl.h"
23 #include "dpu_formats.h"
24 #include "dpu_encoder_phys.h"
26 #include "dpu_trace.h"
27 #include "dpu_core_irq.h"
29 #define DPU_DEBUG_ENC(e, fmt, ...) DPU_DEBUG("enc%d " fmt,\
30 (e) ? (e)->base.base.id : -1, ##__VA_ARGS__)
32 #define DPU_ERROR_ENC(e, fmt, ...) DPU_ERROR("enc%d " fmt,\
33 (e) ? (e)->base.base.id : -1, ##__VA_ARGS__)
35 #define DPU_DEBUG_PHYS(p, fmt, ...) DPU_DEBUG("enc%d intf%d pp%d " fmt,\
36 (p) ? (p)->parent->base.id : -1, \
37 (p) ? (p)->intf_idx - INTF_0 : -1, \
38 (p) ? ((p)->hw_pp ? (p)->hw_pp->idx - PINGPONG_0 : -1) : -1, \
41 #define DPU_ERROR_PHYS(p, fmt, ...) DPU_ERROR("enc%d intf%d pp%d " fmt,\
42 (p) ? (p)->parent->base.id : -1, \
43 (p) ? (p)->intf_idx - INTF_0 : -1, \
44 (p) ? ((p)->hw_pp ? (p)->hw_pp->idx - PINGPONG_0 : -1) : -1, \
48 * Two to anticipate panels that can do cmd/vid dynamic switching
49 * plan is to create all possible physical encoder types, and switch between
52 #define NUM_PHYS_ENCODER_TYPES 2
54 #define MAX_PHYS_ENCODERS_PER_VIRTUAL \
55 (MAX_H_TILES_PER_DISPLAY * NUM_PHYS_ENCODER_TYPES)
57 #define MAX_CHANNELS_PER_ENC 2
59 #define IDLE_SHORT_TIMEOUT 1
61 #define MAX_HDISPLAY_SPLIT 1080
63 /* timeout in frames waiting for frame done */
64 #define DPU_ENCODER_FRAME_DONE_TIMEOUT_FRAMES 5
67 * enum dpu_enc_rc_events - events for resource control state machine
68 * @DPU_ENC_RC_EVENT_KICKOFF:
69 * This event happens at NORMAL priority.
70 * Event that signals the start of the transfer. When this event is
71 * received, enable MDP/DSI core clocks. Regardless of the previous
72 * state, the resource should be in ON state at the end of this event.
73 * @DPU_ENC_RC_EVENT_FRAME_DONE:
74 * This event happens at INTERRUPT level.
75 * Event signals the end of the data transfer after the PP FRAME_DONE
76 * event. At the end of this event, a delayed work is scheduled to go to
77 * IDLE_PC state after IDLE_TIMEOUT time.
78 * @DPU_ENC_RC_EVENT_PRE_STOP:
79 * This event happens at NORMAL priority.
80 * This event, when received during the ON state, leave the RC STATE
81 * in the PRE_OFF state. It should be followed by the STOP event as
82 * part of encoder disable.
83 * If received during IDLE or OFF states, it will do nothing.
84 * @DPU_ENC_RC_EVENT_STOP:
85 * This event happens at NORMAL priority.
86 * When this event is received, disable all the MDP/DSI core clocks, and
87 * disable IRQs. It should be called from the PRE_OFF or IDLE states.
88 * IDLE is expected when IDLE_PC has run, and PRE_OFF did nothing.
89 * PRE_OFF is expected when PRE_STOP was executed during the ON state.
90 * Resource state should be in OFF at the end of the event.
91 * @DPU_ENC_RC_EVENT_ENTER_IDLE:
92 * This event happens at NORMAL priority from a work item.
93 * Event signals that there were no frame updates for IDLE_TIMEOUT time.
94 * This would disable MDP/DSI core clocks and change the resource state
97 enum dpu_enc_rc_events
{
98 DPU_ENC_RC_EVENT_KICKOFF
= 1,
99 DPU_ENC_RC_EVENT_FRAME_DONE
,
100 DPU_ENC_RC_EVENT_PRE_STOP
,
101 DPU_ENC_RC_EVENT_STOP
,
102 DPU_ENC_RC_EVENT_ENTER_IDLE
106 * enum dpu_enc_rc_states - states that the resource control maintains
107 * @DPU_ENC_RC_STATE_OFF: Resource is in OFF state
108 * @DPU_ENC_RC_STATE_PRE_OFF: Resource is transitioning to OFF state
109 * @DPU_ENC_RC_STATE_ON: Resource is in ON state
110 * @DPU_ENC_RC_STATE_MODESET: Resource is in modeset state
111 * @DPU_ENC_RC_STATE_IDLE: Resource is in IDLE state
113 enum dpu_enc_rc_states
{
114 DPU_ENC_RC_STATE_OFF
,
115 DPU_ENC_RC_STATE_PRE_OFF
,
117 DPU_ENC_RC_STATE_IDLE
121 * struct dpu_encoder_virt - virtual encoder. Container of one or more physical
122 * encoders. Virtual encoder manages one "logical" display. Physical
123 * encoders manage one intf block, tied to a specific panel/sub-panel.
124 * Virtual encoder defers as much as possible to the physical encoders.
125 * Virtual encoder registers itself with the DRM Framework as the encoder.
126 * @base: drm_encoder base class for registration with DRM
127 * @enc_spinlock: Virtual-Encoder-Wide Spin Lock for IRQ purposes
128 * @bus_scaling_client: Client handle to the bus scaling interface
129 * @enabled: True if the encoder is active, protected by enc_lock
130 * @num_phys_encs: Actual number of physical encoders contained.
131 * @phys_encs: Container of physical encoders managed.
132 * @cur_master: Pointer to the current master in this mode. Optimization
133 * Only valid after enable. Cleared as disable.
134 * @hw_pp Handle to the pingpong blocks used for the display. No.
135 * pingpong blocks can be different than num_phys_encs.
136 * @intfs_swapped Whether or not the phys_enc interfaces have been swapped
137 * for partial update right-only cases, such as pingpong
138 * split where virtual pingpong does not generate IRQs
139 * @crtc: Pointer to the currently assigned crtc. Normally you
140 * would use crtc->state->encoder_mask to determine the
141 * link between encoder/crtc. However in this case we need
142 * to track crtc in the disable() hook which is called
143 * _after_ encoder_mask is cleared.
144 * @crtc_kickoff_cb: Callback into CRTC that will flush & start
146 * @crtc_kickoff_cb_data: Opaque user data given to crtc_kickoff_cb
147 * @debugfs_root: Debug file system root file node
148 * @enc_lock: Lock around physical encoder
149 * create/destroy/enable/disable
150 * @frame_busy_mask: Bitmask tracking which phys_enc we are still
151 * busy processing current command.
152 * Bit0 = phys_encs[0] etc.
153 * @crtc_frame_event_cb: callback handler for frame event
154 * @crtc_frame_event_cb_data: callback handler private data
155 * @frame_done_timeout_ms: frame done timeout in ms
156 * @frame_done_timer: watchdog timer for frame done event
157 * @vsync_event_timer: vsync timer
158 * @disp_info: local copy of msm_display_info struct
159 * @idle_pc_supported: indicate if idle power collaps is supported
160 * @rc_lock: resource control mutex lock to protect
161 * virt encoder over various state changes
162 * @rc_state: resource controller state
163 * @delayed_off_work: delayed worker to schedule disabling of
164 * clks and resources after IDLE_TIMEOUT time.
165 * @vsync_event_work: worker to handle vsync event for autorefresh
166 * @topology: topology of the display
167 * @mode_set_complete: flag to indicate modeset completion
168 * @idle_timeout: idle timeout duration in milliseconds
170 struct dpu_encoder_virt
{
171 struct drm_encoder base
;
172 spinlock_t enc_spinlock
;
173 uint32_t bus_scaling_client
;
177 unsigned int num_phys_encs
;
178 struct dpu_encoder_phys
*phys_encs
[MAX_PHYS_ENCODERS_PER_VIRTUAL
];
179 struct dpu_encoder_phys
*cur_master
;
180 struct dpu_encoder_phys
*cur_slave
;
181 struct dpu_hw_pingpong
*hw_pp
[MAX_CHANNELS_PER_ENC
];
185 struct drm_crtc
*crtc
;
187 struct dentry
*debugfs_root
;
188 struct mutex enc_lock
;
189 DECLARE_BITMAP(frame_busy_mask
, MAX_PHYS_ENCODERS_PER_VIRTUAL
);
190 void (*crtc_frame_event_cb
)(void *, u32 event
);
191 void *crtc_frame_event_cb_data
;
193 atomic_t frame_done_timeout_ms
;
194 struct timer_list frame_done_timer
;
195 struct timer_list vsync_event_timer
;
197 struct msm_display_info disp_info
;
199 bool idle_pc_supported
;
200 struct mutex rc_lock
;
201 enum dpu_enc_rc_states rc_state
;
202 struct delayed_work delayed_off_work
;
203 struct kthread_work vsync_event_work
;
204 struct msm_display_topology topology
;
205 bool mode_set_complete
;
210 #define to_dpu_encoder_virt(x) container_of(x, struct dpu_encoder_virt, base)
212 void dpu_encoder_helper_report_irq_timeout(struct dpu_encoder_phys
*phys_enc
,
213 enum dpu_intr_idx intr_idx
)
215 DRM_ERROR("irq timeout id=%u, intf=%d, pp=%d, intr=%d\n",
216 DRMID(phys_enc
->parent
), phys_enc
->intf_idx
- INTF_0
,
217 phys_enc
->hw_pp
->idx
- PINGPONG_0
, intr_idx
);
219 if (phys_enc
->parent_ops
->handle_frame_done
)
220 phys_enc
->parent_ops
->handle_frame_done(
221 phys_enc
->parent
, phys_enc
,
222 DPU_ENCODER_FRAME_EVENT_ERROR
);
225 static int dpu_encoder_helper_wait_event_timeout(int32_t drm_id
,
226 int32_t hw_id
, struct dpu_encoder_wait_info
*info
);
228 int dpu_encoder_helper_wait_for_irq(struct dpu_encoder_phys
*phys_enc
,
229 enum dpu_intr_idx intr_idx
,
230 struct dpu_encoder_wait_info
*wait_info
)
232 struct dpu_encoder_irq
*irq
;
236 if (!wait_info
|| intr_idx
>= INTR_IDX_MAX
) {
237 DPU_ERROR("invalid params\n");
240 irq
= &phys_enc
->irq
[intr_idx
];
242 /* note: do master / slave checking outside */
244 /* return EWOULDBLOCK since we know the wait isn't necessary */
245 if (phys_enc
->enable_state
== DPU_ENC_DISABLED
) {
246 DRM_ERROR("encoder is disabled id=%u, intr=%d, hw=%d, irq=%d",
247 DRMID(phys_enc
->parent
), intr_idx
, irq
->hw_idx
,
252 if (irq
->irq_idx
< 0) {
253 DRM_DEBUG_KMS("skip irq wait id=%u, intr=%d, hw=%d, irq=%s",
254 DRMID(phys_enc
->parent
), intr_idx
, irq
->hw_idx
,
259 DRM_DEBUG_KMS("id=%u, intr=%d, hw=%d, irq=%d, pp=%d, pending_cnt=%d",
260 DRMID(phys_enc
->parent
), intr_idx
, irq
->hw_idx
,
261 irq
->irq_idx
, phys_enc
->hw_pp
->idx
- PINGPONG_0
,
262 atomic_read(wait_info
->atomic_cnt
));
264 ret
= dpu_encoder_helper_wait_event_timeout(
265 DRMID(phys_enc
->parent
),
270 irq_status
= dpu_core_irq_read(phys_enc
->dpu_kms
,
275 DRM_DEBUG_KMS("irq not triggered id=%u, intr=%d, "
276 "hw=%d, irq=%d, pp=%d, atomic_cnt=%d",
277 DRMID(phys_enc
->parent
), intr_idx
,
278 irq
->hw_idx
, irq
->irq_idx
,
279 phys_enc
->hw_pp
->idx
- PINGPONG_0
,
280 atomic_read(wait_info
->atomic_cnt
));
281 local_irq_save(flags
);
282 irq
->cb
.func(phys_enc
, irq
->irq_idx
);
283 local_irq_restore(flags
);
287 DRM_DEBUG_KMS("irq timeout id=%u, intr=%d, "
288 "hw=%d, irq=%d, pp=%d, atomic_cnt=%d",
289 DRMID(phys_enc
->parent
), intr_idx
,
290 irq
->hw_idx
, irq
->irq_idx
,
291 phys_enc
->hw_pp
->idx
- PINGPONG_0
,
292 atomic_read(wait_info
->atomic_cnt
));
296 trace_dpu_enc_irq_wait_success(DRMID(phys_enc
->parent
),
297 intr_idx
, irq
->hw_idx
, irq
->irq_idx
,
298 phys_enc
->hw_pp
->idx
- PINGPONG_0
,
299 atomic_read(wait_info
->atomic_cnt
));
305 int dpu_encoder_helper_register_irq(struct dpu_encoder_phys
*phys_enc
,
306 enum dpu_intr_idx intr_idx
)
308 struct dpu_encoder_irq
*irq
;
311 if (intr_idx
>= INTR_IDX_MAX
) {
312 DPU_ERROR("invalid params\n");
315 irq
= &phys_enc
->irq
[intr_idx
];
317 if (irq
->irq_idx
>= 0) {
318 DPU_DEBUG_PHYS(phys_enc
,
319 "skipping already registered irq %s type %d\n",
320 irq
->name
, irq
->intr_type
);
324 irq
->irq_idx
= dpu_core_irq_idx_lookup(phys_enc
->dpu_kms
,
325 irq
->intr_type
, irq
->hw_idx
);
326 if (irq
->irq_idx
< 0) {
327 DPU_ERROR_PHYS(phys_enc
,
328 "failed to lookup IRQ index for %s type:%d\n",
329 irq
->name
, irq
->intr_type
);
333 ret
= dpu_core_irq_register_callback(phys_enc
->dpu_kms
, irq
->irq_idx
,
336 DPU_ERROR_PHYS(phys_enc
,
337 "failed to register IRQ callback for %s\n",
339 irq
->irq_idx
= -EINVAL
;
343 ret
= dpu_core_irq_enable(phys_enc
->dpu_kms
, &irq
->irq_idx
, 1);
345 DRM_ERROR("enable failed id=%u, intr=%d, hw=%d, irq=%d",
346 DRMID(phys_enc
->parent
), intr_idx
, irq
->hw_idx
,
348 dpu_core_irq_unregister_callback(phys_enc
->dpu_kms
,
349 irq
->irq_idx
, &irq
->cb
);
350 irq
->irq_idx
= -EINVAL
;
354 trace_dpu_enc_irq_register_success(DRMID(phys_enc
->parent
), intr_idx
,
355 irq
->hw_idx
, irq
->irq_idx
);
360 int dpu_encoder_helper_unregister_irq(struct dpu_encoder_phys
*phys_enc
,
361 enum dpu_intr_idx intr_idx
)
363 struct dpu_encoder_irq
*irq
;
366 irq
= &phys_enc
->irq
[intr_idx
];
368 /* silently skip irqs that weren't registered */
369 if (irq
->irq_idx
< 0) {
370 DRM_ERROR("duplicate unregister id=%u, intr=%d, hw=%d, irq=%d",
371 DRMID(phys_enc
->parent
), intr_idx
, irq
->hw_idx
,
376 ret
= dpu_core_irq_disable(phys_enc
->dpu_kms
, &irq
->irq_idx
, 1);
378 DRM_ERROR("disable failed id=%u, intr=%d, hw=%d, irq=%d ret=%d",
379 DRMID(phys_enc
->parent
), intr_idx
, irq
->hw_idx
,
383 ret
= dpu_core_irq_unregister_callback(phys_enc
->dpu_kms
, irq
->irq_idx
,
386 DRM_ERROR("unreg cb fail id=%u, intr=%d, hw=%d, irq=%d ret=%d",
387 DRMID(phys_enc
->parent
), intr_idx
, irq
->hw_idx
,
391 trace_dpu_enc_irq_unregister_success(DRMID(phys_enc
->parent
), intr_idx
,
392 irq
->hw_idx
, irq
->irq_idx
);
394 irq
->irq_idx
= -EINVAL
;
399 void dpu_encoder_get_hw_resources(struct drm_encoder
*drm_enc
,
400 struct dpu_encoder_hw_resources
*hw_res
)
402 struct dpu_encoder_virt
*dpu_enc
= NULL
;
405 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
406 DPU_DEBUG_ENC(dpu_enc
, "\n");
408 /* Query resources used by phys encs, expected to be without overlap */
409 memset(hw_res
, 0, sizeof(*hw_res
));
411 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
412 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
414 if (phys
->ops
.get_hw_resources
)
415 phys
->ops
.get_hw_resources(phys
, hw_res
);
419 static void dpu_encoder_destroy(struct drm_encoder
*drm_enc
)
421 struct dpu_encoder_virt
*dpu_enc
= NULL
;
425 DPU_ERROR("invalid encoder\n");
429 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
430 DPU_DEBUG_ENC(dpu_enc
, "\n");
432 mutex_lock(&dpu_enc
->enc_lock
);
434 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
435 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
437 if (phys
->ops
.destroy
) {
438 phys
->ops
.destroy(phys
);
439 --dpu_enc
->num_phys_encs
;
440 dpu_enc
->phys_encs
[i
] = NULL
;
444 if (dpu_enc
->num_phys_encs
)
445 DPU_ERROR_ENC(dpu_enc
, "expected 0 num_phys_encs not %d\n",
446 dpu_enc
->num_phys_encs
);
447 dpu_enc
->num_phys_encs
= 0;
448 mutex_unlock(&dpu_enc
->enc_lock
);
450 drm_encoder_cleanup(drm_enc
);
451 mutex_destroy(&dpu_enc
->enc_lock
);
454 void dpu_encoder_helper_split_config(
455 struct dpu_encoder_phys
*phys_enc
,
456 enum dpu_intf interface
)
458 struct dpu_encoder_virt
*dpu_enc
;
459 struct split_pipe_cfg cfg
= { 0 };
460 struct dpu_hw_mdp
*hw_mdptop
;
461 struct msm_display_info
*disp_info
;
463 if (!phys_enc
->hw_mdptop
|| !phys_enc
->parent
) {
464 DPU_ERROR("invalid arg(s), encoder %d\n", phys_enc
!= 0);
468 dpu_enc
= to_dpu_encoder_virt(phys_enc
->parent
);
469 hw_mdptop
= phys_enc
->hw_mdptop
;
470 disp_info
= &dpu_enc
->disp_info
;
472 if (disp_info
->intf_type
!= DRM_MODE_ENCODER_DSI
)
476 * disable split modes since encoder will be operating in as the only
477 * encoder, either for the entire use case in the case of, for example,
478 * single DSI, or for this frame in the case of left/right only partial
481 if (phys_enc
->split_role
== ENC_ROLE_SOLO
) {
482 if (hw_mdptop
->ops
.setup_split_pipe
)
483 hw_mdptop
->ops
.setup_split_pipe(hw_mdptop
, &cfg
);
488 cfg
.mode
= phys_enc
->intf_mode
;
489 cfg
.intf
= interface
;
491 if (cfg
.en
&& phys_enc
->ops
.needs_single_flush
&&
492 phys_enc
->ops
.needs_single_flush(phys_enc
))
493 cfg
.split_flush_en
= true;
495 if (phys_enc
->split_role
== ENC_ROLE_MASTER
) {
496 DPU_DEBUG_ENC(dpu_enc
, "enable %d\n", cfg
.en
);
498 if (hw_mdptop
->ops
.setup_split_pipe
)
499 hw_mdptop
->ops
.setup_split_pipe(hw_mdptop
, &cfg
);
503 static void _dpu_encoder_adjust_mode(struct drm_connector
*connector
,
504 struct drm_display_mode
*adj_mode
)
506 struct drm_display_mode
*cur_mode
;
508 if (!connector
|| !adj_mode
)
511 list_for_each_entry(cur_mode
, &connector
->modes
, head
) {
512 if (cur_mode
->vdisplay
== adj_mode
->vdisplay
&&
513 cur_mode
->hdisplay
== adj_mode
->hdisplay
&&
514 drm_mode_vrefresh(cur_mode
) == drm_mode_vrefresh(adj_mode
)) {
515 adj_mode
->private = cur_mode
->private;
516 adj_mode
->private_flags
|= cur_mode
->private_flags
;
521 static struct msm_display_topology
dpu_encoder_get_topology(
522 struct dpu_encoder_virt
*dpu_enc
,
523 struct dpu_kms
*dpu_kms
,
524 struct drm_display_mode
*mode
)
526 struct msm_display_topology topology
;
527 int i
, intf_count
= 0;
529 for (i
= 0; i
< MAX_PHYS_ENCODERS_PER_VIRTUAL
; i
++)
530 if (dpu_enc
->phys_encs
[i
])
533 /* Datapath topology selection
536 * 2 LM, 2 INTF ( Split display using 2 interfaces)
540 * 2 LM, 1 INTF (stream merge to support high resolution interfaces)
545 else if (!dpu_kms
->catalog
->caps
->has_3d_merge
)
548 topology
.num_lm
= (mode
->hdisplay
> MAX_HDISPLAY_SPLIT
) ? 2 : 1;
550 topology
.num_enc
= 0;
551 topology
.num_intf
= intf_count
;
555 static int dpu_encoder_virt_atomic_check(
556 struct drm_encoder
*drm_enc
,
557 struct drm_crtc_state
*crtc_state
,
558 struct drm_connector_state
*conn_state
)
560 struct dpu_encoder_virt
*dpu_enc
;
561 struct msm_drm_private
*priv
;
562 struct dpu_kms
*dpu_kms
;
563 const struct drm_display_mode
*mode
;
564 struct drm_display_mode
*adj_mode
;
565 struct msm_display_topology topology
;
569 if (!drm_enc
|| !crtc_state
|| !conn_state
) {
570 DPU_ERROR("invalid arg(s), drm_enc %d, crtc/conn state %d/%d\n",
571 drm_enc
!= 0, crtc_state
!= 0, conn_state
!= 0);
575 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
576 DPU_DEBUG_ENC(dpu_enc
, "\n");
578 priv
= drm_enc
->dev
->dev_private
;
579 dpu_kms
= to_dpu_kms(priv
->kms
);
580 mode
= &crtc_state
->mode
;
581 adj_mode
= &crtc_state
->adjusted_mode
;
582 trace_dpu_enc_atomic_check(DRMID(drm_enc
));
585 * display drivers may populate private fields of the drm display mode
586 * structure while registering possible modes of a connector with DRM.
587 * These private fields are not populated back while DRM invokes
588 * the mode_set callbacks. This module retrieves and populates the
589 * private fields of the given mode.
591 _dpu_encoder_adjust_mode(conn_state
->connector
, adj_mode
);
593 /* perform atomic check on the first physical encoder (master) */
594 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
595 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
597 if (phys
->ops
.atomic_check
)
598 ret
= phys
->ops
.atomic_check(phys
, crtc_state
,
600 else if (phys
->ops
.mode_fixup
)
601 if (!phys
->ops
.mode_fixup(phys
, mode
, adj_mode
))
605 DPU_ERROR_ENC(dpu_enc
,
606 "mode unsupported, phys idx %d\n", i
);
611 topology
= dpu_encoder_get_topology(dpu_enc
, dpu_kms
, adj_mode
);
613 /* Reserve dynamic resources now. Indicating AtomicTest phase */
616 * Avoid reserving resources when mode set is pending. Topology
617 * info may not be available to complete reservation.
619 if (drm_atomic_crtc_needs_modeset(crtc_state
)
620 && dpu_enc
->mode_set_complete
) {
621 ret
= dpu_rm_reserve(&dpu_kms
->rm
, drm_enc
, crtc_state
,
623 dpu_enc
->mode_set_complete
= false;
627 trace_dpu_enc_atomic_check_flags(DRMID(drm_enc
), adj_mode
->flags
,
628 adj_mode
->private_flags
);
633 static void _dpu_encoder_update_vsync_source(struct dpu_encoder_virt
*dpu_enc
,
634 struct msm_display_info
*disp_info
)
636 struct dpu_vsync_source_cfg vsync_cfg
= { 0 };
637 struct msm_drm_private
*priv
;
638 struct dpu_kms
*dpu_kms
;
639 struct dpu_hw_mdp
*hw_mdptop
;
640 struct drm_encoder
*drm_enc
;
643 if (!dpu_enc
|| !disp_info
) {
644 DPU_ERROR("invalid param dpu_enc:%d or disp_info:%d\n",
645 dpu_enc
!= NULL
, disp_info
!= NULL
);
647 } else if (dpu_enc
->num_phys_encs
> ARRAY_SIZE(dpu_enc
->hw_pp
)) {
648 DPU_ERROR("invalid num phys enc %d/%d\n",
649 dpu_enc
->num_phys_encs
,
650 (int) ARRAY_SIZE(dpu_enc
->hw_pp
));
654 drm_enc
= &dpu_enc
->base
;
655 /* this pointers are checked in virt_enable_helper */
656 priv
= drm_enc
->dev
->dev_private
;
658 dpu_kms
= to_dpu_kms(priv
->kms
);
659 hw_mdptop
= dpu_kms
->hw_mdp
;
661 DPU_ERROR("invalid mdptop\n");
665 if (hw_mdptop
->ops
.setup_vsync_source
&&
666 disp_info
->capabilities
& MSM_DISPLAY_CAP_CMD_MODE
) {
667 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++)
668 vsync_cfg
.ppnumber
[i
] = dpu_enc
->hw_pp
[i
]->idx
;
670 vsync_cfg
.pp_count
= dpu_enc
->num_phys_encs
;
671 if (disp_info
->is_te_using_watchdog_timer
)
672 vsync_cfg
.vsync_source
= DPU_VSYNC_SOURCE_WD_TIMER_0
;
674 vsync_cfg
.vsync_source
= DPU_VSYNC0_SOURCE_GPIO
;
676 hw_mdptop
->ops
.setup_vsync_source(hw_mdptop
, &vsync_cfg
);
680 static void _dpu_encoder_irq_control(struct drm_encoder
*drm_enc
, bool enable
)
682 struct dpu_encoder_virt
*dpu_enc
;
686 DPU_ERROR("invalid encoder\n");
690 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
692 DPU_DEBUG_ENC(dpu_enc
, "enable:%d\n", enable
);
693 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
694 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
696 if (phys
->ops
.irq_control
)
697 phys
->ops
.irq_control(phys
, enable
);
702 static void _dpu_encoder_resource_control_helper(struct drm_encoder
*drm_enc
,
705 struct msm_drm_private
*priv
;
706 struct dpu_kms
*dpu_kms
;
707 struct dpu_encoder_virt
*dpu_enc
;
709 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
710 priv
= drm_enc
->dev
->dev_private
;
711 dpu_kms
= to_dpu_kms(priv
->kms
);
713 trace_dpu_enc_rc_helper(DRMID(drm_enc
), enable
);
715 if (!dpu_enc
->cur_master
) {
716 DPU_ERROR("encoder master not set\n");
721 /* enable DPU core clks */
722 pm_runtime_get_sync(&dpu_kms
->pdev
->dev
);
724 /* enable all the irq */
725 _dpu_encoder_irq_control(drm_enc
, true);
728 /* disable all the irq */
729 _dpu_encoder_irq_control(drm_enc
, false);
731 /* disable DPU core clks */
732 pm_runtime_put_sync(&dpu_kms
->pdev
->dev
);
737 static int dpu_encoder_resource_control(struct drm_encoder
*drm_enc
,
740 struct dpu_encoder_virt
*dpu_enc
;
741 struct msm_drm_private
*priv
;
742 bool is_vid_mode
= false;
744 if (!drm_enc
|| !drm_enc
->dev
|| !drm_enc
->crtc
) {
745 DPU_ERROR("invalid parameters\n");
748 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
749 priv
= drm_enc
->dev
->dev_private
;
750 is_vid_mode
= dpu_enc
->disp_info
.capabilities
&
751 MSM_DISPLAY_CAP_VID_MODE
;
754 * when idle_pc is not supported, process only KICKOFF, STOP and MODESET
755 * events and return early for other events (ie wb display).
757 if (!dpu_enc
->idle_pc_supported
&&
758 (sw_event
!= DPU_ENC_RC_EVENT_KICKOFF
&&
759 sw_event
!= DPU_ENC_RC_EVENT_STOP
&&
760 sw_event
!= DPU_ENC_RC_EVENT_PRE_STOP
))
763 trace_dpu_enc_rc(DRMID(drm_enc
), sw_event
, dpu_enc
->idle_pc_supported
,
764 dpu_enc
->rc_state
, "begin");
767 case DPU_ENC_RC_EVENT_KICKOFF
:
768 /* cancel delayed off work, if any */
769 if (cancel_delayed_work_sync(&dpu_enc
->delayed_off_work
))
770 DPU_DEBUG_ENC(dpu_enc
, "sw_event:%d, work cancelled\n",
773 mutex_lock(&dpu_enc
->rc_lock
);
775 /* return if the resource control is already in ON state */
776 if (dpu_enc
->rc_state
== DPU_ENC_RC_STATE_ON
) {
777 DRM_DEBUG_KMS("id;%u, sw_event:%d, rc in ON state\n",
778 DRMID(drm_enc
), sw_event
);
779 mutex_unlock(&dpu_enc
->rc_lock
);
781 } else if (dpu_enc
->rc_state
!= DPU_ENC_RC_STATE_OFF
&&
782 dpu_enc
->rc_state
!= DPU_ENC_RC_STATE_IDLE
) {
783 DRM_DEBUG_KMS("id;%u, sw_event:%d, rc in state %d\n",
784 DRMID(drm_enc
), sw_event
,
786 mutex_unlock(&dpu_enc
->rc_lock
);
790 if (is_vid_mode
&& dpu_enc
->rc_state
== DPU_ENC_RC_STATE_IDLE
)
791 _dpu_encoder_irq_control(drm_enc
, true);
793 _dpu_encoder_resource_control_helper(drm_enc
, true);
795 dpu_enc
->rc_state
= DPU_ENC_RC_STATE_ON
;
797 trace_dpu_enc_rc(DRMID(drm_enc
), sw_event
,
798 dpu_enc
->idle_pc_supported
, dpu_enc
->rc_state
,
801 mutex_unlock(&dpu_enc
->rc_lock
);
804 case DPU_ENC_RC_EVENT_FRAME_DONE
:
806 * mutex lock is not used as this event happens at interrupt
807 * context. And locking is not required as, the other events
808 * like KICKOFF and STOP does a wait-for-idle before executing
809 * the resource_control
811 if (dpu_enc
->rc_state
!= DPU_ENC_RC_STATE_ON
) {
812 DRM_DEBUG_KMS("id:%d, sw_event:%d,rc:%d-unexpected\n",
813 DRMID(drm_enc
), sw_event
,
819 * schedule off work item only when there are no
822 if (dpu_crtc_frame_pending(drm_enc
->crtc
) > 1) {
823 DRM_DEBUG_KMS("id:%d skip schedule work\n",
828 queue_delayed_work(priv
->wq
, &dpu_enc
->delayed_off_work
,
829 msecs_to_jiffies(dpu_enc
->idle_timeout
));
831 trace_dpu_enc_rc(DRMID(drm_enc
), sw_event
,
832 dpu_enc
->idle_pc_supported
, dpu_enc
->rc_state
,
836 case DPU_ENC_RC_EVENT_PRE_STOP
:
837 /* cancel delayed off work, if any */
838 if (cancel_delayed_work_sync(&dpu_enc
->delayed_off_work
))
839 DPU_DEBUG_ENC(dpu_enc
, "sw_event:%d, work cancelled\n",
842 mutex_lock(&dpu_enc
->rc_lock
);
845 dpu_enc
->rc_state
== DPU_ENC_RC_STATE_IDLE
) {
846 _dpu_encoder_irq_control(drm_enc
, true);
848 /* skip if is already OFF or IDLE, resources are off already */
849 else if (dpu_enc
->rc_state
== DPU_ENC_RC_STATE_OFF
||
850 dpu_enc
->rc_state
== DPU_ENC_RC_STATE_IDLE
) {
851 DRM_DEBUG_KMS("id:%u, sw_event:%d, rc in %d state\n",
852 DRMID(drm_enc
), sw_event
,
854 mutex_unlock(&dpu_enc
->rc_lock
);
858 dpu_enc
->rc_state
= DPU_ENC_RC_STATE_PRE_OFF
;
860 trace_dpu_enc_rc(DRMID(drm_enc
), sw_event
,
861 dpu_enc
->idle_pc_supported
, dpu_enc
->rc_state
,
864 mutex_unlock(&dpu_enc
->rc_lock
);
867 case DPU_ENC_RC_EVENT_STOP
:
868 mutex_lock(&dpu_enc
->rc_lock
);
870 /* return if the resource control is already in OFF state */
871 if (dpu_enc
->rc_state
== DPU_ENC_RC_STATE_OFF
) {
872 DRM_DEBUG_KMS("id: %u, sw_event:%d, rc in OFF state\n",
873 DRMID(drm_enc
), sw_event
);
874 mutex_unlock(&dpu_enc
->rc_lock
);
876 } else if (dpu_enc
->rc_state
== DPU_ENC_RC_STATE_ON
) {
877 DRM_ERROR("id: %u, sw_event:%d, rc in state %d\n",
878 DRMID(drm_enc
), sw_event
, dpu_enc
->rc_state
);
879 mutex_unlock(&dpu_enc
->rc_lock
);
884 * expect to arrive here only if in either idle state or pre-off
885 * and in IDLE state the resources are already disabled
887 if (dpu_enc
->rc_state
== DPU_ENC_RC_STATE_PRE_OFF
)
888 _dpu_encoder_resource_control_helper(drm_enc
, false);
890 dpu_enc
->rc_state
= DPU_ENC_RC_STATE_OFF
;
892 trace_dpu_enc_rc(DRMID(drm_enc
), sw_event
,
893 dpu_enc
->idle_pc_supported
, dpu_enc
->rc_state
,
896 mutex_unlock(&dpu_enc
->rc_lock
);
899 case DPU_ENC_RC_EVENT_ENTER_IDLE
:
900 mutex_lock(&dpu_enc
->rc_lock
);
902 if (dpu_enc
->rc_state
!= DPU_ENC_RC_STATE_ON
) {
903 DRM_ERROR("id: %u, sw_event:%d, rc:%d !ON state\n",
904 DRMID(drm_enc
), sw_event
, dpu_enc
->rc_state
);
905 mutex_unlock(&dpu_enc
->rc_lock
);
910 * if we are in ON but a frame was just kicked off,
911 * ignore the IDLE event, it's probably a stale timer event
913 if (dpu_enc
->frame_busy_mask
[0]) {
914 DRM_ERROR("id:%u, sw_event:%d, rc:%d frame pending\n",
915 DRMID(drm_enc
), sw_event
, dpu_enc
->rc_state
);
916 mutex_unlock(&dpu_enc
->rc_lock
);
921 _dpu_encoder_irq_control(drm_enc
, false);
923 _dpu_encoder_resource_control_helper(drm_enc
, false);
925 dpu_enc
->rc_state
= DPU_ENC_RC_STATE_IDLE
;
927 trace_dpu_enc_rc(DRMID(drm_enc
), sw_event
,
928 dpu_enc
->idle_pc_supported
, dpu_enc
->rc_state
,
931 mutex_unlock(&dpu_enc
->rc_lock
);
935 DRM_ERROR("id:%u, unexpected sw_event: %d\n", DRMID(drm_enc
),
937 trace_dpu_enc_rc(DRMID(drm_enc
), sw_event
,
938 dpu_enc
->idle_pc_supported
, dpu_enc
->rc_state
,
943 trace_dpu_enc_rc(DRMID(drm_enc
), sw_event
,
944 dpu_enc
->idle_pc_supported
, dpu_enc
->rc_state
,
949 static void dpu_encoder_virt_mode_set(struct drm_encoder
*drm_enc
,
950 struct drm_display_mode
*mode
,
951 struct drm_display_mode
*adj_mode
)
953 struct dpu_encoder_virt
*dpu_enc
;
954 struct msm_drm_private
*priv
;
955 struct dpu_kms
*dpu_kms
;
956 struct list_head
*connector_list
;
957 struct drm_connector
*conn
= NULL
, *conn_iter
;
958 struct drm_crtc
*drm_crtc
;
959 struct dpu_crtc_state
*cstate
;
960 struct dpu_rm_hw_iter hw_iter
;
961 struct msm_display_topology topology
;
962 struct dpu_hw_ctl
*hw_ctl
[MAX_CHANNELS_PER_ENC
] = { NULL
};
963 struct dpu_hw_mixer
*hw_lm
[MAX_CHANNELS_PER_ENC
] = { NULL
};
964 int num_lm
= 0, num_ctl
= 0;
968 DPU_ERROR("invalid encoder\n");
972 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
973 DPU_DEBUG_ENC(dpu_enc
, "\n");
975 priv
= drm_enc
->dev
->dev_private
;
976 dpu_kms
= to_dpu_kms(priv
->kms
);
977 connector_list
= &dpu_kms
->dev
->mode_config
.connector_list
;
979 trace_dpu_enc_mode_set(DRMID(drm_enc
));
981 list_for_each_entry(conn_iter
, connector_list
, head
)
982 if (conn_iter
->encoder
== drm_enc
)
986 DPU_ERROR_ENC(dpu_enc
, "failed to find attached connector\n");
988 } else if (!conn
->state
) {
989 DPU_ERROR_ENC(dpu_enc
, "invalid connector state\n");
993 drm_for_each_crtc(drm_crtc
, drm_enc
->dev
)
994 if (drm_crtc
->state
->encoder_mask
& drm_encoder_mask(drm_enc
))
997 topology
= dpu_encoder_get_topology(dpu_enc
, dpu_kms
, adj_mode
);
999 /* Reserve dynamic resources now. Indicating non-AtomicTest phase */
1000 ret
= dpu_rm_reserve(&dpu_kms
->rm
, drm_enc
, drm_crtc
->state
,
1003 DPU_ERROR_ENC(dpu_enc
,
1004 "failed to reserve hw resources, %d\n", ret
);
1008 dpu_rm_init_hw_iter(&hw_iter
, drm_enc
->base
.id
, DPU_HW_BLK_PINGPONG
);
1009 for (i
= 0; i
< MAX_CHANNELS_PER_ENC
; i
++) {
1010 dpu_enc
->hw_pp
[i
] = NULL
;
1011 if (!dpu_rm_get_hw(&dpu_kms
->rm
, &hw_iter
))
1013 dpu_enc
->hw_pp
[i
] = (struct dpu_hw_pingpong
*) hw_iter
.hw
;
1016 dpu_rm_init_hw_iter(&hw_iter
, drm_enc
->base
.id
, DPU_HW_BLK_CTL
);
1017 for (i
= 0; i
< MAX_CHANNELS_PER_ENC
; i
++) {
1018 if (!dpu_rm_get_hw(&dpu_kms
->rm
, &hw_iter
))
1020 hw_ctl
[i
] = (struct dpu_hw_ctl
*)hw_iter
.hw
;
1024 dpu_rm_init_hw_iter(&hw_iter
, drm_enc
->base
.id
, DPU_HW_BLK_LM
);
1025 for (i
= 0; i
< MAX_CHANNELS_PER_ENC
; i
++) {
1026 if (!dpu_rm_get_hw(&dpu_kms
->rm
, &hw_iter
))
1028 hw_lm
[i
] = (struct dpu_hw_mixer
*)hw_iter
.hw
;
1032 cstate
= to_dpu_crtc_state(drm_crtc
->state
);
1034 for (i
= 0; i
< num_lm
; i
++) {
1035 int ctl_idx
= (i
< num_ctl
) ? i
: (num_ctl
-1);
1037 cstate
->mixers
[i
].hw_lm
= hw_lm
[i
];
1038 cstate
->mixers
[i
].lm_ctl
= hw_ctl
[ctl_idx
];
1041 cstate
->num_mixers
= num_lm
;
1043 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1044 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
1046 if (!dpu_enc
->hw_pp
[i
]) {
1047 DPU_ERROR_ENC(dpu_enc
,
1048 "no pp block assigned at idx: %d\n", i
);
1053 DPU_ERROR_ENC(dpu_enc
,
1054 "no ctl block assigned at idx: %d\n", i
);
1058 phys
->hw_pp
= dpu_enc
->hw_pp
[i
];
1059 phys
->hw_ctl
= hw_ctl
[i
];
1061 dpu_rm_init_hw_iter(&hw_iter
, drm_enc
->base
.id
,
1063 for (j
= 0; j
< MAX_CHANNELS_PER_ENC
; j
++) {
1064 struct dpu_hw_intf
*hw_intf
;
1066 if (!dpu_rm_get_hw(&dpu_kms
->rm
, &hw_iter
))
1069 hw_intf
= (struct dpu_hw_intf
*)hw_iter
.hw
;
1070 if (hw_intf
->idx
== phys
->intf_idx
)
1071 phys
->hw_intf
= hw_intf
;
1074 if (!phys
->hw_intf
) {
1075 DPU_ERROR_ENC(dpu_enc
,
1076 "no intf block assigned at idx: %d\n", i
);
1080 phys
->connector
= conn
->state
->connector
;
1081 if (phys
->ops
.mode_set
)
1082 phys
->ops
.mode_set(phys
, mode
, adj_mode
);
1085 dpu_enc
->mode_set_complete
= true;
1088 dpu_rm_release(&dpu_kms
->rm
, drm_enc
);
1091 static void _dpu_encoder_virt_enable_helper(struct drm_encoder
*drm_enc
)
1093 struct dpu_encoder_virt
*dpu_enc
= NULL
;
1094 struct msm_drm_private
*priv
;
1095 struct dpu_kms
*dpu_kms
;
1097 if (!drm_enc
|| !drm_enc
->dev
) {
1098 DPU_ERROR("invalid parameters\n");
1102 priv
= drm_enc
->dev
->dev_private
;
1103 dpu_kms
= to_dpu_kms(priv
->kms
);
1105 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1106 if (!dpu_enc
|| !dpu_enc
->cur_master
) {
1107 DPU_ERROR("invalid dpu encoder/master\n");
1111 if (dpu_enc
->cur_master
->hw_mdptop
&&
1112 dpu_enc
->cur_master
->hw_mdptop
->ops
.reset_ubwc
)
1113 dpu_enc
->cur_master
->hw_mdptop
->ops
.reset_ubwc(
1114 dpu_enc
->cur_master
->hw_mdptop
,
1117 _dpu_encoder_update_vsync_source(dpu_enc
, &dpu_enc
->disp_info
);
1120 void dpu_encoder_virt_runtime_resume(struct drm_encoder
*drm_enc
)
1122 struct dpu_encoder_virt
*dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1124 mutex_lock(&dpu_enc
->enc_lock
);
1126 if (!dpu_enc
->enabled
)
1129 if (dpu_enc
->cur_slave
&& dpu_enc
->cur_slave
->ops
.restore
)
1130 dpu_enc
->cur_slave
->ops
.restore(dpu_enc
->cur_slave
);
1131 if (dpu_enc
->cur_master
&& dpu_enc
->cur_master
->ops
.restore
)
1132 dpu_enc
->cur_master
->ops
.restore(dpu_enc
->cur_master
);
1134 _dpu_encoder_virt_enable_helper(drm_enc
);
1137 mutex_unlock(&dpu_enc
->enc_lock
);
1140 static void dpu_encoder_virt_enable(struct drm_encoder
*drm_enc
)
1142 struct dpu_encoder_virt
*dpu_enc
= NULL
;
1144 struct drm_display_mode
*cur_mode
= NULL
;
1147 DPU_ERROR("invalid encoder\n");
1150 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1152 mutex_lock(&dpu_enc
->enc_lock
);
1153 cur_mode
= &dpu_enc
->base
.crtc
->state
->adjusted_mode
;
1155 trace_dpu_enc_enable(DRMID(drm_enc
), cur_mode
->hdisplay
,
1156 cur_mode
->vdisplay
);
1158 /* always enable slave encoder before master */
1159 if (dpu_enc
->cur_slave
&& dpu_enc
->cur_slave
->ops
.enable
)
1160 dpu_enc
->cur_slave
->ops
.enable(dpu_enc
->cur_slave
);
1162 if (dpu_enc
->cur_master
&& dpu_enc
->cur_master
->ops
.enable
)
1163 dpu_enc
->cur_master
->ops
.enable(dpu_enc
->cur_master
);
1165 ret
= dpu_encoder_resource_control(drm_enc
, DPU_ENC_RC_EVENT_KICKOFF
);
1167 DPU_ERROR_ENC(dpu_enc
, "dpu resource control failed: %d\n",
1172 _dpu_encoder_virt_enable_helper(drm_enc
);
1174 dpu_enc
->enabled
= true;
1177 mutex_unlock(&dpu_enc
->enc_lock
);
1180 static void dpu_encoder_virt_disable(struct drm_encoder
*drm_enc
)
1182 struct dpu_encoder_virt
*dpu_enc
= NULL
;
1183 struct msm_drm_private
*priv
;
1184 struct dpu_kms
*dpu_kms
;
1188 DPU_ERROR("invalid encoder\n");
1190 } else if (!drm_enc
->dev
) {
1191 DPU_ERROR("invalid dev\n");
1195 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1196 DPU_DEBUG_ENC(dpu_enc
, "\n");
1198 mutex_lock(&dpu_enc
->enc_lock
);
1199 dpu_enc
->enabled
= false;
1201 priv
= drm_enc
->dev
->dev_private
;
1202 dpu_kms
= to_dpu_kms(priv
->kms
);
1204 trace_dpu_enc_disable(DRMID(drm_enc
));
1207 dpu_encoder_wait_for_event(drm_enc
, MSM_ENC_TX_COMPLETE
);
1209 dpu_encoder_resource_control(drm_enc
, DPU_ENC_RC_EVENT_PRE_STOP
);
1211 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1212 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
1214 if (phys
->ops
.disable
)
1215 phys
->ops
.disable(phys
);
1218 /* after phys waits for frame-done, should be no more frames pending */
1219 if (atomic_xchg(&dpu_enc
->frame_done_timeout_ms
, 0)) {
1220 DPU_ERROR("enc%d timeout pending\n", drm_enc
->base
.id
);
1221 del_timer_sync(&dpu_enc
->frame_done_timer
);
1224 dpu_encoder_resource_control(drm_enc
, DPU_ENC_RC_EVENT_STOP
);
1226 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1227 dpu_enc
->phys_encs
[i
]->connector
= NULL
;
1230 DPU_DEBUG_ENC(dpu_enc
, "encoder disabled\n");
1232 dpu_rm_release(&dpu_kms
->rm
, drm_enc
);
1234 mutex_unlock(&dpu_enc
->enc_lock
);
1237 static enum dpu_intf
dpu_encoder_get_intf(struct dpu_mdss_cfg
*catalog
,
1238 enum dpu_intf_type type
, u32 controller_id
)
1242 for (i
= 0; i
< catalog
->intf_count
; i
++) {
1243 if (catalog
->intf
[i
].type
== type
1244 && catalog
->intf
[i
].controller_id
== controller_id
) {
1245 return catalog
->intf
[i
].id
;
1252 static void dpu_encoder_vblank_callback(struct drm_encoder
*drm_enc
,
1253 struct dpu_encoder_phys
*phy_enc
)
1255 struct dpu_encoder_virt
*dpu_enc
= NULL
;
1256 unsigned long lock_flags
;
1258 if (!drm_enc
|| !phy_enc
)
1261 DPU_ATRACE_BEGIN("encoder_vblank_callback");
1262 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1264 spin_lock_irqsave(&dpu_enc
->enc_spinlock
, lock_flags
);
1266 dpu_crtc_vblank_callback(dpu_enc
->crtc
);
1267 spin_unlock_irqrestore(&dpu_enc
->enc_spinlock
, lock_flags
);
1269 atomic_inc(&phy_enc
->vsync_cnt
);
1270 DPU_ATRACE_END("encoder_vblank_callback");
1273 static void dpu_encoder_underrun_callback(struct drm_encoder
*drm_enc
,
1274 struct dpu_encoder_phys
*phy_enc
)
1279 DPU_ATRACE_BEGIN("encoder_underrun_callback");
1280 atomic_inc(&phy_enc
->underrun_cnt
);
1281 trace_dpu_enc_underrun_cb(DRMID(drm_enc
),
1282 atomic_read(&phy_enc
->underrun_cnt
));
1283 DPU_ATRACE_END("encoder_underrun_callback");
1286 void dpu_encoder_assign_crtc(struct drm_encoder
*drm_enc
, struct drm_crtc
*crtc
)
1288 struct dpu_encoder_virt
*dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1289 unsigned long lock_flags
;
1291 spin_lock_irqsave(&dpu_enc
->enc_spinlock
, lock_flags
);
1292 /* crtc should always be cleared before re-assigning */
1293 WARN_ON(crtc
&& dpu_enc
->crtc
);
1294 dpu_enc
->crtc
= crtc
;
1295 spin_unlock_irqrestore(&dpu_enc
->enc_spinlock
, lock_flags
);
1298 void dpu_encoder_toggle_vblank_for_crtc(struct drm_encoder
*drm_enc
,
1299 struct drm_crtc
*crtc
, bool enable
)
1301 struct dpu_encoder_virt
*dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1302 unsigned long lock_flags
;
1305 trace_dpu_enc_vblank_cb(DRMID(drm_enc
), enable
);
1307 spin_lock_irqsave(&dpu_enc
->enc_spinlock
, lock_flags
);
1308 if (dpu_enc
->crtc
!= crtc
) {
1309 spin_unlock_irqrestore(&dpu_enc
->enc_spinlock
, lock_flags
);
1312 spin_unlock_irqrestore(&dpu_enc
->enc_spinlock
, lock_flags
);
1314 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1315 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
1317 if (phys
->ops
.control_vblank_irq
)
1318 phys
->ops
.control_vblank_irq(phys
, enable
);
1322 void dpu_encoder_register_frame_event_callback(struct drm_encoder
*drm_enc
,
1323 void (*frame_event_cb
)(void *, u32 event
),
1324 void *frame_event_cb_data
)
1326 struct dpu_encoder_virt
*dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1327 unsigned long lock_flags
;
1330 enable
= frame_event_cb
? true : false;
1333 DPU_ERROR("invalid encoder\n");
1336 trace_dpu_enc_frame_event_cb(DRMID(drm_enc
), enable
);
1338 spin_lock_irqsave(&dpu_enc
->enc_spinlock
, lock_flags
);
1339 dpu_enc
->crtc_frame_event_cb
= frame_event_cb
;
1340 dpu_enc
->crtc_frame_event_cb_data
= frame_event_cb_data
;
1341 spin_unlock_irqrestore(&dpu_enc
->enc_spinlock
, lock_flags
);
1344 static void dpu_encoder_frame_done_callback(
1345 struct drm_encoder
*drm_enc
,
1346 struct dpu_encoder_phys
*ready_phys
, u32 event
)
1348 struct dpu_encoder_virt
*dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1351 if (event
& (DPU_ENCODER_FRAME_EVENT_DONE
1352 | DPU_ENCODER_FRAME_EVENT_ERROR
1353 | DPU_ENCODER_FRAME_EVENT_PANEL_DEAD
)) {
1355 if (!dpu_enc
->frame_busy_mask
[0]) {
1357 * suppress frame_done without waiter,
1358 * likely autorefresh
1360 trace_dpu_enc_frame_done_cb_not_busy(DRMID(drm_enc
),
1361 event
, ready_phys
->intf_idx
);
1365 /* One of the physical encoders has become idle */
1366 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1367 if (dpu_enc
->phys_encs
[i
] == ready_phys
) {
1368 trace_dpu_enc_frame_done_cb(DRMID(drm_enc
), i
,
1369 dpu_enc
->frame_busy_mask
[0]);
1370 clear_bit(i
, dpu_enc
->frame_busy_mask
);
1374 if (!dpu_enc
->frame_busy_mask
[0]) {
1375 atomic_set(&dpu_enc
->frame_done_timeout_ms
, 0);
1376 del_timer(&dpu_enc
->frame_done_timer
);
1378 dpu_encoder_resource_control(drm_enc
,
1379 DPU_ENC_RC_EVENT_FRAME_DONE
);
1381 if (dpu_enc
->crtc_frame_event_cb
)
1382 dpu_enc
->crtc_frame_event_cb(
1383 dpu_enc
->crtc_frame_event_cb_data
,
1387 if (dpu_enc
->crtc_frame_event_cb
)
1388 dpu_enc
->crtc_frame_event_cb(
1389 dpu_enc
->crtc_frame_event_cb_data
, event
);
1393 static void dpu_encoder_off_work(struct work_struct
*work
)
1395 struct dpu_encoder_virt
*dpu_enc
= container_of(work
,
1396 struct dpu_encoder_virt
, delayed_off_work
.work
);
1399 DPU_ERROR("invalid dpu encoder\n");
1403 dpu_encoder_resource_control(&dpu_enc
->base
,
1404 DPU_ENC_RC_EVENT_ENTER_IDLE
);
1406 dpu_encoder_frame_done_callback(&dpu_enc
->base
, NULL
,
1407 DPU_ENCODER_FRAME_EVENT_IDLE
);
1411 * _dpu_encoder_trigger_flush - trigger flush for a physical encoder
1412 * drm_enc: Pointer to drm encoder structure
1413 * phys: Pointer to physical encoder structure
1414 * extra_flush_bits: Additional bit mask to include in flush trigger
1416 static void _dpu_encoder_trigger_flush(struct drm_encoder
*drm_enc
,
1417 struct dpu_encoder_phys
*phys
, uint32_t extra_flush_bits
)
1419 struct dpu_hw_ctl
*ctl
;
1420 int pending_kickoff_cnt
;
1424 DPU_ERROR("invalid pingpong hw\n");
1429 if (!ctl
->ops
.trigger_flush
) {
1430 DPU_ERROR("missing trigger cb\n");
1434 pending_kickoff_cnt
= dpu_encoder_phys_inc_pending(phys
);
1436 if (extra_flush_bits
&& ctl
->ops
.update_pending_flush
)
1437 ctl
->ops
.update_pending_flush(ctl
, extra_flush_bits
);
1439 ctl
->ops
.trigger_flush(ctl
);
1441 if (ctl
->ops
.get_pending_flush
)
1442 ret
= ctl
->ops
.get_pending_flush(ctl
);
1444 trace_dpu_enc_trigger_flush(DRMID(drm_enc
), phys
->intf_idx
,
1445 pending_kickoff_cnt
, ctl
->idx
,
1446 extra_flush_bits
, ret
);
1450 * _dpu_encoder_trigger_start - trigger start for a physical encoder
1451 * phys: Pointer to physical encoder structure
1453 static void _dpu_encoder_trigger_start(struct dpu_encoder_phys
*phys
)
1456 DPU_ERROR("invalid argument(s)\n");
1461 DPU_ERROR("invalid pingpong hw\n");
1465 if (phys
->ops
.trigger_start
&& phys
->enable_state
!= DPU_ENC_DISABLED
)
1466 phys
->ops
.trigger_start(phys
);
1469 void dpu_encoder_helper_trigger_start(struct dpu_encoder_phys
*phys_enc
)
1471 struct dpu_hw_ctl
*ctl
;
1473 ctl
= phys_enc
->hw_ctl
;
1474 if (ctl
->ops
.trigger_start
) {
1475 ctl
->ops
.trigger_start(ctl
);
1476 trace_dpu_enc_trigger_start(DRMID(phys_enc
->parent
), ctl
->idx
);
1480 static int dpu_encoder_helper_wait_event_timeout(
1483 struct dpu_encoder_wait_info
*info
)
1486 s64 expected_time
= ktime_to_ms(ktime_get()) + info
->timeout_ms
;
1487 s64 jiffies
= msecs_to_jiffies(info
->timeout_ms
);
1491 rc
= wait_event_timeout(*(info
->wq
),
1492 atomic_read(info
->atomic_cnt
) == 0, jiffies
);
1493 time
= ktime_to_ms(ktime_get());
1495 trace_dpu_enc_wait_event_timeout(drm_id
, hw_id
, rc
, time
,
1497 atomic_read(info
->atomic_cnt
));
1498 /* If we timed out, counter is valid and time is less, wait again */
1499 } while (atomic_read(info
->atomic_cnt
) && (rc
== 0) &&
1500 (time
< expected_time
));
1505 static void dpu_encoder_helper_hw_reset(struct dpu_encoder_phys
*phys_enc
)
1507 struct dpu_encoder_virt
*dpu_enc
;
1508 struct dpu_hw_ctl
*ctl
;
1511 dpu_enc
= to_dpu_encoder_virt(phys_enc
->parent
);
1512 ctl
= phys_enc
->hw_ctl
;
1514 if (!ctl
->ops
.reset
)
1517 DRM_DEBUG_KMS("id:%u ctl %d reset\n", DRMID(phys_enc
->parent
),
1520 rc
= ctl
->ops
.reset(ctl
);
1522 DPU_ERROR_ENC(dpu_enc
, "ctl %d reset failure\n", ctl
->idx
);
1524 phys_enc
->enable_state
= DPU_ENC_ENABLED
;
1528 * _dpu_encoder_kickoff_phys - handle physical encoder kickoff
1529 * Iterate through the physical encoders and perform consolidated flush
1530 * and/or control start triggering as needed. This is done in the virtual
1531 * encoder rather than the individual physical ones in order to handle
1532 * use cases that require visibility into multiple physical encoders at
1534 * dpu_enc: Pointer to virtual encoder structure
1536 static void _dpu_encoder_kickoff_phys(struct dpu_encoder_virt
*dpu_enc
)
1538 struct dpu_hw_ctl
*ctl
;
1539 uint32_t i
, pending_flush
;
1540 unsigned long lock_flags
;
1542 pending_flush
= 0x0;
1544 /* update pending counts and trigger kickoff ctl flush atomically */
1545 spin_lock_irqsave(&dpu_enc
->enc_spinlock
, lock_flags
);
1547 /* don't perform flush/start operations for slave encoders */
1548 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1549 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
1551 if (phys
->enable_state
== DPU_ENC_DISABLED
)
1557 * This is cleared in frame_done worker, which isn't invoked
1558 * for async commits. So don't set this for async, since it'll
1559 * roll over to the next commit.
1561 if (phys
->split_role
!= ENC_ROLE_SLAVE
)
1562 set_bit(i
, dpu_enc
->frame_busy_mask
);
1564 if (!phys
->ops
.needs_single_flush
||
1565 !phys
->ops
.needs_single_flush(phys
))
1566 _dpu_encoder_trigger_flush(&dpu_enc
->base
, phys
, 0x0);
1567 else if (ctl
->ops
.get_pending_flush
)
1568 pending_flush
|= ctl
->ops
.get_pending_flush(ctl
);
1571 /* for split flush, combine pending flush masks and send to master */
1572 if (pending_flush
&& dpu_enc
->cur_master
) {
1573 _dpu_encoder_trigger_flush(
1575 dpu_enc
->cur_master
,
1579 _dpu_encoder_trigger_start(dpu_enc
->cur_master
);
1581 spin_unlock_irqrestore(&dpu_enc
->enc_spinlock
, lock_flags
);
1584 void dpu_encoder_trigger_kickoff_pending(struct drm_encoder
*drm_enc
)
1586 struct dpu_encoder_virt
*dpu_enc
;
1587 struct dpu_encoder_phys
*phys
;
1589 struct dpu_hw_ctl
*ctl
;
1590 struct msm_display_info
*disp_info
;
1593 DPU_ERROR("invalid encoder\n");
1596 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1597 disp_info
= &dpu_enc
->disp_info
;
1599 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1600 phys
= dpu_enc
->phys_encs
[i
];
1603 if (ctl
->ops
.clear_pending_flush
)
1604 ctl
->ops
.clear_pending_flush(ctl
);
1606 /* update only for command mode primary ctl */
1607 if ((phys
== dpu_enc
->cur_master
) &&
1608 (disp_info
->capabilities
& MSM_DISPLAY_CAP_CMD_MODE
)
1609 && ctl
->ops
.trigger_pending
)
1610 ctl
->ops
.trigger_pending(ctl
);
1614 static u32
_dpu_encoder_calculate_linetime(struct dpu_encoder_virt
*dpu_enc
,
1615 struct drm_display_mode
*mode
)
1622 * For linetime calculation, only operate on master encoder.
1624 if (!dpu_enc
->cur_master
)
1627 if (!dpu_enc
->cur_master
->ops
.get_line_count
) {
1628 DPU_ERROR("get_line_count function not defined\n");
1632 pclk_rate
= mode
->clock
; /* pixel clock in kHz */
1633 if (pclk_rate
== 0) {
1634 DPU_ERROR("pclk is 0, cannot calculate line time\n");
1638 pclk_period
= DIV_ROUND_UP_ULL(1000000000ull, pclk_rate
);
1639 if (pclk_period
== 0) {
1640 DPU_ERROR("pclk period is 0\n");
1645 * Line time calculation based on Pixel clock and HTOTAL.
1646 * Final unit is in ns.
1648 line_time
= (pclk_period
* mode
->htotal
) / 1000;
1649 if (line_time
== 0) {
1650 DPU_ERROR("line time calculation is 0\n");
1654 DPU_DEBUG_ENC(dpu_enc
,
1655 "clk_rate=%lldkHz, clk_period=%d, linetime=%dns\n",
1656 pclk_rate
, pclk_period
, line_time
);
1661 int dpu_encoder_vsync_time(struct drm_encoder
*drm_enc
, ktime_t
*wakeup_time
)
1663 struct drm_display_mode
*mode
;
1664 struct dpu_encoder_virt
*dpu_enc
;
1667 u32 vtotal
, time_to_vsync
;
1670 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1672 if (!drm_enc
->crtc
|| !drm_enc
->crtc
->state
) {
1673 DPU_ERROR("crtc/crtc state object is NULL\n");
1676 mode
= &drm_enc
->crtc
->state
->adjusted_mode
;
1678 line_time
= _dpu_encoder_calculate_linetime(dpu_enc
, mode
);
1682 cur_line
= dpu_enc
->cur_master
->ops
.get_line_count(dpu_enc
->cur_master
);
1684 vtotal
= mode
->vtotal
;
1685 if (cur_line
>= vtotal
)
1686 time_to_vsync
= line_time
* vtotal
;
1688 time_to_vsync
= line_time
* (vtotal
- cur_line
);
1690 if (time_to_vsync
== 0) {
1691 DPU_ERROR("time to vsync should not be zero, vtotal=%d\n",
1696 cur_time
= ktime_get();
1697 *wakeup_time
= ktime_add_ns(cur_time
, time_to_vsync
);
1699 DPU_DEBUG_ENC(dpu_enc
,
1700 "cur_line=%u vtotal=%u time_to_vsync=%u, cur_time=%lld, wakeup_time=%lld\n",
1701 cur_line
, vtotal
, time_to_vsync
,
1702 ktime_to_ms(cur_time
),
1703 ktime_to_ms(*wakeup_time
));
1707 static void dpu_encoder_vsync_event_handler(struct timer_list
*t
)
1709 struct dpu_encoder_virt
*dpu_enc
= from_timer(dpu_enc
, t
,
1711 struct drm_encoder
*drm_enc
= &dpu_enc
->base
;
1712 struct msm_drm_private
*priv
;
1713 struct msm_drm_thread
*event_thread
;
1715 if (!drm_enc
->dev
|| !drm_enc
->crtc
) {
1716 DPU_ERROR("invalid parameters\n");
1720 priv
= drm_enc
->dev
->dev_private
;
1722 if (drm_enc
->crtc
->index
>= ARRAY_SIZE(priv
->event_thread
)) {
1723 DPU_ERROR("invalid crtc index\n");
1726 event_thread
= &priv
->event_thread
[drm_enc
->crtc
->index
];
1727 if (!event_thread
) {
1728 DPU_ERROR("event_thread not found for crtc:%d\n",
1729 drm_enc
->crtc
->index
);
1733 del_timer(&dpu_enc
->vsync_event_timer
);
1736 static void dpu_encoder_vsync_event_work_handler(struct kthread_work
*work
)
1738 struct dpu_encoder_virt
*dpu_enc
= container_of(work
,
1739 struct dpu_encoder_virt
, vsync_event_work
);
1740 ktime_t wakeup_time
;
1743 DPU_ERROR("invalid dpu encoder\n");
1747 if (dpu_encoder_vsync_time(&dpu_enc
->base
, &wakeup_time
))
1750 trace_dpu_enc_vsync_event_work(DRMID(&dpu_enc
->base
), wakeup_time
);
1751 mod_timer(&dpu_enc
->vsync_event_timer
,
1752 nsecs_to_jiffies(ktime_to_ns(wakeup_time
)));
1755 void dpu_encoder_prepare_for_kickoff(struct drm_encoder
*drm_enc
)
1757 struct dpu_encoder_virt
*dpu_enc
;
1758 struct dpu_encoder_phys
*phys
;
1759 bool needs_hw_reset
= false;
1762 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1764 trace_dpu_enc_prepare_kickoff(DRMID(drm_enc
));
1766 /* prepare for next kickoff, may include waiting on previous kickoff */
1767 DPU_ATRACE_BEGIN("enc_prepare_for_kickoff");
1768 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1769 phys
= dpu_enc
->phys_encs
[i
];
1770 if (phys
->ops
.prepare_for_kickoff
)
1771 phys
->ops
.prepare_for_kickoff(phys
);
1772 if (phys
->enable_state
== DPU_ENC_ERR_NEEDS_HW_RESET
)
1773 needs_hw_reset
= true;
1775 DPU_ATRACE_END("enc_prepare_for_kickoff");
1777 dpu_encoder_resource_control(drm_enc
, DPU_ENC_RC_EVENT_KICKOFF
);
1779 /* if any phys needs reset, reset all phys, in-order */
1780 if (needs_hw_reset
) {
1781 trace_dpu_enc_prepare_kickoff_reset(DRMID(drm_enc
));
1782 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1783 dpu_encoder_helper_hw_reset(dpu_enc
->phys_encs
[i
]);
1788 void dpu_encoder_kickoff(struct drm_encoder
*drm_enc
)
1790 struct dpu_encoder_virt
*dpu_enc
;
1791 struct dpu_encoder_phys
*phys
;
1792 ktime_t wakeup_time
;
1793 unsigned long timeout_ms
;
1796 DPU_ATRACE_BEGIN("encoder_kickoff");
1797 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1799 trace_dpu_enc_kickoff(DRMID(drm_enc
));
1801 timeout_ms
= DPU_ENCODER_FRAME_DONE_TIMEOUT_FRAMES
* 1000 /
1802 drm_mode_vrefresh(&drm_enc
->crtc
->state
->adjusted_mode
);
1804 atomic_set(&dpu_enc
->frame_done_timeout_ms
, timeout_ms
);
1805 mod_timer(&dpu_enc
->frame_done_timer
,
1806 jiffies
+ msecs_to_jiffies(timeout_ms
));
1808 /* All phys encs are ready to go, trigger the kickoff */
1809 _dpu_encoder_kickoff_phys(dpu_enc
);
1811 /* allow phys encs to handle any post-kickoff business */
1812 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1813 phys
= dpu_enc
->phys_encs
[i
];
1814 if (phys
->ops
.handle_post_kickoff
)
1815 phys
->ops
.handle_post_kickoff(phys
);
1818 if (dpu_enc
->disp_info
.intf_type
== DRM_MODE_ENCODER_DSI
&&
1819 !dpu_encoder_vsync_time(drm_enc
, &wakeup_time
)) {
1820 trace_dpu_enc_early_kickoff(DRMID(drm_enc
),
1821 ktime_to_ms(wakeup_time
));
1822 mod_timer(&dpu_enc
->vsync_event_timer
,
1823 nsecs_to_jiffies(ktime_to_ns(wakeup_time
)));
1826 DPU_ATRACE_END("encoder_kickoff");
1829 void dpu_encoder_prepare_commit(struct drm_encoder
*drm_enc
)
1831 struct dpu_encoder_virt
*dpu_enc
;
1832 struct dpu_encoder_phys
*phys
;
1836 DPU_ERROR("invalid encoder\n");
1839 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1841 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1842 phys
= dpu_enc
->phys_encs
[i
];
1843 if (phys
->ops
.prepare_commit
)
1844 phys
->ops
.prepare_commit(phys
);
1848 #ifdef CONFIG_DEBUG_FS
1849 static int _dpu_encoder_status_show(struct seq_file
*s
, void *data
)
1851 struct dpu_encoder_virt
*dpu_enc
= s
->private;
1854 mutex_lock(&dpu_enc
->enc_lock
);
1855 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
1856 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
1858 seq_printf(s
, "intf:%d vsync:%8d underrun:%8d ",
1859 phys
->intf_idx
- INTF_0
,
1860 atomic_read(&phys
->vsync_cnt
),
1861 atomic_read(&phys
->underrun_cnt
));
1863 switch (phys
->intf_mode
) {
1864 case INTF_MODE_VIDEO
:
1865 seq_puts(s
, "mode: video\n");
1868 seq_puts(s
, "mode: command\n");
1871 seq_puts(s
, "mode: ???\n");
1875 mutex_unlock(&dpu_enc
->enc_lock
);
1880 static int _dpu_encoder_debugfs_status_open(struct inode
*inode
,
1883 return single_open(file
, _dpu_encoder_status_show
, inode
->i_private
);
1886 static int _dpu_encoder_init_debugfs(struct drm_encoder
*drm_enc
)
1888 struct dpu_encoder_virt
*dpu_enc
= to_dpu_encoder_virt(drm_enc
);
1891 static const struct file_operations debugfs_status_fops
= {
1892 .open
= _dpu_encoder_debugfs_status_open
,
1894 .llseek
= seq_lseek
,
1895 .release
= single_release
,
1898 char name
[DPU_NAME_SIZE
];
1900 if (!drm_enc
->dev
) {
1901 DPU_ERROR("invalid encoder or kms\n");
1905 snprintf(name
, DPU_NAME_SIZE
, "encoder%u", drm_enc
->base
.id
);
1907 /* create overall sub-directory for the encoder */
1908 dpu_enc
->debugfs_root
= debugfs_create_dir(name
,
1909 drm_enc
->dev
->primary
->debugfs_root
);
1911 /* don't error check these */
1912 debugfs_create_file("status", 0600,
1913 dpu_enc
->debugfs_root
, dpu_enc
, &debugfs_status_fops
);
1915 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++)
1916 if (dpu_enc
->phys_encs
[i
]->ops
.late_register
)
1917 dpu_enc
->phys_encs
[i
]->ops
.late_register(
1918 dpu_enc
->phys_encs
[i
],
1919 dpu_enc
->debugfs_root
);
1924 static int _dpu_encoder_init_debugfs(struct drm_encoder
*drm_enc
)
1930 static int dpu_encoder_late_register(struct drm_encoder
*encoder
)
1932 return _dpu_encoder_init_debugfs(encoder
);
1935 static void dpu_encoder_early_unregister(struct drm_encoder
*encoder
)
1937 struct dpu_encoder_virt
*dpu_enc
= to_dpu_encoder_virt(encoder
);
1939 debugfs_remove_recursive(dpu_enc
->debugfs_root
);
1942 static int dpu_encoder_virt_add_phys_encs(
1944 struct dpu_encoder_virt
*dpu_enc
,
1945 struct dpu_enc_phys_init_params
*params
)
1947 struct dpu_encoder_phys
*enc
= NULL
;
1949 DPU_DEBUG_ENC(dpu_enc
, "\n");
1952 * We may create up to NUM_PHYS_ENCODER_TYPES physical encoder types
1953 * in this function, check up-front.
1955 if (dpu_enc
->num_phys_encs
+ NUM_PHYS_ENCODER_TYPES
>=
1956 ARRAY_SIZE(dpu_enc
->phys_encs
)) {
1957 DPU_ERROR_ENC(dpu_enc
, "too many physical encoders %d\n",
1958 dpu_enc
->num_phys_encs
);
1962 if (display_caps
& MSM_DISPLAY_CAP_VID_MODE
) {
1963 enc
= dpu_encoder_phys_vid_init(params
);
1965 if (IS_ERR_OR_NULL(enc
)) {
1966 DPU_ERROR_ENC(dpu_enc
, "failed to init vid enc: %ld\n",
1968 return enc
== 0 ? -EINVAL
: PTR_ERR(enc
);
1971 dpu_enc
->phys_encs
[dpu_enc
->num_phys_encs
] = enc
;
1972 ++dpu_enc
->num_phys_encs
;
1975 if (display_caps
& MSM_DISPLAY_CAP_CMD_MODE
) {
1976 enc
= dpu_encoder_phys_cmd_init(params
);
1978 if (IS_ERR_OR_NULL(enc
)) {
1979 DPU_ERROR_ENC(dpu_enc
, "failed to init cmd enc: %ld\n",
1981 return enc
== 0 ? -EINVAL
: PTR_ERR(enc
);
1984 dpu_enc
->phys_encs
[dpu_enc
->num_phys_encs
] = enc
;
1985 ++dpu_enc
->num_phys_encs
;
1988 if (params
->split_role
== ENC_ROLE_SLAVE
)
1989 dpu_enc
->cur_slave
= enc
;
1991 dpu_enc
->cur_master
= enc
;
1996 static const struct dpu_encoder_virt_ops dpu_encoder_parent_ops
= {
1997 .handle_vblank_virt
= dpu_encoder_vblank_callback
,
1998 .handle_underrun_virt
= dpu_encoder_underrun_callback
,
1999 .handle_frame_done
= dpu_encoder_frame_done_callback
,
2002 static int dpu_encoder_setup_display(struct dpu_encoder_virt
*dpu_enc
,
2003 struct dpu_kms
*dpu_kms
,
2004 struct msm_display_info
*disp_info
)
2008 enum dpu_intf_type intf_type
;
2009 struct dpu_enc_phys_init_params phys_params
;
2012 DPU_ERROR("invalid arg(s), enc %d\n", dpu_enc
!= 0);
2016 dpu_enc
->cur_master
= NULL
;
2018 memset(&phys_params
, 0, sizeof(phys_params
));
2019 phys_params
.dpu_kms
= dpu_kms
;
2020 phys_params
.parent
= &dpu_enc
->base
;
2021 phys_params
.parent_ops
= &dpu_encoder_parent_ops
;
2022 phys_params
.enc_spinlock
= &dpu_enc
->enc_spinlock
;
2026 switch (disp_info
->intf_type
) {
2027 case DRM_MODE_ENCODER_DSI
:
2028 intf_type
= INTF_DSI
;
2031 DPU_ERROR_ENC(dpu_enc
, "unsupported display interface type\n");
2035 WARN_ON(disp_info
->num_of_h_tiles
< 1);
2037 DPU_DEBUG("dsi_info->num_of_h_tiles %d\n", disp_info
->num_of_h_tiles
);
2039 if ((disp_info
->capabilities
& MSM_DISPLAY_CAP_CMD_MODE
) ||
2040 (disp_info
->capabilities
& MSM_DISPLAY_CAP_VID_MODE
))
2041 dpu_enc
->idle_pc_supported
=
2042 dpu_kms
->catalog
->caps
->has_idle_pc
;
2044 mutex_lock(&dpu_enc
->enc_lock
);
2045 for (i
= 0; i
< disp_info
->num_of_h_tiles
&& !ret
; i
++) {
2047 * Left-most tile is at index 0, content is controller id
2048 * h_tile_instance_ids[2] = {0, 1}; DSI0 = left, DSI1 = right
2049 * h_tile_instance_ids[2] = {1, 0}; DSI1 = left, DSI0 = right
2051 u32 controller_id
= disp_info
->h_tile_instance
[i
];
2053 if (disp_info
->num_of_h_tiles
> 1) {
2055 phys_params
.split_role
= ENC_ROLE_MASTER
;
2057 phys_params
.split_role
= ENC_ROLE_SLAVE
;
2059 phys_params
.split_role
= ENC_ROLE_SOLO
;
2062 DPU_DEBUG("h_tile_instance %d = %d, split_role %d\n",
2063 i
, controller_id
, phys_params
.split_role
);
2065 phys_params
.intf_idx
= dpu_encoder_get_intf(dpu_kms
->catalog
,
2068 if (phys_params
.intf_idx
== INTF_MAX
) {
2069 DPU_ERROR_ENC(dpu_enc
, "could not get intf: type %d, id %d\n",
2070 intf_type
, controller_id
);
2075 ret
= dpu_encoder_virt_add_phys_encs(disp_info
->capabilities
,
2079 DPU_ERROR_ENC(dpu_enc
, "failed to add phys encs\n");
2083 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
2084 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
2085 atomic_set(&phys
->vsync_cnt
, 0);
2086 atomic_set(&phys
->underrun_cnt
, 0);
2088 mutex_unlock(&dpu_enc
->enc_lock
);
2093 static void dpu_encoder_frame_done_timeout(struct timer_list
*t
)
2095 struct dpu_encoder_virt
*dpu_enc
= from_timer(dpu_enc
, t
,
2097 struct drm_encoder
*drm_enc
= &dpu_enc
->base
;
2100 if (!drm_enc
->dev
) {
2101 DPU_ERROR("invalid parameters\n");
2105 if (!dpu_enc
->frame_busy_mask
[0] || !dpu_enc
->crtc_frame_event_cb
) {
2106 DRM_DEBUG_KMS("id:%u invalid timeout frame_busy_mask=%lu\n",
2107 DRMID(drm_enc
), dpu_enc
->frame_busy_mask
[0]);
2109 } else if (!atomic_xchg(&dpu_enc
->frame_done_timeout_ms
, 0)) {
2110 DRM_DEBUG_KMS("id:%u invalid timeout\n", DRMID(drm_enc
));
2114 DPU_ERROR_ENC(dpu_enc
, "frame done timeout\n");
2116 event
= DPU_ENCODER_FRAME_EVENT_ERROR
;
2117 trace_dpu_enc_frame_done_timeout(DRMID(drm_enc
), event
);
2118 dpu_enc
->crtc_frame_event_cb(dpu_enc
->crtc_frame_event_cb_data
, event
);
2121 static const struct drm_encoder_helper_funcs dpu_encoder_helper_funcs
= {
2122 .mode_set
= dpu_encoder_virt_mode_set
,
2123 .disable
= dpu_encoder_virt_disable
,
2124 .enable
= dpu_kms_encoder_enable
,
2125 .atomic_check
= dpu_encoder_virt_atomic_check
,
2127 /* This is called by dpu_kms_encoder_enable */
2128 .commit
= dpu_encoder_virt_enable
,
2131 static const struct drm_encoder_funcs dpu_encoder_funcs
= {
2132 .destroy
= dpu_encoder_destroy
,
2133 .late_register
= dpu_encoder_late_register
,
2134 .early_unregister
= dpu_encoder_early_unregister
,
2137 int dpu_encoder_setup(struct drm_device
*dev
, struct drm_encoder
*enc
,
2138 struct msm_display_info
*disp_info
)
2140 struct msm_drm_private
*priv
= dev
->dev_private
;
2141 struct dpu_kms
*dpu_kms
= to_dpu_kms(priv
->kms
);
2142 struct drm_encoder
*drm_enc
= NULL
;
2143 struct dpu_encoder_virt
*dpu_enc
= NULL
;
2146 dpu_enc
= to_dpu_encoder_virt(enc
);
2148 mutex_init(&dpu_enc
->enc_lock
);
2149 ret
= dpu_encoder_setup_display(dpu_enc
, dpu_kms
, disp_info
);
2153 atomic_set(&dpu_enc
->frame_done_timeout_ms
, 0);
2154 timer_setup(&dpu_enc
->frame_done_timer
,
2155 dpu_encoder_frame_done_timeout
, 0);
2157 if (disp_info
->intf_type
== DRM_MODE_ENCODER_DSI
)
2158 timer_setup(&dpu_enc
->vsync_event_timer
,
2159 dpu_encoder_vsync_event_handler
,
2163 mutex_init(&dpu_enc
->rc_lock
);
2164 INIT_DELAYED_WORK(&dpu_enc
->delayed_off_work
,
2165 dpu_encoder_off_work
);
2166 dpu_enc
->idle_timeout
= IDLE_TIMEOUT
;
2168 kthread_init_work(&dpu_enc
->vsync_event_work
,
2169 dpu_encoder_vsync_event_work_handler
);
2171 memcpy(&dpu_enc
->disp_info
, disp_info
, sizeof(*disp_info
));
2173 DPU_DEBUG_ENC(dpu_enc
, "created\n");
2178 DPU_ERROR("failed to create encoder\n");
2180 dpu_encoder_destroy(drm_enc
);
2187 struct drm_encoder
*dpu_encoder_init(struct drm_device
*dev
,
2190 struct dpu_encoder_virt
*dpu_enc
= NULL
;
2193 dpu_enc
= devm_kzalloc(dev
->dev
, sizeof(*dpu_enc
), GFP_KERNEL
);
2195 return ERR_PTR(ENOMEM
);
2197 rc
= drm_encoder_init(dev
, &dpu_enc
->base
, &dpu_encoder_funcs
,
2198 drm_enc_mode
, NULL
);
2200 devm_kfree(dev
->dev
, dpu_enc
);
2204 drm_encoder_helper_add(&dpu_enc
->base
, &dpu_encoder_helper_funcs
);
2206 spin_lock_init(&dpu_enc
->enc_spinlock
);
2207 dpu_enc
->enabled
= false;
2209 return &dpu_enc
->base
;
2212 int dpu_encoder_wait_for_event(struct drm_encoder
*drm_enc
,
2213 enum msm_event_wait event
)
2215 int (*fn_wait
)(struct dpu_encoder_phys
*phys_enc
) = NULL
;
2216 struct dpu_encoder_virt
*dpu_enc
= NULL
;
2220 DPU_ERROR("invalid encoder\n");
2223 dpu_enc
= to_dpu_encoder_virt(drm_enc
);
2224 DPU_DEBUG_ENC(dpu_enc
, "\n");
2226 for (i
= 0; i
< dpu_enc
->num_phys_encs
; i
++) {
2227 struct dpu_encoder_phys
*phys
= dpu_enc
->phys_encs
[i
];
2230 case MSM_ENC_COMMIT_DONE
:
2231 fn_wait
= phys
->ops
.wait_for_commit_done
;
2233 case MSM_ENC_TX_COMPLETE
:
2234 fn_wait
= phys
->ops
.wait_for_tx_complete
;
2236 case MSM_ENC_VBLANK
:
2237 fn_wait
= phys
->ops
.wait_for_vblank
;
2240 DPU_ERROR_ENC(dpu_enc
, "unknown wait event %d\n",
2246 DPU_ATRACE_BEGIN("wait_for_completion_event");
2247 ret
= fn_wait(phys
);
2248 DPU_ATRACE_END("wait_for_completion_event");
2257 enum dpu_intf_mode
dpu_encoder_get_intf_mode(struct drm_encoder
*encoder
)
2259 struct dpu_encoder_virt
*dpu_enc
= NULL
;
2262 DPU_ERROR("invalid encoder\n");
2263 return INTF_MODE_NONE
;
2265 dpu_enc
= to_dpu_encoder_virt(encoder
);
2267 if (dpu_enc
->cur_master
)
2268 return dpu_enc
->cur_master
->intf_mode
;
2270 if (dpu_enc
->num_phys_encs
)
2271 return dpu_enc
->phys_encs
[0]->intf_mode
;
2273 return INTF_MODE_NONE
;