diff options
| -rw-r--r-- | arch/mips/mm/c-r4k.c | 14 | ||||
| -rw-r--r-- | arch/mips/mm/c-tx39.c | 15 | ||||
| -rw-r--r-- | arch/mips/mm/cache.c | 3 | ||||
| -rw-r--r-- | include/asm-mips/cacheflush.h | 18 |
4 files changed, 48 insertions, 2 deletions
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 6496925b5e29..77aefb4ebedd 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
| @@ -361,6 +361,16 @@ static inline int has_valid_asid(const struct mm_struct *mm) | |||
| 361 | #endif | 361 | #endif |
| 362 | } | 362 | } |
| 363 | 363 | ||
| 364 | static void r4k__flush_cache_vmap(void) | ||
| 365 | { | ||
| 366 | r4k_blast_dcache(); | ||
| 367 | } | ||
| 368 | |||
| 369 | static void r4k__flush_cache_vunmap(void) | ||
| 370 | { | ||
| 371 | r4k_blast_dcache(); | ||
| 372 | } | ||
| 373 | |||
| 364 | static inline void local_r4k_flush_cache_range(void * args) | 374 | static inline void local_r4k_flush_cache_range(void * args) |
| 365 | { | 375 | { |
| 366 | struct vm_area_struct *vma = args; | 376 | struct vm_area_struct *vma = args; |
| @@ -1281,6 +1291,10 @@ void __cpuinit r4k_cache_init(void) | |||
| 1281 | PAGE_SIZE - 1); | 1291 | PAGE_SIZE - 1); |
| 1282 | else | 1292 | else |
| 1283 | shm_align_mask = PAGE_SIZE-1; | 1293 | shm_align_mask = PAGE_SIZE-1; |
| 1294 | |||
| 1295 | __flush_cache_vmap = r4k__flush_cache_vmap; | ||
| 1296 | __flush_cache_vunmap = r4k__flush_cache_vunmap; | ||
| 1297 | |||
| 1284 | flush_cache_all = cache_noop; | 1298 | flush_cache_all = cache_noop; |
| 1285 | __flush_cache_all = r4k___flush_cache_all; | 1299 | __flush_cache_all = r4k___flush_cache_all; |
| 1286 | flush_cache_mm = r4k_flush_cache_mm; | 1300 | flush_cache_mm = r4k_flush_cache_mm; |
diff --git a/arch/mips/mm/c-tx39.c b/arch/mips/mm/c-tx39.c index b09d56981d53..a9f7f1f5e9b4 100644 --- a/arch/mips/mm/c-tx39.c +++ b/arch/mips/mm/c-tx39.c | |||
| @@ -122,6 +122,16 @@ static inline void tx39_blast_icache(void) | |||
| 122 | local_irq_restore(flags); | 122 | local_irq_restore(flags); |
| 123 | } | 123 | } |
| 124 | 124 | ||
| 125 | static void tx39__flush_cache_vmap(void) | ||
| 126 | { | ||
| 127 | tx39_blast_dcache(); | ||
| 128 | } | ||
| 129 | |||
| 130 | static void tx39__flush_cache_vunmap(void) | ||
| 131 | { | ||
| 132 | tx39_blast_dcache(); | ||
| 133 | } | ||
| 134 | |||
| 125 | static inline void tx39_flush_cache_all(void) | 135 | static inline void tx39_flush_cache_all(void) |
| 126 | { | 136 | { |
| 127 | if (!cpu_has_dc_aliases) | 137 | if (!cpu_has_dc_aliases) |
| @@ -344,6 +354,8 @@ void __cpuinit tx39_cache_init(void) | |||
| 344 | switch (current_cpu_type()) { | 354 | switch (current_cpu_type()) { |
| 345 | case CPU_TX3912: | 355 | case CPU_TX3912: |
| 346 | /* TX39/H core (writethru direct-map cache) */ | 356 | /* TX39/H core (writethru direct-map cache) */ |
| 357 | __flush_cache_vmap = tx39__flush_cache_vmap; | ||
| 358 | __flush_cache_vunmap = tx39__flush_cache_vunmap; | ||
| 347 | flush_cache_all = tx39h_flush_icache_all; | 359 | flush_cache_all = tx39h_flush_icache_all; |
| 348 | __flush_cache_all = tx39h_flush_icache_all; | 360 | __flush_cache_all = tx39h_flush_icache_all; |
| 349 | flush_cache_mm = (void *) tx39h_flush_icache_all; | 361 | flush_cache_mm = (void *) tx39h_flush_icache_all; |
| @@ -369,6 +381,9 @@ void __cpuinit tx39_cache_init(void) | |||
| 369 | write_c0_wired(0); /* set 8 on reset... */ | 381 | write_c0_wired(0); /* set 8 on reset... */ |
| 370 | /* board-dependent init code may set WBON */ | 382 | /* board-dependent init code may set WBON */ |
| 371 | 383 | ||
| 384 | __flush_cache_vmap = tx39__flush_cache_vmap; | ||
| 385 | __flush_cache_vunmap = tx39__flush_cache_vunmap; | ||
| 386 | |||
| 372 | flush_cache_all = tx39_flush_cache_all; | 387 | flush_cache_all = tx39_flush_cache_all; |
| 373 | __flush_cache_all = tx39___flush_cache_all; | 388 | __flush_cache_all = tx39___flush_cache_all; |
| 374 | flush_cache_mm = tx39_flush_cache_mm; | 389 | flush_cache_mm = tx39_flush_cache_mm; |
diff --git a/arch/mips/mm/cache.c b/arch/mips/mm/cache.c index 51ab1faa027d..f5903679ee6a 100644 --- a/arch/mips/mm/cache.c +++ b/arch/mips/mm/cache.c | |||
| @@ -30,6 +30,9 @@ void (*flush_cache_page)(struct vm_area_struct *vma, unsigned long page, | |||
| 30 | unsigned long pfn); | 30 | unsigned long pfn); |
| 31 | void (*flush_icache_range)(unsigned long start, unsigned long end); | 31 | void (*flush_icache_range)(unsigned long start, unsigned long end); |
| 32 | 32 | ||
| 33 | void (*__flush_cache_vmap)(void); | ||
| 34 | void (*__flush_cache_vunmap)(void); | ||
| 35 | |||
| 33 | /* MIPS specific cache operations */ | 36 | /* MIPS specific cache operations */ |
| 34 | void (*flush_cache_sigtramp)(unsigned long addr); | 37 | void (*flush_cache_sigtramp)(unsigned long addr); |
| 35 | void (*local_flush_data_cache_page)(void * addr); | 38 | void (*local_flush_data_cache_page)(void * addr); |
diff --git a/include/asm-mips/cacheflush.h b/include/asm-mips/cacheflush.h index 01e7eadc97e2..d5c0f2fda51b 100644 --- a/include/asm-mips/cacheflush.h +++ b/include/asm-mips/cacheflush.h | |||
| @@ -63,8 +63,22 @@ static inline void flush_icache_page(struct vm_area_struct *vma, | |||
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | extern void (*flush_icache_range)(unsigned long start, unsigned long end); | 65 | extern void (*flush_icache_range)(unsigned long start, unsigned long end); |
| 66 | #define flush_cache_vmap(start, end) flush_cache_all() | 66 | |
| 67 | #define flush_cache_vunmap(start, end) flush_cache_all() | 67 | extern void (*__flush_cache_vmap)(void); |
| 68 | |||
| 69 | static inline void flush_cache_vmap(unsigned long start, unsigned long end) | ||
| 70 | { | ||
| 71 | if (cpu_has_dc_aliases) | ||
| 72 | __flush_cache_vmap(); | ||
| 73 | } | ||
| 74 | |||
| 75 | extern void (*__flush_cache_vunmap)(void); | ||
| 76 | |||
| 77 | static inline void flush_cache_vunmap(unsigned long start, unsigned long end) | ||
| 78 | { | ||
| 79 | if (cpu_has_dc_aliases) | ||
| 80 | __flush_cache_vunmap(); | ||
| 81 | } | ||
| 68 | 82 | ||
| 69 | extern void copy_to_user_page(struct vm_area_struct *vma, | 83 | extern void copy_to_user_page(struct vm_area_struct *vma, |
| 70 | struct page *page, unsigned long vaddr, void *dst, const void *src, | 84 | struct page *page, unsigned long vaddr, void *dst, const void *src, |
