#define CSI2RX_STREAM_BASE(n)          (((n) + 1) * 0x100)
 
 #define CSI2RX_STREAM_CTRL_REG(n)              (CSI2RX_STREAM_BASE(n) + 0x000)
+#define CSI2RX_STREAM_CTRL_SOFT_RST                    BIT(4)
 #define CSI2RX_STREAM_CTRL_START                       BIT(0)
 
 #define CSI2RX_STREAM_DATA_CFG_REG(n)          (CSI2RX_STREAM_BASE(n) + 0x008)
 
 static void csi2rx_reset(struct csi2rx_priv *csi2rx)
 {
+       unsigned int i;
+
+       /* Reset module */
        writel(CSI2RX_SOFT_RESET_PROTOCOL | CSI2RX_SOFT_RESET_FRONT,
               csi2rx->base + CSI2RX_SOFT_RESET_REG);
+       /* Reset individual streams. */
+       for (i = 0; i < csi2rx->max_streams; i++) {
+               writel(CSI2RX_STREAM_CTRL_SOFT_RST,
+                      csi2rx->base + CSI2RX_STREAM_CTRL_REG(i));
+       }
 
-       udelay(10);
+       usleep_range(10, 20);
 
+       /* Clear resets */
        writel(0, csi2rx->base + CSI2RX_SOFT_RESET_REG);
+       for (i = 0; i < csi2rx->max_streams; i++)
+               writel(0, csi2rx->base + CSI2RX_STREAM_CTRL_REG(i));
 }
 
 static int csi2rx_configure_ext_dphy(struct csi2rx_priv *csi2rx)