summaryrefslogtreecommitdiff
path: root/drivers/clk/rockchip/clk_rk322x.c
diff options
context:
space:
mode:
authorElaine Zhang <zhangqing@rock-chips.com>2017-12-19 13:22:38 +0300
committerPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>2018-01-09 13:13:32 +0300
commit538f67c33251187af6ddc3f9b1499e7f415e968a (patch)
tree82778f677cdbd89f210ec27a7fcbe7525b9f44e6 /drivers/clk/rockchip/clk_rk322x.c
parent760188c1aa5b8b474340d3e090b4adc9400c2238 (diff)
downloadu-boot-538f67c33251187af6ddc3f9b1499e7f415e968a.tar.xz
rockchip: clk: bind reset driver
Bind rockchip reset to clock-controller with rockchip_reset_bind(). Signed-off-by: Elaine Zhang <zhangqing@rock-chips.com> Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'drivers/clk/rockchip/clk_rk322x.c')
-rw-r--r--drivers/clk/rockchip/clk_rk322x.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/clk/rockchip/clk_rk322x.c b/drivers/clk/rockchip/clk_rk322x.c
index ff52b55229..c8a241355a 100644
--- a/drivers/clk/rockchip/clk_rk322x.c
+++ b/drivers/clk/rockchip/clk_rk322x.c
@@ -402,6 +402,13 @@ static int rk322x_clk_bind(struct udevice *dev)
sys_child->priv = priv;
}
+#if CONFIG_IS_ENABLED(CONFIG_RESET_ROCKCHIP)
+ ret = offsetof(struct rk322x_cru, cru_softrst_con[0]);
+ ret = rockchip_reset_bind(dev, ret, 9);
+ if (ret)
+ debug("Warning: software reset driver bind faile\n");
+#endif
+
return 0;
}