diff options
Diffstat (limited to 'include/asm-mips/r4kcache.h')
| -rw-r--r-- | include/asm-mips/r4kcache.h | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/include/asm-mips/r4kcache.h b/include/asm-mips/r4kcache.h index 2f2eb95387f6..3c8e3c8d1a9a 100644 --- a/include/asm-mips/r4kcache.h +++ b/include/asm-mips/r4kcache.h | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #include <asm/asm.h> | 15 | #include <asm/asm.h> |
| 16 | #include <asm/cacheops.h> | 16 | #include <asm/cacheops.h> |
| 17 | #include <asm/cpu-features.h> | 17 | #include <asm/cpu-features.h> |
| 18 | #include <asm/mipsmtregs.h> | ||
| 18 | 19 | ||
| 19 | /* | 20 | /* |
| 20 | * This macro return a properly sign-extended address suitable as base address | 21 | * This macro return a properly sign-extended address suitable as base address |
| @@ -39,14 +40,118 @@ | |||
| 39 | : \ | 40 | : \ |
| 40 | : "i" (op), "R" (*(unsigned char *)(addr))) | 41 | : "i" (op), "R" (*(unsigned char *)(addr))) |
| 41 | 42 | ||
| 43 | #ifdef CONFIG_MIPS_MT | ||
| 44 | /* | ||
| 45 | * Temporary hacks for SMTC debug. Optionally force single-threaded | ||
| 46 | * execution during I-cache flushes. | ||
| 47 | */ | ||
| 48 | |||
| 49 | #define PROTECT_CACHE_FLUSHES 1 | ||
| 50 | |||
| 51 | #ifdef PROTECT_CACHE_FLUSHES | ||
| 52 | |||
| 53 | extern int mt_protiflush; | ||
| 54 | extern int mt_protdflush; | ||
| 55 | extern void mt_cflush_lockdown(void); | ||
| 56 | extern void mt_cflush_release(void); | ||
| 57 | |||
| 58 | #define BEGIN_MT_IPROT \ | ||
| 59 | unsigned long flags = 0; \ | ||
| 60 | unsigned long mtflags = 0; \ | ||
| 61 | if(mt_protiflush) { \ | ||
| 62 | local_irq_save(flags); \ | ||
| 63 | ehb(); \ | ||
| 64 | mtflags = dvpe(); \ | ||
| 65 | mt_cflush_lockdown(); \ | ||
| 66 | } | ||
| 67 | |||
| 68 | #define END_MT_IPROT \ | ||
| 69 | if(mt_protiflush) { \ | ||
| 70 | mt_cflush_release(); \ | ||
| 71 | evpe(mtflags); \ | ||
| 72 | local_irq_restore(flags); \ | ||
| 73 | } | ||
| 74 | |||
| 75 | #define BEGIN_MT_DPROT \ | ||
| 76 | unsigned long flags = 0; \ | ||
| 77 | unsigned long mtflags = 0; \ | ||
| 78 | if(mt_protdflush) { \ | ||
| 79 | local_irq_save(flags); \ | ||
| 80 | ehb(); \ | ||
| 81 | mtflags = dvpe(); \ | ||
| 82 | mt_cflush_lockdown(); \ | ||
| 83 | } | ||
| 84 | |||
| 85 | #define END_MT_DPROT \ | ||
| 86 | if(mt_protdflush) { \ | ||
| 87 | mt_cflush_release(); \ | ||
| 88 | evpe(mtflags); \ | ||
| 89 | local_irq_restore(flags); \ | ||
| 90 | } | ||
| 91 | |||
| 92 | #else | ||
| 93 | |||
| 94 | #define BEGIN_MT_IPROT | ||
| 95 | #define BEGIN_MT_DPROT | ||
| 96 | #define END_MT_IPROT | ||
| 97 | #define END_MT_DPROT | ||
| 98 | |||
| 99 | #endif /* PROTECT_CACHE_FLUSHES */ | ||
| 100 | |||
| 101 | #define __iflush_prologue \ | ||
| 102 | unsigned long redundance; \ | ||
| 103 | extern int mt_n_iflushes; \ | ||
| 104 | BEGIN_MT_IPROT \ | ||
| 105 | for (redundance = 0; redundance < mt_n_iflushes; redundance++) { | ||
| 106 | |||
| 107 | #define __iflush_epilogue \ | ||
| 108 | END_MT_IPROT \ | ||
| 109 | } | ||
| 110 | |||
| 111 | #define __dflush_prologue \ | ||
| 112 | unsigned long redundance; \ | ||
| 113 | extern int mt_n_dflushes; \ | ||
| 114 | BEGIN_MT_DPROT \ | ||
| 115 | for (redundance = 0; redundance < mt_n_dflushes; redundance++) { | ||
| 116 | |||
| 117 | #define __dflush_epilogue \ | ||
| 118 | END_MT_DPROT \ | ||
| 119 | } | ||
| 120 | |||
| 121 | #define __inv_dflush_prologue __dflush_prologue | ||
| 122 | #define __inv_dflush_epilogue __dflush_epilogue | ||
| 123 | #define __sflush_prologue { | ||
| 124 | #define __sflush_epilogue } | ||
| 125 | #define __inv_sflush_prologue __sflush_prologue | ||
| 126 | #define __inv_sflush_epilogue __sflush_epilogue | ||
| 127 | |||
| 128 | #else /* CONFIG_MIPS_MT */ | ||
| 129 | |||
| 130 | #define __iflush_prologue { | ||
| 131 | #define __iflush_epilogue } | ||
| 132 | #define __dflush_prologue { | ||
| 133 | #define __dflush_epilogue } | ||
| 134 | #define __inv_dflush_prologue { | ||
| 135 | #define __inv_dflush_epilogue } | ||
| 136 | #define __sflush_prologue { | ||
| 137 | #define __sflush_epilogue } | ||
| 138 | #define __inv_sflush_prologue { | ||
| 139 | #define __inv_sflush_epilogue } | ||
| 140 | |||
| 141 | #endif /* CONFIG_MIPS_MT */ | ||
| 142 | |||
| 42 | static inline void flush_icache_line_indexed(unsigned long addr) | 143 | static inline void flush_icache_line_indexed(unsigned long addr) |
| 43 | { | 144 | { |
| 145 | __iflush_prologue | ||
| 44 | cache_op(Index_Invalidate_I, addr); | 146 | cache_op(Index_Invalidate_I, addr); |
| 147 | __iflush_epilogue | ||
| 45 | } | 148 | } |
| 46 | 149 | ||
| 47 | static inline void flush_dcache_line_indexed(unsigned long addr) | 150 | static inline void flush_dcache_line_indexed(unsigned long addr) |
| 48 | { | 151 | { |
| 152 | __dflush_prologue | ||
| 49 | cache_op(Index_Writeback_Inv_D, addr); | 153 | cache_op(Index_Writeback_Inv_D, addr); |
| 154 | __dflush_epilogue | ||
| 50 | } | 155 | } |
| 51 | 156 | ||
| 52 | static inline void flush_scache_line_indexed(unsigned long addr) | 157 | static inline void flush_scache_line_indexed(unsigned long addr) |
| @@ -56,17 +161,23 @@ static inline void flush_scache_line_indexed(unsigned long addr) | |||
| 56 | 161 | ||
| 57 | static inline void flush_icache_line(unsigned long addr) | 162 | static inline void flush_icache_line(unsigned long addr) |
| 58 | { | 163 | { |
| 164 | __iflush_prologue | ||
| 59 | cache_op(Hit_Invalidate_I, addr); | 165 | cache_op(Hit_Invalidate_I, addr); |
| 166 | __iflush_epilogue | ||
| 60 | } | 167 | } |
| 61 | 168 | ||
| 62 | static inline void flush_dcache_line(unsigned long addr) | 169 | static inline void flush_dcache_line(unsigned long addr) |
| 63 | { | 170 | { |
| 171 | __dflush_prologue | ||
| 64 | cache_op(Hit_Writeback_Inv_D, addr); | 172 | cache_op(Hit_Writeback_Inv_D, addr); |
| 173 | __dflush_epilogue | ||
| 65 | } | 174 | } |
| 66 | 175 | ||
| 67 | static inline void invalidate_dcache_line(unsigned long addr) | 176 | static inline void invalidate_dcache_line(unsigned long addr) |
| 68 | { | 177 | { |
| 178 | __dflush_prologue | ||
| 69 | cache_op(Hit_Invalidate_D, addr); | 179 | cache_op(Hit_Invalidate_D, addr); |
| 180 | __dflush_epilogue | ||
| 70 | } | 181 | } |
| 71 | 182 | ||
| 72 | static inline void invalidate_scache_line(unsigned long addr) | 183 | static inline void invalidate_scache_line(unsigned long addr) |
| @@ -239,9 +350,13 @@ static inline void blast_##pfx##cache##lsize(void) \ | |||
| 239 | current_cpu_data.desc.waybit; \ | 350 | current_cpu_data.desc.waybit; \ |
| 240 | unsigned long ws, addr; \ | 351 | unsigned long ws, addr; \ |
| 241 | \ | 352 | \ |
| 353 | __##pfx##flush_prologue \ | ||
| 354 | \ | ||
| 242 | for (ws = 0; ws < ws_end; ws += ws_inc) \ | 355 | for (ws = 0; ws < ws_end; ws += ws_inc) \ |
| 243 | for (addr = start; addr < end; addr += lsize * 32) \ | 356 | for (addr = start; addr < end; addr += lsize * 32) \ |
| 244 | cache##lsize##_unroll32(addr|ws,indexop); \ | 357 | cache##lsize##_unroll32(addr|ws,indexop); \ |
| 358 | \ | ||
| 359 | __##pfx##flush_epilogue \ | ||
| 245 | } \ | 360 | } \ |
| 246 | \ | 361 | \ |
| 247 | static inline void blast_##pfx##cache##lsize##_page(unsigned long page) \ | 362 | static inline void blast_##pfx##cache##lsize##_page(unsigned long page) \ |
| @@ -249,10 +364,14 @@ static inline void blast_##pfx##cache##lsize##_page(unsigned long page) \ | |||
| 249 | unsigned long start = page; \ | 364 | unsigned long start = page; \ |
| 250 | unsigned long end = page + PAGE_SIZE; \ | 365 | unsigned long end = page + PAGE_SIZE; \ |
| 251 | \ | 366 | \ |
| 367 | __##pfx##flush_prologue \ | ||
| 368 | \ | ||
| 252 | do { \ | 369 | do { \ |
| 253 | cache##lsize##_unroll32(start,hitop); \ | 370 | cache##lsize##_unroll32(start,hitop); \ |
| 254 | start += lsize * 32; \ | 371 | start += lsize * 32; \ |
| 255 | } while (start < end); \ | 372 | } while (start < end); \ |
| 373 | \ | ||
| 374 | __##pfx##flush_epilogue \ | ||
| 256 | } \ | 375 | } \ |
| 257 | \ | 376 | \ |
| 258 | static inline void blast_##pfx##cache##lsize##_page_indexed(unsigned long page) \ | 377 | static inline void blast_##pfx##cache##lsize##_page_indexed(unsigned long page) \ |
| @@ -265,9 +384,13 @@ static inline void blast_##pfx##cache##lsize##_page_indexed(unsigned long page) | |||
| 265 | current_cpu_data.desc.waybit; \ | 384 | current_cpu_data.desc.waybit; \ |
| 266 | unsigned long ws, addr; \ | 385 | unsigned long ws, addr; \ |
| 267 | \ | 386 | \ |
| 387 | __##pfx##flush_prologue \ | ||
| 388 | \ | ||
| 268 | for (ws = 0; ws < ws_end; ws += ws_inc) \ | 389 | for (ws = 0; ws < ws_end; ws += ws_inc) \ |
| 269 | for (addr = start; addr < end; addr += lsize * 32) \ | 390 | for (addr = start; addr < end; addr += lsize * 32) \ |
| 270 | cache##lsize##_unroll32(addr|ws,indexop); \ | 391 | cache##lsize##_unroll32(addr|ws,indexop); \ |
| 392 | \ | ||
| 393 | __##pfx##flush_epilogue \ | ||
| 271 | } | 394 | } |
| 272 | 395 | ||
| 273 | __BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 16) | 396 | __BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 16) |
| @@ -288,12 +411,17 @@ static inline void prot##blast_##pfx##cache##_range(unsigned long start, \ | |||
| 288 | unsigned long lsize = cpu_##desc##_line_size(); \ | 411 | unsigned long lsize = cpu_##desc##_line_size(); \ |
| 289 | unsigned long addr = start & ~(lsize - 1); \ | 412 | unsigned long addr = start & ~(lsize - 1); \ |
| 290 | unsigned long aend = (end - 1) & ~(lsize - 1); \ | 413 | unsigned long aend = (end - 1) & ~(lsize - 1); \ |
| 414 | \ | ||
| 415 | __##pfx##flush_prologue \ | ||
| 416 | \ | ||
| 291 | while (1) { \ | 417 | while (1) { \ |
| 292 | prot##cache_op(hitop, addr); \ | 418 | prot##cache_op(hitop, addr); \ |
| 293 | if (addr == aend) \ | 419 | if (addr == aend) \ |
| 294 | break; \ | 420 | break; \ |
| 295 | addr += lsize; \ | 421 | addr += lsize; \ |
| 296 | } \ | 422 | } \ |
| 423 | \ | ||
| 424 | __##pfx##flush_epilogue \ | ||
| 297 | } | 425 | } |
| 298 | 426 | ||
| 299 | __BUILD_BLAST_CACHE_RANGE(d, dcache, Hit_Writeback_Inv_D, protected_) | 427 | __BUILD_BLAST_CACHE_RANGE(d, dcache, Hit_Writeback_Inv_D, protected_) |
