ufshcd_clk_scaling_start_busy(hba);
        __set_bit(task_tag, &hba->outstanding_reqs);
        ufshcd_writel(hba, 1 << task_tag, REG_UTP_TRANSFER_REQ_DOOR_BELL);
+       /* Make sure that doorbell is committed immediately */
+       wmb();
 }
 
 /**
                clear_bit_unlock(tag, &hba->lrb_in_use);
                goto out;
        }
+       /* Make sure descriptors are ready before ringing the doorbell */
+       wmb();
 
        /* issue command to the controller */
        spin_lock_irqsave(hba->host->host_lock, flags);
        time_left = wait_for_completion_timeout(hba->dev_cmd.complete,
                        msecs_to_jiffies(max_timeout));
 
+       /* Make sure descriptors are ready before ringing the doorbell */
+       wmb();
        spin_lock_irqsave(hba->host->host_lock, flags);
        hba->dev_cmd.complete = NULL;
        if (likely(time_left)) {
        wmb();
 
        ufshcd_writel(hba, 1 << free_slot, REG_UTP_TASK_REQ_DOOR_BELL);
+       /* Make sure that doorbell is committed immediately */
+       wmb();
 
        spin_unlock_irqrestore(host->host_lock, flags);