Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 2 | #include <linux/mm.h> |
| 3 | #include <asm/mmu_context.h> |
Paul Mundt | f03c486 | 2012-03-30 19:29:57 +0900 | [diff] [blame] | 4 | #include <asm/cache_insns.h> |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 5 | #include <asm/cacheflush.h> |
David Howells | e839ca5 | 2012-03-28 18:30:03 +0100 | [diff] [blame] | 6 | #include <asm/traps.h> |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 7 | |
| 8 | /* |
| 9 | * Write back the dirty D-caches, but not invalidate them. |
| 10 | * |
| 11 | * START: Virtual Address (U0, P1, or P3) |
| 12 | * SIZE: Size of the region. |
| 13 | */ |
Paul Mundt | 37443ef | 2009-08-15 12:29:49 +0900 | [diff] [blame] | 14 | static void sh4__flush_wback_region(void *start, int size) |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 15 | { |
Paul Mundt | 43bc61d | 2009-08-15 01:57:36 +0900 | [diff] [blame] | 16 | reg_size_t aligned_start, v, cnt, end; |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 17 | |
Paul Mundt | 43bc61d | 2009-08-15 01:57:36 +0900 | [diff] [blame] | 18 | aligned_start = register_align(start); |
| 19 | v = aligned_start & ~(L1_CACHE_BYTES-1); |
| 20 | end = (aligned_start + size + L1_CACHE_BYTES-1) |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 21 | & ~(L1_CACHE_BYTES-1); |
Paul Mundt | 0837f52 | 2009-08-04 18:09:54 +0900 | [diff] [blame] | 22 | cnt = (end - v) / L1_CACHE_BYTES; |
| 23 | |
| 24 | while (cnt >= 8) { |
Paul Mundt | 94ecd22 | 2009-08-16 01:50:17 +0900 | [diff] [blame] | 25 | __ocbwb(v); v += L1_CACHE_BYTES; |
| 26 | __ocbwb(v); v += L1_CACHE_BYTES; |
| 27 | __ocbwb(v); v += L1_CACHE_BYTES; |
| 28 | __ocbwb(v); v += L1_CACHE_BYTES; |
| 29 | __ocbwb(v); v += L1_CACHE_BYTES; |
| 30 | __ocbwb(v); v += L1_CACHE_BYTES; |
| 31 | __ocbwb(v); v += L1_CACHE_BYTES; |
| 32 | __ocbwb(v); v += L1_CACHE_BYTES; |
Paul Mundt | 0837f52 | 2009-08-04 18:09:54 +0900 | [diff] [blame] | 33 | cnt -= 8; |
| 34 | } |
| 35 | |
| 36 | while (cnt) { |
Paul Mundt | 94ecd22 | 2009-08-16 01:50:17 +0900 | [diff] [blame] | 37 | __ocbwb(v); v += L1_CACHE_BYTES; |
Paul Mundt | 0837f52 | 2009-08-04 18:09:54 +0900 | [diff] [blame] | 38 | cnt--; |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 39 | } |
| 40 | } |
| 41 | |
| 42 | /* |
| 43 | * Write back the dirty D-caches and invalidate them. |
| 44 | * |
| 45 | * START: Virtual Address (U0, P1, or P3) |
| 46 | * SIZE: Size of the region. |
| 47 | */ |
Paul Mundt | 37443ef | 2009-08-15 12:29:49 +0900 | [diff] [blame] | 48 | static void sh4__flush_purge_region(void *start, int size) |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 49 | { |
Paul Mundt | 43bc61d | 2009-08-15 01:57:36 +0900 | [diff] [blame] | 50 | reg_size_t aligned_start, v, cnt, end; |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 51 | |
Paul Mundt | 43bc61d | 2009-08-15 01:57:36 +0900 | [diff] [blame] | 52 | aligned_start = register_align(start); |
| 53 | v = aligned_start & ~(L1_CACHE_BYTES-1); |
| 54 | end = (aligned_start + size + L1_CACHE_BYTES-1) |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 55 | & ~(L1_CACHE_BYTES-1); |
Paul Mundt | 0837f52 | 2009-08-04 18:09:54 +0900 | [diff] [blame] | 56 | cnt = (end - v) / L1_CACHE_BYTES; |
| 57 | |
| 58 | while (cnt >= 8) { |
Paul Mundt | 94ecd22 | 2009-08-16 01:50:17 +0900 | [diff] [blame] | 59 | __ocbp(v); v += L1_CACHE_BYTES; |
| 60 | __ocbp(v); v += L1_CACHE_BYTES; |
| 61 | __ocbp(v); v += L1_CACHE_BYTES; |
| 62 | __ocbp(v); v += L1_CACHE_BYTES; |
| 63 | __ocbp(v); v += L1_CACHE_BYTES; |
| 64 | __ocbp(v); v += L1_CACHE_BYTES; |
| 65 | __ocbp(v); v += L1_CACHE_BYTES; |
| 66 | __ocbp(v); v += L1_CACHE_BYTES; |
Paul Mundt | 0837f52 | 2009-08-04 18:09:54 +0900 | [diff] [blame] | 67 | cnt -= 8; |
| 68 | } |
| 69 | while (cnt) { |
Paul Mundt | 94ecd22 | 2009-08-16 01:50:17 +0900 | [diff] [blame] | 70 | __ocbp(v); v += L1_CACHE_BYTES; |
Paul Mundt | 0837f52 | 2009-08-04 18:09:54 +0900 | [diff] [blame] | 71 | cnt--; |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 72 | } |
| 73 | } |
| 74 | |
| 75 | /* |
| 76 | * No write back please |
| 77 | */ |
Paul Mundt | 37443ef | 2009-08-15 12:29:49 +0900 | [diff] [blame] | 78 | static void sh4__flush_invalidate_region(void *start, int size) |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 79 | { |
Paul Mundt | 43bc61d | 2009-08-15 01:57:36 +0900 | [diff] [blame] | 80 | reg_size_t aligned_start, v, cnt, end; |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 81 | |
Paul Mundt | 43bc61d | 2009-08-15 01:57:36 +0900 | [diff] [blame] | 82 | aligned_start = register_align(start); |
| 83 | v = aligned_start & ~(L1_CACHE_BYTES-1); |
| 84 | end = (aligned_start + size + L1_CACHE_BYTES-1) |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 85 | & ~(L1_CACHE_BYTES-1); |
Paul Mundt | 0837f52 | 2009-08-04 18:09:54 +0900 | [diff] [blame] | 86 | cnt = (end - v) / L1_CACHE_BYTES; |
| 87 | |
| 88 | while (cnt >= 8) { |
Paul Mundt | 94ecd22 | 2009-08-16 01:50:17 +0900 | [diff] [blame] | 89 | __ocbi(v); v += L1_CACHE_BYTES; |
| 90 | __ocbi(v); v += L1_CACHE_BYTES; |
| 91 | __ocbi(v); v += L1_CACHE_BYTES; |
| 92 | __ocbi(v); v += L1_CACHE_BYTES; |
| 93 | __ocbi(v); v += L1_CACHE_BYTES; |
| 94 | __ocbi(v); v += L1_CACHE_BYTES; |
| 95 | __ocbi(v); v += L1_CACHE_BYTES; |
| 96 | __ocbi(v); v += L1_CACHE_BYTES; |
Paul Mundt | 0837f52 | 2009-08-04 18:09:54 +0900 | [diff] [blame] | 97 | cnt -= 8; |
| 98 | } |
| 99 | |
| 100 | while (cnt) { |
Paul Mundt | 94ecd22 | 2009-08-16 01:50:17 +0900 | [diff] [blame] | 101 | __ocbi(v); v += L1_CACHE_BYTES; |
Paul Mundt | 0837f52 | 2009-08-04 18:09:54 +0900 | [diff] [blame] | 102 | cnt--; |
Paul Mundt | 8174252 | 2009-08-04 18:06:01 +0900 | [diff] [blame] | 103 | } |
| 104 | } |
Paul Mundt | 37443ef | 2009-08-15 12:29:49 +0900 | [diff] [blame] | 105 | |
| 106 | void __init sh4__flush_region_init(void) |
| 107 | { |
| 108 | __flush_wback_region = sh4__flush_wback_region; |
| 109 | __flush_invalidate_region = sh4__flush_invalidate_region; |
| 110 | __flush_purge_region = sh4__flush_purge_region; |
| 111 | } |