]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/bridge/sii8620: add delay during cbus reset
authorAndrzej Hajda <a.hajda@samsung.com>
Wed, 1 Feb 2017 07:47:43 +0000 (08:47 +0100)
committerArchit Taneja <architt@codeaurora.org>
Thu, 2 Feb 2017 09:45:27 +0000 (15:15 +0530)
Without delay CBUS sometimes was not reset properly.

Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Archit Taneja <architt@codeaurora.org>
Link: http://patchwork.freedesktop.org/patch/msgid/1485935272-17337-17-git-send-email-a.hajda@samsung.com
drivers/gpu/drm/bridge/sil-sii8620.c

index a27ce5493323dc0ffbea58d02616c7c95c7204a8..1be9c89290c45b595a22a269a181b621ea7afd94 100644 (file)
@@ -892,11 +892,10 @@ static void sii8620_hw_reset(struct sii8620 *ctx)
 
 static void sii8620_cbus_reset(struct sii8620 *ctx)
 {
-       sii8620_write_seq_static(ctx,
-               REG_PWD_SRST, BIT_PWD_SRST_CBUS_RST
-                       | BIT_PWD_SRST_CBUS_RST_SW_EN,
-               REG_PWD_SRST, BIT_PWD_SRST_CBUS_RST_SW_EN
-       );
+       sii8620_write(ctx, REG_PWD_SRST, BIT_PWD_SRST_CBUS_RST
+                     | BIT_PWD_SRST_CBUS_RST_SW_EN);
+       usleep_range(10000, 20000);
+       sii8620_write(ctx, REG_PWD_SRST, BIT_PWD_SRST_CBUS_RST_SW_EN);
 }
 
 static void sii8620_set_auto_zone(struct sii8620 *ctx)