提交 174e8262 编写于 作者: L Lina Iyer 提交者: Greg Kroah-Hartman

drivers: qcom: rpmh-rsc: clear wait_for_compl after use

[ Upstream commit 09e97b6c8754c91470455e69ebd827b741f80af5 ]

The wait_for_compl register ensures the request sequence is maintained
when sending requests from the TCS. Clear the register after sending
active request and during invalidate of the sleep and wake TCS.
Reported-by: NRaju P.L.S.S.S.N <rplsssn@codeaurora.org>
Signed-off-by: NLina Iyer <ilina@codeaurora.org>
Signed-off-by: NAndy Gross <andy.gross@linaro.org>
Signed-off-by: NSasha Levin <sashal@kernel.org>
上级 09c8a33e
...@@ -121,6 +121,7 @@ static int tcs_invalidate(struct rsc_drv *drv, int type) ...@@ -121,6 +121,7 @@ static int tcs_invalidate(struct rsc_drv *drv, int type)
return -EAGAIN; return -EAGAIN;
} }
write_tcs_reg_sync(drv, RSC_DRV_CMD_ENABLE, m, 0); write_tcs_reg_sync(drv, RSC_DRV_CMD_ENABLE, m, 0);
write_tcs_reg_sync(drv, RSC_DRV_CMD_WAIT_FOR_CMPL, m, 0);
} }
bitmap_zero(tcs->slots, MAX_TCS_SLOTS); bitmap_zero(tcs->slots, MAX_TCS_SLOTS);
spin_unlock(&tcs->lock); spin_unlock(&tcs->lock);
...@@ -239,6 +240,7 @@ static irqreturn_t tcs_tx_done(int irq, void *p) ...@@ -239,6 +240,7 @@ static irqreturn_t tcs_tx_done(int irq, void *p)
skip: skip:
/* Reclaim the TCS */ /* Reclaim the TCS */
write_tcs_reg(drv, RSC_DRV_CMD_ENABLE, i, 0); write_tcs_reg(drv, RSC_DRV_CMD_ENABLE, i, 0);
write_tcs_reg(drv, RSC_DRV_CMD_WAIT_FOR_CMPL, i, 0);
write_tcs_reg(drv, RSC_DRV_IRQ_CLEAR, 0, BIT(i)); write_tcs_reg(drv, RSC_DRV_IRQ_CLEAR, 0, BIT(i));
spin_lock(&drv->lock); spin_lock(&drv->lock);
clear_bit(i, drv->tcs_in_use); clear_bit(i, drv->tcs_in_use);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册