| To: | linux-mips@linux-mips.org, ralf@linux-mips.org |
|---|---|
| Subject: | [PATCH 2.4] trivial secondary cache probe fix for R5000/NEVADA - v2 |
| From: | Brian Murphy <brm@murphy.dk> |
| Date: | Sun, 13 Apr 2003 22:48:16 +0200 |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
Hi Ralf,
How's this then?
/Brian
Index: arch/mips/mm/c-r4k.c
===================================================================
RCS file: /cvs/linux/arch/mips/mm/c-r4k.c,v
retrieving revision 1.3.2.37
diff -u -r1.3.2.37 c-r4k.c
--- arch/mips/mm/c-r4k.c 13 Apr 2003 00:10:30 -0000 1.3.2.37
+++ arch/mips/mm/c-r4k.c 13 Apr 2003 20:43:34 -0000
@@ -1000,6 +1000,14 @@
sc_present = probe_scache_kseg1(config);
break;
+ case CPU_R5000:
+ case CPU_NEVADA:
+ setup_noscache_funcs();
+#ifdef CONFIG_R5000_CPU_SCACHE
+ r5k_sc_init();
+#endif
+ return;
+
default:
sc_present = 0;
}
@@ -1014,17 +1022,7 @@
!(current_cpu_data.scache.flags & MIPS_CACHE_NOT_PRESENT))
panic("Dunno how to handle MIPS32 / MIPS64 second level cache");
- switch (current_cpu_data.cputype) {
- case CPU_R5000:
- case CPU_NEVADA:
- setup_noscache_funcs();
-#ifdef CONFIG_R5000_CPU_SCACHE
- r5k_sc_init();
-#endif
- break;
- default:
- setup_scache_funcs();
- }
+ setup_scache_funcs();
}
void __init ld_mmu_r4xx0(void)
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 2.4] trivial secondary cache probe fix for R5000/NEVADA, Ralf Baechle |
|---|---|
| Next by Date: | [PATCH] c-r4k.c, ilya |
| Previous by Thread: | [PATCH 2.4] trivial secondary cache probe fix for R5000/NEVADA, Brian Murphy |
| Next by Thread: | Re: [PATCH 2.4] trivial secondary cache probe fix for R5000/NEVADA - v2, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |