1 Index: linux-2.6.23/arch/mips/Kconfig
2 ===================================================================
3 --- linux-2.6.23.orig/arch/mips/Kconfig 2007-10-13 02:23:41.484492317 +0200
4 +++ linux-2.6.23/arch/mips/Kconfig 2007-10-13 02:47:02.784347843 +0200
9 - select MIPS_CPU_SCACHE
10 select PCI_GT64XXX_PCI0
13 @@ -1281,13 +1280,6 @@
18 -# Support for a MIPS32 / MIPS64 style S-caches
20 -config MIPS_CPU_SCACHE
24 config R5000_CPU_SCACHE
27 Index: linux-2.6.23/arch/mips/kernel/cpu-probe.c
28 ===================================================================
29 --- linux-2.6.23.orig/arch/mips/kernel/cpu-probe.c 2007-10-13 02:23:11.210767122 +0200
30 +++ linux-2.6.23/arch/mips/kernel/cpu-probe.c 2007-10-13 02:47:02.788348072 +0200
34 c->cputype = CPU_25KF;
35 + /* Probe for L2 cache */
36 + c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
40 Index: linux-2.6.23/arch/mips/mm/c-r4k.c
41 ===================================================================
42 --- linux-2.6.23.orig/arch/mips/mm/c-r4k.c 2007-10-09 22:31:38.000000000 +0200
43 +++ linux-2.6.23/arch/mips/mm/c-r4k.c 2007-10-13 02:47:02.792348301 +0200
46 extern int r5k_sc_init(void);
47 extern int rm7k_sc_init(void);
48 -extern int mips_sc_init(void);
50 static void __init setup_scache(void)
52 @@ -1140,29 +1139,17 @@
56 - if (c->isa_level == MIPS_CPU_ISA_M32R1 ||
57 - c->isa_level == MIPS_CPU_ISA_M32R2 ||
58 - c->isa_level == MIPS_CPU_ISA_M64R1 ||
59 - c->isa_level == MIPS_CPU_ISA_M64R2) {
60 -#ifdef CONFIG_MIPS_CPU_SCACHE
61 - if (mips_sc_init ()) {
62 - scache_size = c->scache.ways * c->scache.sets * c->scache.linesz;
63 - printk("MIPS secondary cache %ldkB, %s, linesize %d bytes.\n",
65 - way_string[c->scache.ways], c->scache.linesz);
68 - if (!(c->scache.flags & MIPS_CACHE_NOT_PRESENT))
69 - panic("Dunno how to handle MIPS32 / MIPS64 second level cache");
79 + if ((c->isa_level == MIPS_CPU_ISA_M32R1 ||
80 + c->isa_level == MIPS_CPU_ISA_M64R1) &&
81 + !(c->scache.flags & MIPS_CACHE_NOT_PRESENT))
82 + panic("Dunno how to handle MIPS32 / MIPS64 second level cache");
84 /* compute a couple of other cache variables */
85 c->scache.waysize = scache_size / c->scache.ways;
87 Index: linux-2.6.23/arch/mips/mm/Makefile
88 ===================================================================
89 --- linux-2.6.23.orig/arch/mips/mm/Makefile 2007-10-09 22:31:38.000000000 +0200
90 +++ linux-2.6.23/arch/mips/mm/Makefile 2007-10-13 02:47:23.393522295 +0200
92 obj-$(CONFIG_IP22_CPU_SCACHE) += sc-ip22.o
93 obj-$(CONFIG_R5000_CPU_SCACHE) += sc-r5k.o
94 obj-$(CONFIG_RM7000_CPU_SCACHE) += sc-rm7k.o
95 -obj-$(CONFIG_MIPS_CPU_SCACHE) += sc-mips.o
97 EXTRA_CFLAGS += -Werror