diff mbox series

clk: sunxi-ng: v3s: Fix TCON reset de-assert bit

Message ID 20190122081619.27653-1-paul.kocialkowski@bootlin.com (mailing list archive)
State Mainlined, archived
Commit 5c59801f7018acba11b12de59017a3fcdcf7421d
Headers show
Series clk: sunxi-ng: v3s: Fix TCON reset de-assert bit | expand

Commit Message

Paul Kocialkowski Jan. 22, 2019, 8:16 a.m. UTC
According to the datasheet and the reference code from Allwinner, the
bit used to de-assert the TCON reset is bit 4, not bit 3.

Fix it in the V3s CCU driver.

Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
---
 drivers/clk/sunxi-ng/ccu-sun8i-v3s.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Maxime Ripard Jan. 22, 2019, 9:03 a.m. UTC | #1
On Tue, Jan 22, 2019 at 09:16:19AM +0100, Paul Kocialkowski wrote:
> According to the datasheet and the reference code from Allwinner, the
> bit used to de-assert the TCON reset is bit 4, not bit 3.
> 
> Fix it in the V3s CCU driver.
> 
> Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>

Applied, thanks!
Maxime
diff mbox series

Patch

diff --git a/drivers/clk/sunxi-ng/ccu-sun8i-v3s.c b/drivers/clk/sunxi-ng/ccu-sun8i-v3s.c
index 621b1cd996db..ac12f261f8ca 100644
--- a/drivers/clk/sunxi-ng/ccu-sun8i-v3s.c
+++ b/drivers/clk/sunxi-ng/ccu-sun8i-v3s.c
@@ -542,7 +542,7 @@  static struct ccu_reset_map sun8i_v3s_ccu_resets[] = {
 	[RST_BUS_OHCI0]		=  { 0x2c0, BIT(29) },
 
 	[RST_BUS_VE]		=  { 0x2c4, BIT(0) },
-	[RST_BUS_TCON0]		=  { 0x2c4, BIT(3) },
+	[RST_BUS_TCON0]		=  { 0x2c4, BIT(4) },
 	[RST_BUS_CSI]		=  { 0x2c4, BIT(8) },
 	[RST_BUS_DE]		=  { 0x2c4, BIT(12) },
 	[RST_BUS_DBG]		=  { 0x2c4, BIT(31) },