[U-Boot] [RFC 1/1] driver: ram: rockchip: rk3399: missing counter increment

Heinrich Schuchardt xypron.glpk at gmx.de
Sun Mar 18 11:10:55 UTC 2018


If we want to check the duration we need to increment the counter.

Signed-off-by: Heinrich Schuchardt <xypron.glpk at gmx.de>
---
I do not have the hardware for testing. But the current coding is
obviously flawed.
---
 drivers/ram/rockchip/sdram_rk3399.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/ram/rockchip/sdram_rk3399.c b/drivers/ram/rockchip/sdram_rk3399.c
index 76c1fe80a7..5cb470c209 100644
--- a/drivers/ram/rockchip/sdram_rk3399.c
+++ b/drivers/ram/rockchip/sdram_rk3399.c
@@ -1015,6 +1015,7 @@ static int switch_to_phy_index1(struct dram_info *dram,
 	writel(RK_CLRSETBITS(1 << 1, 1 << 1), &dram->cic->cic_ctrl0);
 	while (!(readl(&dram->cic->cic_status0) & (1 << 0))) {
 		mdelay(10);
+		i++;
 		if (i > 10) {
 			debug("index1 frequency done overtime\n");
 			return -ETIME;
-- 
2.16.2



More information about the U-Boot mailing list