|
@@ -6701,6 +6701,7 @@ void ipa3_enable_clks(void)
|
|
|
|
|
|
idx = ipa3_get_bus_vote();
|
|
|
|
|
|
+ IPADBG_CLK("IPA ICC Voting for BW Started\n");
|
|
|
for (i = 0; i < ipa3_ctx->icc_num_paths; i++) {
|
|
|
if (ipa3_ctx->ctrl->icc_path[i] &&
|
|
|
icc_set_bw(
|
|
@@ -6708,8 +6709,13 @@ void ipa3_enable_clks(void)
|
|
|
ipa3_ctx->icc_clk[idx][i][IPA_ICC_AB],
|
|
|
ipa3_ctx->icc_clk[idx][i][IPA_ICC_IB]))
|
|
|
WARN(1, "path %d bus scaling failed", i);
|
|
|
+ IPADBG_CLK("IPA ICC Voting for BW %d Path Completed\n", i);
|
|
|
}
|
|
|
+ IPADBG_CLK("IPA ICC Voting for BW Finished\n");
|
|
|
+
|
|
|
+ IPADBG_CLK("Enabling IPA Clocks Started\n");
|
|
|
ipa3_ctx->ctrl->ipa3_enable_clks();
|
|
|
+ IPADBG_CLK("Enabling IPA Clocks Finished\n");
|
|
|
atomic_set(&ipa3_ctx->ipa_clk_vote, 1);
|
|
|
}
|
|
|
|
|
@@ -6765,10 +6771,13 @@ void ipa3_disable_clks(void)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ IPADBG_CLK("Disabling IPA Clocks Started\n");
|
|
|
ipa3_ctx->ctrl->ipa3_disable_clks();
|
|
|
+ IPADBG_CLK("Disabling IPA Clocks Finished\n");
|
|
|
|
|
|
ipa_pm_set_clock_index(0);
|
|
|
|
|
|
+ IPADBG_CLK("IPA ICC Voting for BW Started\n");
|
|
|
for (i = 0; i < ipa3_ctx->icc_num_paths; i++) {
|
|
|
if (ipa3_ctx->ctrl->icc_path[i] &&
|
|
|
icc_set_bw(
|
|
@@ -6776,7 +6785,9 @@ void ipa3_disable_clks(void)
|
|
|
ipa3_ctx->icc_clk[IPA_ICC_NONE][i][IPA_ICC_AB],
|
|
|
ipa3_ctx->icc_clk[IPA_ICC_NONE][i][IPA_ICC_IB]))
|
|
|
WARN(1, "path %d bus off failed", i);
|
|
|
+ IPADBG_CLK("IPA ICC Voting for BW %d Path Completed\n", i);
|
|
|
}
|
|
|
+ IPADBG_CLK("IPA ICC Voting for BW Finished\n");
|
|
|
atomic_set(&ipa3_ctx->ipa_clk_vote, 0);
|
|
|
}
|
|
|
|
|
@@ -9088,6 +9099,10 @@ static int ipa3_pre_init(const struct ipa3_plat_drv_res *resource_p,
|
|
|
if (ipa3_ctx->logbuf == NULL)
|
|
|
IPADBG("failed to create IPC log, continue...\n");
|
|
|
|
|
|
+ ipa3_ctx->logbuf_clk = ipc_log_context_create(IPA_IPC_LOG_PAGES, "ipa_clk", 0);
|
|
|
+ if (ipa3_ctx->logbuf_clk == NULL)
|
|
|
+ IPADBG("failed to create IPC ipa_clk log, continue...\n");
|
|
|
+
|
|
|
/* ipa3_ctx->pdev and ipa3_ctx->uc_pdev will be set in the smmu probes*/
|
|
|
ipa3_ctx->master_pdev = ipa_pdev;
|
|
|
for (i = 0; i < IPA_SMMU_CB_MAX; i++)
|