Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Apr 2018 21:39:00 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r333039 - head/sys/arm64/rockchip/clk
Message-ID:  <201804262139.w3QLd0YP024838@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: manu
Date: Thu Apr 26 21:38:59 2018
New Revision: 333039
URL: https://svnweb.freebsd.org/changeset/base/333039

Log:
  arm64: rockchip: Rk3328 CRU Fix some offset for gates
  
  Some offset of some clock gates where wrong, correct them so we can
  use thoses clocks.
  
  Pointy Hat to:	me

Modified:
  head/sys/arm64/rockchip/clk/rk3328_cru.c

Modified: head/sys/arm64/rockchip/clk/rk3328_cru.c
==============================================================================
--- head/sys/arm64/rockchip/clk/rk3328_cru.c	Thu Apr 26 21:37:38 2018	(r333038)
+++ head/sys/arm64/rockchip/clk/rk3328_cru.c	Thu Apr 26 21:38:59 2018	(r333039)
@@ -175,7 +175,7 @@ static struct rk_clk_composite_def aclk_bus_pre = {
 	.div_shift = 8,
 	.div_width = 5,
 
-	.gate_offset = 0x232,
+	.gate_offset = 0x220,
 	.gate_shift = 0,
 
 	.flags = RK_CLK_COMPOSITE_HAVE_MUX | RK_CLK_COMPOSITE_HAVE_GATE,
@@ -199,7 +199,7 @@ static struct rk_clk_composite_def hclk_bus_pre = {
 	.div_shift = 8,
 	.div_width = 2,
 
-	.gate_offset = 0x232,
+	.gate_offset = 0x220,
 	.gate_shift = 1,
 
 	.flags = RK_CLK_COMPOSITE_HAVE_GATE,
@@ -218,7 +218,7 @@ static struct rk_clk_composite_def pclk_bus_pre = {
 	.div_shift = 12,
 	.div_width = 3,
 
-	.gate_offset = 0x232,
+	.gate_offset = 0x220,
 	.gate_shift = 2,
 
 	.flags = RK_CLK_COMPOSITE_HAVE_GATE,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804262139.w3QLd0YP024838>