]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
clk: altera: n5x: Fix MEMCLKMGR_EXTCNTRST_C0CNTRST to bit(0)
authorDinesh Maniyam <dinesh.maniyam@intel.com>
Fri, 15 Dec 2023 07:15:19 +0000 (15:15 +0800)
committerTien Fong Chee <tien.fong.chee@intel.com>
Mon, 22 Jan 2024 08:51:17 +0000 (16:51 +0800)
MEMCLKMGR_EXTCNTRST_C0CNTRST register defined as BIT[0] in documentation
but it is wrongly defined as BIT[7] in u-boot code. This register is used
to hold associated pingpong counter in reset
while PLL and 5:1 mux configuration is changed.

Signed-off-by: Dinesh Maniyam <dinesh.maniyam@intel.com>
Reviewed-by: Tien Fong Chee <tien.fong.chee@intel.com>
drivers/clk/altera/clk-mem-n5x.h

index 7b687012e8f5830bf3aade281207b45d1591f8b6..c6bc44bb34c8ad524893a59dcd1aca63a4c2e263 100644 (file)
@@ -1,6 +1,6 @@
 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
 /*
- * Copyright (C) 2020-2022 Intel Corporation <www.intel.com>
+ * Copyright (C) 2020-2023 Intel Corporation <www.intel.com>
  */
 
 #ifndef        _CLK_MEM_N5X_
@@ -77,7 +77,7 @@
 #define MEMCLKMGR_PLLOUTDIV_C0CNT_MASK                 GENMASK(4, 0)
 #define MEMCLKMGR_PLLOUTDIV_C0CNT_OFFSET               0
 
-#define MEMCLKMGR_EXTCNTRST_C0CNTRST                   BIT(7)
+#define MEMCLKMGR_EXTCNTRST_C0CNTRST                   BIT(0)
 #define MEMCLKMGR_EXTCNTRST_ALLCNTRST                  \
        (MEMCLKMGR_EXTCNTRST_C0CNTRST)