1 Index: linux-2.6.23/arch/mips/kernel/genex.S
2 ===================================================================
3 --- linux-2.6.23.orig/arch/mips/kernel/genex.S 2007-10-13 11:29:46.219648163 +0200
4 +++ linux-2.6.23/arch/mips/kernel/genex.S 2007-10-13 11:29:49.619841933 +0200
6 NESTED(except_vec3_generic, 0, sp)
9 +#ifdef CONFIG_BCM947XX
13 #if R5432_CP0_INTERRUPT_WAR
16 Index: linux-2.6.23/arch/mips/mm/c-r4k.c
17 ===================================================================
18 --- linux-2.6.23.orig/arch/mips/mm/c-r4k.c 2007-10-13 11:29:46.227648623 +0200
19 +++ linux-2.6.23/arch/mips/mm/c-r4k.c 2007-10-13 11:29:49.619841933 +0200
21 #include <asm/cacheflush.h> /* for run_uncached() */
24 +/* For enabling BCM4710 cache workarounds */
28 * Special Variant of smp_call_function for use by cache functions:
32 unsigned long dc_lsize = cpu_dcache_line_size();
35 + r4k_blast_dcache_page = blast_dcache_page;
38 r4k_blast_dcache_page = (void *)cache_noop;
39 else if (dc_lsize == 16)
42 unsigned long dc_lsize = cpu_dcache_line_size();
45 + r4k_blast_dcache_page_indexed = blast_dcache_page_indexed;
48 r4k_blast_dcache_page_indexed = (void *)cache_noop;
49 else if (dc_lsize == 16)
52 unsigned long dc_lsize = cpu_dcache_line_size();
55 + r4k_blast_dcache = blast_dcache;
58 r4k_blast_dcache = (void *)cache_noop;
59 else if (dc_lsize == 16)
61 unsigned long addr = (unsigned long) arg;
63 R4600_HIT_CACHEOP_WAR_IMPL;
64 + BCM4710_PROTECTED_FILL_TLB(addr);
65 + BCM4710_PROTECTED_FILL_TLB(addr + 4);
67 protected_writeback_dcache_line(addr & ~(dc_lsize - 1));
68 if (!cpu_icache_snoops_remote_store && scache_size)
69 @@ -1198,6 +1212,17 @@
70 * silly idea of putting something else there ...
72 switch (current_cpu_data.cputype) {
76 + cm = read_c0_diag();
87 @@ -1228,6 +1253,15 @@
88 /* Default cache error handler for R4000 and R5000 family */
89 set_uncached_handler (0x100, &except_vec2_generic, 0x80);
91 + /* Check if special workarounds are required */
92 +#ifdef CONFIG_BCM947XX
93 + if (current_cpu_data.cputype == CPU_BCM4710 && (current_cpu_data.processor_id & 0xff) == 0) {
94 + printk("Enabling BCM4710A0 cache workarounds.\n");
103 @@ -1273,5 +1307,13 @@
106 local_r4k___flush_cache_all(NULL);
107 +#ifdef CONFIG_BCM947XX
109 + static void (*_coherency_setup)(void);
110 + _coherency_setup = (void (*)(void)) KSEG1ADDR(coherency_setup);
111 + _coherency_setup();
117 Index: linux-2.6.23/arch/mips/mm/tlbex.c
118 ===================================================================
119 --- linux-2.6.23.orig/arch/mips/mm/tlbex.c 2007-10-13 11:29:46.235649074 +0200
120 +++ linux-2.6.23/arch/mips/mm/tlbex.c 2007-10-13 11:35:46.076155216 +0200
121 @@ -1273,6 +1273,9 @@
122 /* No need for i_nop */
125 +#ifdef CONFIG_BCM947XX
129 build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */
131 @@ -1708,6 +1711,9 @@
132 struct reloc **r, unsigned int pte,
135 +#ifdef CONFIG_BCM947XX
139 build_get_pmde64(p, l, r, pte, ptr); /* get pmd in ptr */
141 Index: linux-2.6.23/include/asm-mips/r4kcache.h
142 ===================================================================
143 --- linux-2.6.23.orig/include/asm-mips/r4kcache.h 2007-10-13 11:29:46.255650214 +0200
144 +++ linux-2.6.23/include/asm-mips/r4kcache.h 2007-10-13 11:29:49.631842613 +0200
146 #include <asm/cpu-features.h>
147 #include <asm/mipsmtregs.h>
149 +#ifdef CONFIG_BCM947XX
150 +#include <asm/paccess.h>
151 +#include <linux/ssb/ssb.h>
152 +#define BCM4710_DUMMY_RREG() ((void) *((u8 *) KSEG1ADDR(SSB_ENUM_BASE + SSB_IMSTATE)))
154 +#define BCM4710_FILL_TLB(addr) (*(volatile unsigned long *)(addr))
155 +#define BCM4710_PROTECTED_FILL_TLB(addr) ({ unsigned long x; get_dbe(x, (volatile unsigned long *)(addr)); })
157 +#define BCM4710_DUMMY_RREG()
159 +#define BCM4710_FILL_TLB(addr)
160 +#define BCM4710_PROTECTED_FILL_TLB(addr)
164 * This macro return a properly sign-extended address suitable as base address
165 * for indexed cache operations. Two issues here:
167 static inline void flush_dcache_line_indexed(unsigned long addr)
170 + BCM4710_DUMMY_RREG();
171 cache_op(Index_Writeback_Inv_D, addr);
175 static inline void flush_dcache_line(unsigned long addr)
178 + BCM4710_DUMMY_RREG();
179 cache_op(Hit_Writeback_Inv_D, addr);
183 static inline void invalidate_dcache_line(unsigned long addr)
186 + BCM4710_DUMMY_RREG();
187 cache_op(Hit_Invalidate_D, addr);
192 static inline void protected_flush_icache_line(unsigned long addr)
194 + BCM4710_DUMMY_RREG();
195 protected_cache_op(Hit_Invalidate_I, addr);
200 static inline void protected_writeback_dcache_line(unsigned long addr)
202 + BCM4710_DUMMY_RREG();
203 protected_cache_op(Hit_Writeback_Inv_D, addr);
210 +static inline void blast_dcache(void)
212 + unsigned long start = KSEG0;
213 + unsigned long dcache_size = current_cpu_data.dcache.waysize * current_cpu_data.dcache.ways;
214 + unsigned long end = (start + dcache_size);
217 + BCM4710_DUMMY_RREG();
218 + cache_op(Index_Writeback_Inv_D, start);
219 + start += current_cpu_data.dcache.linesz;
220 + } while(start < end);
223 +static inline void blast_dcache_page(unsigned long page)
225 + unsigned long start = page;
226 + unsigned long end = start + PAGE_SIZE;
228 + BCM4710_FILL_TLB(start);
230 + BCM4710_DUMMY_RREG();
231 + cache_op(Hit_Writeback_Inv_D, start);
232 + start += current_cpu_data.dcache.linesz;
233 + } while(start < end);
236 +static inline void blast_dcache_page_indexed(unsigned long page)
238 + unsigned long start = page;
239 + unsigned long end = start + PAGE_SIZE;
240 + unsigned long ws_inc = 1UL << current_cpu_data.dcache.waybit;
241 + unsigned long ws_end = current_cpu_data.dcache.ways <<
242 + current_cpu_data.dcache.waybit;
243 + unsigned long ws, addr;
244 + for (ws = 0; ws < ws_end; ws += ws_inc) {
246 + for (addr = start; addr < end; addr += current_cpu_data.dcache.linesz) {
247 + BCM4710_DUMMY_RREG();
248 + cache_op(Index_Writeback_Inv_D, addr);
254 /* build blast_xxx, blast_xxx_page, blast_xxx_page_indexed */
255 -#define __BUILD_BLAST_CACHE(pfx, desc, indexop, hitop, lsize) \
256 +#define __BUILD_BLAST_CACHE(pfx, desc, indexop, hitop, lsize, war) \
257 static inline void blast_##pfx##cache##lsize(void) \
259 unsigned long start = INDEX_BASE; \
262 __##pfx##flush_prologue \
265 for (ws = 0; ws < ws_end; ws += ws_inc) \
266 for (addr = start; addr < end; addr += lsize * 32) \
267 cache##lsize##_unroll32(addr|ws,indexop); \
270 __##pfx##flush_prologue \
274 cache##lsize##_unroll32(start,hitop); \
275 start += lsize * 32; \
277 current_cpu_data.desc.waybit; \
278 unsigned long ws, addr; \
282 __##pfx##flush_prologue \
284 for (ws = 0; ws < ws_end; ws += ws_inc) \
285 @@ -393,28 +460,30 @@
286 __##pfx##flush_epilogue \
289 -__BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 16)
290 -__BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 16)
291 -__BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 16)
292 -__BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 32)
293 -__BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 32)
294 -__BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 32)
295 -__BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 64)
296 -__BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 64)
297 -__BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 128)
298 +__BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 16, )
299 +__BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 16, BCM4710_FILL_TLB(start);)
300 +__BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 16, )
301 +__BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 32, )
302 +__BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 32, BCM4710_FILL_TLB(start);)
303 +__BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 32, )
304 +__BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 64, BCM4710_FILL_TLB(start);)
305 +__BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 64, )
306 +__BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 128, )
308 /* build blast_xxx_range, protected_blast_xxx_range */
309 -#define __BUILD_BLAST_CACHE_RANGE(pfx, desc, hitop, prot) \
310 +#define __BUILD_BLAST_CACHE_RANGE(pfx, desc, hitop, prot, war, war2) \
311 static inline void prot##blast_##pfx##cache##_range(unsigned long start, \
314 unsigned long lsize = cpu_##desc##_line_size(); \
315 unsigned long addr = start & ~(lsize - 1); \
316 unsigned long aend = (end - 1) & ~(lsize - 1); \
319 __##pfx##flush_prologue \
323 prot##cache_op(hitop, addr); \
326 @@ -424,13 +493,13 @@
327 __##pfx##flush_epilogue \
330 -__BUILD_BLAST_CACHE_RANGE(d, dcache, Hit_Writeback_Inv_D, protected_)
331 -__BUILD_BLAST_CACHE_RANGE(s, scache, Hit_Writeback_Inv_SD, protected_)
332 -__BUILD_BLAST_CACHE_RANGE(i, icache, Hit_Invalidate_I, protected_)
333 -__BUILD_BLAST_CACHE_RANGE(d, dcache, Hit_Writeback_Inv_D, )
334 -__BUILD_BLAST_CACHE_RANGE(s, scache, Hit_Writeback_Inv_SD, )
335 +__BUILD_BLAST_CACHE_RANGE(d, dcache, Hit_Writeback_Inv_D, protected_, BCM4710_PROTECTED_FILL_TLB(addr); BCM4710_PROTECTED_FILL_TLB(aend);, BCM4710_DUMMY_RREG();)
336 +__BUILD_BLAST_CACHE_RANGE(s, scache, Hit_Writeback_Inv_SD, protected_,, )
337 +__BUILD_BLAST_CACHE_RANGE(i, icache, Hit_Invalidate_I, protected_,, )
338 +__BUILD_BLAST_CACHE_RANGE(d, dcache, Hit_Writeback_Inv_D,, BCM4710_FILL_TLB(addr); BCM4710_FILL_TLB(aend);, BCM4710_DUMMY_RREG();)
339 +__BUILD_BLAST_CACHE_RANGE(s, scache, Hit_Writeback_Inv_SD,,, )
340 /* blast_inv_dcache_range */
341 -__BUILD_BLAST_CACHE_RANGE(inv_d, dcache, Hit_Invalidate_D, )
342 -__BUILD_BLAST_CACHE_RANGE(inv_s, scache, Hit_Invalidate_SD, )
343 +__BUILD_BLAST_CACHE_RANGE(inv_d, dcache, Hit_Invalidate_D,,,BCM4710_DUMMY_RREG();)
344 +__BUILD_BLAST_CACHE_RANGE(inv_s, scache, Hit_Invalidate_SD,,, )
346 #endif /* _ASM_R4KCACHE_H */
347 Index: linux-2.6.23/include/asm-mips/stackframe.h
348 ===================================================================
349 --- linux-2.6.23.orig/include/asm-mips/stackframe.h 2007-10-13 11:29:46.263650671 +0200
350 +++ linux-2.6.23/include/asm-mips/stackframe.h 2007-10-13 11:33:38.504885346 +0200
352 .macro RESTORE_SP_AND_RET
353 LONG_L sp, PT_R29(sp)
355 +#ifdef CONFIG_BCM947XX