soundwire: qcom: check for outanding writes before doing a read
[platform/kernel/linux-starfive.git] / drivers / soundwire / qcom.c
index 8f1a1eb..cee2b22 100644 (file)
@@ -380,6 +380,12 @@ static int qcom_swrm_cmd_fifo_rd_cmd(struct qcom_swrm_ctrl *swrm,
 
        val = swrm_get_packed_reg_val(&swrm->rcmd_id, len, dev_addr, reg_addr);
 
+       /*
+        * Check for outstanding cmd wrt. write fifo depth to avoid
+        * overflow as read will also increase write fifo cnt.
+        */
+       swrm_wait_for_wr_fifo_avail(swrm);
+
        /* wait for FIFO RD to complete to avoid overflow */
        usleep_range(100, 105);
        swrm->reg_write(swrm, SWRM_CMD_FIFO_RD_CMD, val);