|
@@ -1502,7 +1502,7 @@ static int dsi_message_tx(struct dsi_ctrl *dsi_ctrl, struct dsi_cmd_desc *cmd_de
|
|
goto error;
|
|
goto error;
|
|
}
|
|
}
|
|
|
|
|
|
- SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, *flags);
|
|
|
|
|
|
+ SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, *flags, dsi_ctrl->cmd_len);
|
|
|
|
|
|
if (*flags & DSI_CTRL_CMD_NON_EMBEDDED_MODE) {
|
|
if (*flags & DSI_CTRL_CMD_NON_EMBEDDED_MODE) {
|
|
cmd_mem.offset = dsi_ctrl->cmd_buffer_iova;
|
|
cmd_mem.offset = dsi_ctrl->cmd_buffer_iova;
|
|
@@ -2952,7 +2952,10 @@ void dsi_ctrl_enable_status_interrupt(struct dsi_ctrl *dsi_ctrl,
|
|
intr_idx >= DSI_STATUS_INTERRUPT_COUNT)
|
|
intr_idx >= DSI_STATUS_INTERRUPT_COUNT)
|
|
return;
|
|
return;
|
|
|
|
|
|
- SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, intr_idx);
|
|
|
|
|
|
+ SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, intr_idx,
|
|
|
|
+ dsi_ctrl->irq_info.irq_num, dsi_ctrl->irq_info.irq_stat_mask,
|
|
|
|
+ dsi_ctrl->irq_info.irq_stat_refcount[intr_idx]);
|
|
|
|
+
|
|
spin_lock_irqsave(&dsi_ctrl->irq_info.irq_lock, flags);
|
|
spin_lock_irqsave(&dsi_ctrl->irq_info.irq_lock, flags);
|
|
|
|
|
|
if (dsi_ctrl->irq_info.irq_stat_refcount[intr_idx] == 0) {
|
|
if (dsi_ctrl->irq_info.irq_stat_refcount[intr_idx] == 0) {
|
|
@@ -2985,7 +2988,10 @@ void dsi_ctrl_disable_status_interrupt(struct dsi_ctrl *dsi_ctrl,
|
|
if (!dsi_ctrl || intr_idx >= DSI_STATUS_INTERRUPT_COUNT)
|
|
if (!dsi_ctrl || intr_idx >= DSI_STATUS_INTERRUPT_COUNT)
|
|
return;
|
|
return;
|
|
|
|
|
|
- SDE_EVT32_IRQ(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, intr_idx);
|
|
|
|
|
|
+ SDE_EVT32_IRQ(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, intr_idx,
|
|
|
|
+ dsi_ctrl->irq_info.irq_num, dsi_ctrl->irq_info.irq_stat_mask,
|
|
|
|
+ dsi_ctrl->irq_info.irq_stat_refcount[intr_idx]);
|
|
|
|
+
|
|
spin_lock_irqsave(&dsi_ctrl->irq_info.irq_lock, flags);
|
|
spin_lock_irqsave(&dsi_ctrl->irq_info.irq_lock, flags);
|
|
|
|
|
|
if (dsi_ctrl->irq_info.irq_stat_refcount[intr_idx])
|
|
if (dsi_ctrl->irq_info.irq_stat_refcount[intr_idx])
|