reset: socfpga: Poll for reset status after deassert reset
authorLey Foon Tan <ley.foon.tan@intel.com>
Fri, 10 Jan 2020 05:48:37 +0000 (13:48 +0800)
committerMarek Vasut <marex@denx.de>
Mon, 3 Feb 2020 08:26:14 +0000 (09:26 +0100)
In Cyclone 5 SoC platform, the first USB probing is failed but second
probing is success. DWC2 USB driver read gsnpsid register right after
de-assert reset, but controller is not ready yet and it returns gsnpsid 0.
Polling reset status after de-assert reset to solve the issue.

Retry with this fix more than 10 times without issue.

Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
drivers/reset/reset-socfpga.c

index 93ec9cfdb64a0c5f7cac0c712ff7117c1fbcd5c1..105ce94c71a3752e3af367a980a4bd5549c0f62a 100644 (file)
@@ -18,6 +18,7 @@
 #include <dm/of_access.h>
 #include <env.h>
 #include <reset-uclass.h>
+#include <wait_bit.h>
 #include <linux/bitops.h>
 #include <linux/io.h>
 #include <linux/sizes.h>
@@ -80,7 +81,10 @@ static int socfpga_reset_deassert(struct reset_ctl *reset_ctl)
        int offset = id % (reg_width * BITS_PER_BYTE);
 
        clrbits_le32(data->modrst_base + (bank * BANK_INCREMENT), BIT(offset));
-       return 0;
+
+       return wait_for_bit_le32(data->modrst_base + (bank * BANK_INCREMENT),
+                                BIT(offset),
+                                false, 500, false);
 }
 
 static int socfpga_reset_request(struct reset_ctl *reset_ctl)