]> git.sur5r.net Git - u-boot/commitdiff
ddr: altera: Clean up scc_mgr_initialize()
authorMarek Vasut <marex@denx.de>
Mon, 20 Jul 2015 05:16:42 +0000 (07:16 +0200)
committerMarek Vasut <marex@denx.de>
Sat, 8 Aug 2015 12:14:12 +0000 (14:14 +0200)
Clean up the comments and add kerneldoc. No functional change.

Signed-off-by: Marek Vasut <marex@denx.de>
drivers/ddr/altera/sequencer.c

index d0d0e6aa989b512c9552f1037129fbd99a4b7be0..4bdc3a759971e69efd7aa2a7be123838a3f18344 100644 (file)
@@ -265,15 +265,21 @@ static void scc_mgr_set(u32 off, u32 grp, u32 val)
        writel(val, SDR_PHYGRP_SCCGRP_ADDRESS | off | (grp << 2));
 }
 
+/**
+ * scc_mgr_initialize() - Initialize SCC Manager registers
+ *
+ * Initialize SCC Manager registers.
+ */
 static void scc_mgr_initialize(void)
 {
        /*
-        * Clear register file for HPS
-        * 16 (2^4) is the size of the full register file in the scc mgr:
-        *      RFILE_DEPTH = log2(MEM_DQ_PER_DQS + 1 + MEM_DM_PER_DQS +
-        *                         MEM_IF_READ_DQS_WIDTH - 1) + 1;
+        * Clear register file for HPS. 16 (2^4) is the size of the
+        * full register file in the scc mgr:
+        *      RFILE_DEPTH = 1 + log2(MEM_DQ_PER_DQS + 1 + MEM_DM_PER_DQS +
+        *                             MEM_IF_READ_DQS_WIDTH - 1);
         */
        int i;
+
        for (i = 0; i < 16; i++) {
                debug_cond(DLEVEL == 1, "%s:%d: Clearing SCC RFILE index %u\n",
                           __func__, __LINE__, i);