|
@@ -4840,6 +4840,7 @@ void _ipa_disable_clks_v3_0(void)
|
|
|
void ipa3_disable_clks(void)
|
|
|
{
|
|
|
int i;
|
|
|
+ int type;
|
|
|
|
|
|
if (ipa3_ctx->ipa3_hw_mode != IPA_HW_MODE_NORMAL) {
|
|
|
IPAERR("not supported in this mode\n");
|
|
@@ -4854,6 +4855,17 @@ void ipa3_disable_clks(void)
|
|
|
*/
|
|
|
atomic_set(&ipa3_ctx->ipa_clk_vote, 0);
|
|
|
|
|
|
+ /*
|
|
|
+ * If there is still pending gsi irq, this indicate
|
|
|
+ * issue on GSI FW side. We need to capture before
|
|
|
+ * turn off the ipa clock.
|
|
|
+ */
|
|
|
+ type = gsi_pending_irq_type();
|
|
|
+ if (type) {
|
|
|
+ IPAERR("unexpected gsi irq type: %d\n", type);
|
|
|
+ ipa_assert();
|
|
|
+ }
|
|
|
+
|
|
|
ipa3_ctx->ctrl->ipa3_disable_clks();
|
|
|
|
|
|
ipa_pm_set_clock_index(0);
|