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