Module Name:    src
Committed By:   simonb
Date:           Sun Jun 14 12:02:07 UTC 2020

Modified Files:
        src/sys/arch/mips/mips: cache.c

Log Message:
Adjust previous - move consolidated debug printfs _after_ core specific
overrides, not before them.


To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 src/sys/arch/mips/mips/cache.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/mips/mips/cache.c
diff -u src/sys/arch/mips/mips/cache.c:1.63 src/sys/arch/mips/mips/cache.c:1.64
--- src/sys/arch/mips/mips/cache.c:1.63	Sun Jun 14 09:55:37 2020
+++ src/sys/arch/mips/mips/cache.c	Sun Jun 14 12:02:07 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: cache.c,v 1.63 2020/06/14 09:55:37 simonb Exp $	*/
+/*	$NetBSD: cache.c,v 1.64 2020/06/14 12:02:07 simonb Exp $	*/
 
 /*
  * Copyright 2001, 2002 Wasabi Systems, Inc.
@@ -68,7 +68,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cache.c,v 1.63 2020/06/14 09:55:37 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cache.c,v 1.64 2020/06/14 12:02:07 simonb Exp $");
 
 #include "opt_cputype.h"
 #include "opt_mips_cache.h"
@@ -1345,44 +1345,6 @@ mips_config_cache_modern(uint32_t cpu_id
 		}
 	}
 
-#define CACHE_DEBUG
-#ifdef CACHE_DEBUG
-	printf("MIPS32/64 params: cpu arch: %d\n", opts->mips_cpu_arch);
-	printf("MIPS32/64 params: TLB entries: %d\n", opts->mips_num_tlb_entries);
-	if (mci->mci_picache_line_size == 0) {
-		printf("MIPS32/64 params: no Icache\n");
-	} else {
-		printf("MIPS32/64 params: %s: line=%d, total=%d, "
-		    "ways=%d, sets=%d, colors=%d\n", "Icache",
-		    mci->mci_picache_line_size,
-		    mci->mci_picache_way_size * mci->mci_picache_ways,
-		    mci->mci_picache_ways,
-		    mci->mci_picache_way_size / mci->mci_picache_line_size,
-		    mci->mci_picache_way_size >> PAGE_SHIFT);
-	}
-	if (mci->mci_pdcache_line_size == 0) {
-		printf("MIPS32/64 params: no Dcache\n");
-	} else {
-		printf("MIPS32/64 params: %s: line=%d, total=%d, "
-		    "ways=%d, sets=%d, colors=%d\n", "Dcache",
-		    mci->mci_pdcache_line_size,
-		    mci->mci_pdcache_way_size * mci->mci_pdcache_ways,
-		    mci->mci_pdcache_ways,
-		    mci->mci_pdcache_way_size / mci->mci_pdcache_line_size,
-		    mci->mci_pdcache_way_size >> PAGE_SHIFT);
-	}
-	if (mci->mci_sdcache_line_size != 0) {
-		printf("MIPS32/64 params: %s: line=%d, total=%d, "
-		    "ways=%d, sets=%d, colors=%d\n", "SDcache",
-		    mci->mci_sdcache_line_size,
-		    mci->mci_sdcache_way_size * mci->mci_sdcache_ways,
-		    mci->mci_sdcache_ways,
-		    mci->mci_sdcache_way_size / mci->mci_sdcache_line_size,
-		    mci->mci_sdcache_way_size >> PAGE_SHIFT);
-	}
-#endif
-
-
         /*
          * calculate the alias masks and from them set to virtual alias flags.
          */
@@ -1442,6 +1404,43 @@ mips_config_cache_modern(uint32_t cpu_id
 		break;
 	}
 
+#define CACHE_DEBUG
+#ifdef CACHE_DEBUG
+	printf("MIPS32/64 params: cpu arch: %d\n", opts->mips_cpu_arch);
+	printf("MIPS32/64 params: TLB entries: %d\n", opts->mips_num_tlb_entries);
+	if (mci->mci_picache_line_size == 0) {
+		printf("MIPS32/64 params: no Icache\n");
+	} else {
+		printf("MIPS32/64 params: %s: line=%d, total=%d, "
+		    "ways=%d, sets=%d, colors=%d\n", "Icache",
+		    mci->mci_picache_line_size,
+		    mci->mci_picache_way_size * mci->mci_picache_ways,
+		    mci->mci_picache_ways,
+		    mci->mci_picache_way_size / mci->mci_picache_line_size,
+		    mci->mci_picache_way_size >> PAGE_SHIFT);
+	}
+	if (mci->mci_pdcache_line_size == 0) {
+		printf("MIPS32/64 params: no Dcache\n");
+	} else {
+		printf("MIPS32/64 params: %s: line=%d, total=%d, "
+		    "ways=%d, sets=%d, colors=%d\n", "Dcache",
+		    mci->mci_pdcache_line_size,
+		    mci->mci_pdcache_way_size * mci->mci_pdcache_ways,
+		    mci->mci_pdcache_ways,
+		    mci->mci_pdcache_way_size / mci->mci_pdcache_line_size,
+		    mci->mci_pdcache_way_size >> PAGE_SHIFT);
+	}
+	if (mci->mci_sdcache_line_size != 0) {
+		printf("MIPS32/64 params: %s: line=%d, total=%d, "
+		    "ways=%d, sets=%d, colors=%d\n", "SDcache",
+		    mci->mci_sdcache_line_size,
+		    mci->mci_sdcache_way_size * mci->mci_sdcache_ways,
+		    mci->mci_sdcache_ways,
+		    mci->mci_sdcache_way_size / mci->mci_sdcache_line_size,
+		    mci->mci_sdcache_way_size >> PAGE_SHIFT);
+	}
+#endif
+
 	mipsNN_cache_init(cfg, cfg1);
 
 	if (opts->mips_cpu_flags &

Reply via email to