Finally fix the annoying BCM4704 segfault issues (#2035) - tested with WL-500gP
[openwrt/svn-archive/archive.git] / target / linux / brcm47xx / patches-2.6.23 / 150-cpu_fixes.patch
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
5 @@ -51,6 +51,10 @@
6 NESTED(except_vec3_generic, 0, sp)
7 .set push
8 .set noat
9 +#ifdef CONFIG_BCM947XX
10 + nop
11 + nop
12 +#endif
13 #if R5432_CP0_INTERRUPT_WAR
14 mfc0 k0, CP0_INDEX
15 #endif
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
20 @@ -30,6 +30,9 @@
21 #include <asm/cacheflush.h> /* for run_uncached() */
22
23
24 +/* For enabling BCM4710 cache workarounds */
25 +int bcm4710 = 0;
26 +
27 /*
28 * Special Variant of smp_call_function for use by cache functions:
29 *
30 @@ -94,6 +97,9 @@
31 {
32 unsigned long dc_lsize = cpu_dcache_line_size();
33
34 + if (bcm4710)
35 + r4k_blast_dcache_page = blast_dcache_page;
36 + else
37 if (dc_lsize == 0)
38 r4k_blast_dcache_page = (void *)cache_noop;
39 else if (dc_lsize == 16)
40 @@ -108,6 +114,9 @@
41 {
42 unsigned long dc_lsize = cpu_dcache_line_size();
43
44 + if (bcm4710)
45 + r4k_blast_dcache_page_indexed = blast_dcache_page_indexed;
46 + else
47 if (dc_lsize == 0)
48 r4k_blast_dcache_page_indexed = (void *)cache_noop;
49 else if (dc_lsize == 16)
50 @@ -122,6 +131,9 @@
51 {
52 unsigned long dc_lsize = cpu_dcache_line_size();
53
54 + if (bcm4710)
55 + r4k_blast_dcache = blast_dcache;
56 + else
57 if (dc_lsize == 0)
58 r4k_blast_dcache = (void *)cache_noop;
59 else if (dc_lsize == 16)
60 @@ -623,6 +635,8 @@
61 unsigned long addr = (unsigned long) arg;
62
63 R4600_HIT_CACHEOP_WAR_IMPL;
64 + BCM4710_PROTECTED_FILL_TLB(addr);
65 + BCM4710_PROTECTED_FILL_TLB(addr + 4);
66 if (dc_lsize)
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 ...
71 */
72 switch (current_cpu_data.cputype) {
73 + case CPU_BCM3302:
74 + {
75 + u32 cm;
76 + cm = read_c0_diag();
77 + /* Enable icache */
78 + cm |= (1 << 31);
79 + /* Enable dcache */
80 + cm |= (1 << 30);
81 + write_c0_diag(cm);
82 + }
83 + break;
84 case CPU_R4000PC:
85 case CPU_R4000SC:
86 case CPU_R4000MC:
87 @@ -1228,6 +1253,15 @@
88 /* Default cache error handler for R4000 and R5000 family */
89 set_uncached_handler (0x100, &except_vec2_generic, 0x80);
90
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");
95 + bcm4710 = 1;
96 + } else
97 +#endif
98 + bcm4710 = 0;
99 +
100 probe_pcache();
101 setup_scache();
102
103 @@ -1273,5 +1307,13 @@
104 build_clear_page();
105 build_copy_page();
106 local_r4k___flush_cache_all(NULL);
107 +#ifdef CONFIG_BCM947XX
108 + {
109 + static void (*_coherency_setup)(void);
110 + _coherency_setup = (void (*)(void)) KSEG1ADDR(coherency_setup);
111 + _coherency_setup();
112 + }
113 +#else
114 coherency_setup();
115 +#endif
116 }
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 */
123 }
124
125 +#ifdef CONFIG_BCM947XX
126 + i_nop(&p);
127 +#endif
128 #ifdef CONFIG_64BIT
129 build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */
130 #else
131 @@ -1708,6 +1711,9 @@
132 struct reloc **r, unsigned int pte,
133 unsigned int ptr)
134 {
135 +#ifdef CONFIG_BCM947XX
136 + i_nop(p);
137 +#endif
138 #ifdef CONFIG_64BIT
139 build_get_pmde64(p, l, r, pte, ptr); /* get pmd in ptr */
140 #else
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
145 @@ -17,6 +17,20 @@
146 #include <asm/cpu-features.h>
147 #include <asm/mipsmtregs.h>
148
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)))
153 +
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)); })
156 +#else
157 +#define BCM4710_DUMMY_RREG()
158 +
159 +#define BCM4710_FILL_TLB(addr)
160 +#define BCM4710_PROTECTED_FILL_TLB(addr)
161 +#endif
162 +
163 /*
164 * This macro return a properly sign-extended address suitable as base address
165 * for indexed cache operations. Two issues here:
166 @@ -150,6 +164,7 @@
167 static inline void flush_dcache_line_indexed(unsigned long addr)
168 {
169 __dflush_prologue
170 + BCM4710_DUMMY_RREG();
171 cache_op(Index_Writeback_Inv_D, addr);
172 __dflush_epilogue
173 }
174 @@ -169,6 +184,7 @@
175 static inline void flush_dcache_line(unsigned long addr)
176 {
177 __dflush_prologue
178 + BCM4710_DUMMY_RREG();
179 cache_op(Hit_Writeback_Inv_D, addr);
180 __dflush_epilogue
181 }
182 @@ -176,6 +192,7 @@
183 static inline void invalidate_dcache_line(unsigned long addr)
184 {
185 __dflush_prologue
186 + BCM4710_DUMMY_RREG();
187 cache_op(Hit_Invalidate_D, addr);
188 __dflush_epilogue
189 }
190 @@ -208,6 +225,7 @@
191 */
192 static inline void protected_flush_icache_line(unsigned long addr)
193 {
194 + BCM4710_DUMMY_RREG();
195 protected_cache_op(Hit_Invalidate_I, addr);
196 }
197
198 @@ -219,6 +237,7 @@
199 */
200 static inline void protected_writeback_dcache_line(unsigned long addr)
201 {
202 + BCM4710_DUMMY_RREG();
203 protected_cache_op(Hit_Writeback_Inv_D, addr);
204 }
205
206 @@ -339,8 +358,52 @@
207 : "r" (base), \
208 "i" (op));
209
210 +static inline void blast_dcache(void)
211 +{
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);
215 +
216 + do {
217 + BCM4710_DUMMY_RREG();
218 + cache_op(Index_Writeback_Inv_D, start);
219 + start += current_cpu_data.dcache.linesz;
220 + } while(start < end);
221 +}
222 +
223 +static inline void blast_dcache_page(unsigned long page)
224 +{
225 + unsigned long start = page;
226 + unsigned long end = start + PAGE_SIZE;
227 +
228 + BCM4710_FILL_TLB(start);
229 + do {
230 + BCM4710_DUMMY_RREG();
231 + cache_op(Hit_Writeback_Inv_D, start);
232 + start += current_cpu_data.dcache.linesz;
233 + } while(start < end);
234 +}
235 +
236 +static inline void blast_dcache_page_indexed(unsigned long page)
237 +{
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) {
245 + start = page + ws;
246 + for (addr = start; addr < end; addr += current_cpu_data.dcache.linesz) {
247 + BCM4710_DUMMY_RREG();
248 + cache_op(Index_Writeback_Inv_D, addr);
249 + }
250 + }
251 +}
252 +
253 +
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) \
258 { \
259 unsigned long start = INDEX_BASE; \
260 @@ -352,6 +415,7 @@
261 \
262 __##pfx##flush_prologue \
263 \
264 + war \
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); \
268 @@ -366,6 +430,7 @@
269 \
270 __##pfx##flush_prologue \
271 \
272 + war \
273 do { \
274 cache##lsize##_unroll32(start,hitop); \
275 start += lsize * 32; \
276 @@ -384,6 +449,8 @@
277 current_cpu_data.desc.waybit; \
278 unsigned long ws, addr; \
279 \
280 + war \
281 + \
282 __##pfx##flush_prologue \
283 \
284 for (ws = 0; ws < ws_end; ws += ws_inc) \
285 @@ -393,28 +460,30 @@
286 __##pfx##flush_epilogue \
287 }
288
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, )
307
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, \
312 unsigned long end) \
313 { \
314 unsigned long lsize = cpu_##desc##_line_size(); \
315 unsigned long addr = start & ~(lsize - 1); \
316 unsigned long aend = (end - 1) & ~(lsize - 1); \
317 + war \
318 \
319 __##pfx##flush_prologue \
320 \
321 while (1) { \
322 + war2 \
323 prot##cache_op(hitop, addr); \
324 if (addr == aend) \
325 break; \
326 @@ -424,13 +493,13 @@
327 __##pfx##flush_epilogue \
328 }
329
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,,, )
345
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
351 @@ -350,6 +350,10 @@
352 .macro RESTORE_SP_AND_RET
353 LONG_L sp, PT_R29(sp)
354 .set mips3
355 +#ifdef CONFIG_BCM947XX
356 + nop
357 + nop
358 +#endif
359 eret
360 .set mips0
361 .endm