diff options
-rw-r--r-- | arch/mn10300/mm/cache-inv-by-reg.S | 13 | ||||
-rw-r--r-- | arch/mn10300/mm/cache-inv-by-tag.S | 77 | ||||
-rw-r--r-- | arch/mn10300/mm/cache.inc | 133 |
3 files changed, 140 insertions, 83 deletions
diff --git a/arch/mn10300/mm/cache-inv-by-reg.S b/arch/mn10300/mm/cache-inv-by-reg.S index c8950861ed77..d1f363a8d36b 100644 --- a/arch/mn10300/mm/cache-inv-by-reg.S +++ b/arch/mn10300/mm/cache-inv-by-reg.S | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <asm/cache.h> | 15 | #include <asm/cache.h> |
16 | #include <asm/irqflags.h> | 16 | #include <asm/irqflags.h> |
17 | #include <asm/cacheflush.h> | 17 | #include <asm/cacheflush.h> |
18 | #include "cache.inc" | ||
18 | 19 | ||
19 | #define mn10300_local_dcache_inv_range_intr_interval \ | 20 | #define mn10300_local_dcache_inv_range_intr_interval \ |
20 | +((1 << MN10300_DCACHE_INV_RANGE_INTR_LOG2_INTERVAL) - 1) | 21 | +((1 << MN10300_DCACHE_INV_RANGE_INTR_LOG2_INTERVAL) - 1) |
@@ -62,10 +63,7 @@ mn10300_local_icache_inv: | |||
62 | btst CHCTR_ICEN,d0 | 63 | btst CHCTR_ICEN,d0 |
63 | beq mn10300_local_icache_inv_end | 64 | beq mn10300_local_icache_inv_end |
64 | 65 | ||
65 | # invalidate | 66 | invalidate_icache 1 |
66 | or CHCTR_ICINV,d0 | ||
67 | movhu d0,(a0) | ||
68 | movhu (a0),d0 | ||
69 | 67 | ||
70 | mn10300_local_icache_inv_end: | 68 | mn10300_local_icache_inv_end: |
71 | ret [],0 | 69 | ret [],0 |
@@ -87,11 +85,8 @@ mn10300_local_dcache_inv: | |||
87 | btst CHCTR_DCEN,d0 | 85 | btst CHCTR_DCEN,d0 |
88 | beq mn10300_local_dcache_inv_end | 86 | beq mn10300_local_dcache_inv_end |
89 | 87 | ||
90 | # invalidate | 88 | invalidate_dcache 1 |
91 | or CHCTR_DCINV,d0 | 89 | |
92 | movhu d0,(a0) | ||
93 | movhu (a0),d0 | ||
94 | |||
95 | mn10300_local_dcache_inv_end: | 90 | mn10300_local_dcache_inv_end: |
96 | ret [],0 | 91 | ret [],0 |
97 | .size mn10300_local_dcache_inv,.-mn10300_local_dcache_inv | 92 | .size mn10300_local_dcache_inv,.-mn10300_local_dcache_inv |
diff --git a/arch/mn10300/mm/cache-inv-by-tag.S b/arch/mn10300/mm/cache-inv-by-tag.S index e9713b40c0ff..c5c80322eefb 100644 --- a/arch/mn10300/mm/cache-inv-by-tag.S +++ b/arch/mn10300/mm/cache-inv-by-tag.S | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <asm/cache.h> | 15 | #include <asm/cache.h> |
16 | #include <asm/irqflags.h> | 16 | #include <asm/irqflags.h> |
17 | #include <asm/cacheflush.h> | 17 | #include <asm/cacheflush.h> |
18 | #include "cache.inc" | ||
18 | 19 | ||
19 | #define mn10300_local_dcache_inv_range_intr_interval \ | 20 | #define mn10300_local_dcache_inv_range_intr_interval \ |
20 | +((1 << MN10300_DCACHE_INV_RANGE_INTR_LOG2_INTERVAL) - 1) | 21 | +((1 << MN10300_DCACHE_INV_RANGE_INTR_LOG2_INTERVAL) - 1) |
@@ -70,43 +71,7 @@ mn10300_local_icache_inv: | |||
70 | btst CHCTR_ICEN,d0 | 71 | btst CHCTR_ICEN,d0 |
71 | beq mn10300_local_icache_inv_end | 72 | beq mn10300_local_icache_inv_end |
72 | 73 | ||
73 | #if defined(CONFIG_AM33_2) || defined(CONFIG_AM33_3) | 74 | invalidate_icache 1 |
74 | LOCAL_CLI_SAVE(d1) | ||
75 | |||
76 | # disable the icache | ||
77 | and ~CHCTR_ICEN,d0 | ||
78 | movhu d0,(a0) | ||
79 | |||
80 | # and wait for it to calm down | ||
81 | setlb | ||
82 | movhu (a0),d0 | ||
83 | btst CHCTR_ICBUSY,d0 | ||
84 | lne | ||
85 | |||
86 | # invalidate | ||
87 | or CHCTR_ICINV,d0 | ||
88 | movhu d0,(a0) | ||
89 | |||
90 | # wait for the cache to finish | ||
91 | mov CHCTR,a0 | ||
92 | setlb | ||
93 | movhu (a0),d0 | ||
94 | btst CHCTR_ICBUSY,d0 | ||
95 | lne | ||
96 | |||
97 | # and reenable it | ||
98 | and ~CHCTR_ICINV,d0 | ||
99 | or CHCTR_ICEN,d0 | ||
100 | movhu d0,(a0) | ||
101 | movhu (a0),d0 | ||
102 | |||
103 | LOCAL_IRQ_RESTORE(d1) | ||
104 | #else /* CONFIG_AM33_2 || CONFIG_AM33_3 */ | ||
105 | # invalidate | ||
106 | or CHCTR_ICINV,d0 | ||
107 | movhu d0,(a0) | ||
108 | movhu (a0),d0 | ||
109 | #endif /* CONFIG_AM33_2 || CONFIG_AM33_3 */ | ||
110 | 75 | ||
111 | mn10300_local_icache_inv_end: | 76 | mn10300_local_icache_inv_end: |
112 | ret [],0 | 77 | ret [],0 |
@@ -128,43 +93,7 @@ mn10300_local_dcache_inv: | |||
128 | btst CHCTR_DCEN,d0 | 93 | btst CHCTR_DCEN,d0 |
129 | beq mn10300_local_dcache_inv_end | 94 | beq mn10300_local_dcache_inv_end |
130 | 95 | ||
131 | #if defined(CONFIG_AM33_2) || defined(CONFIG_AM33_3) | 96 | invalidate_dcache 1 |
132 | LOCAL_CLI_SAVE(d1) | ||
133 | |||
134 | # disable the dcache | ||
135 | and ~CHCTR_DCEN,d0 | ||
136 | movhu d0,(a0) | ||
137 | |||
138 | # and wait for it to calm down | ||
139 | setlb | ||
140 | movhu (a0),d0 | ||
141 | btst CHCTR_DCBUSY,d0 | ||
142 | lne | ||
143 | |||
144 | # invalidate | ||
145 | or CHCTR_DCINV,d0 | ||
146 | movhu d0,(a0) | ||
147 | |||
148 | # wait for the cache to finish | ||
149 | mov CHCTR,a0 | ||
150 | setlb | ||
151 | movhu (a0),d0 | ||
152 | btst CHCTR_DCBUSY,d0 | ||
153 | lne | ||
154 | |||
155 | # and reenable it | ||
156 | and ~CHCTR_DCINV,d0 | ||
157 | or CHCTR_DCEN,d0 | ||
158 | movhu d0,(a0) | ||
159 | movhu (a0),d0 | ||
160 | |||
161 | LOCAL_IRQ_RESTORE(d1) | ||
162 | #else /* CONFIG_AM33_2 || CONFIG_AM33_3 */ | ||
163 | # invalidate | ||
164 | or CHCTR_DCINV,d0 | ||
165 | movhu d0,(a0) | ||
166 | movhu (a0),d0 | ||
167 | #endif /* CONFIG_AM33_2 || CONFIG_AM33_3 */ | ||
168 | 97 | ||
169 | mn10300_local_dcache_inv_end: | 98 | mn10300_local_dcache_inv_end: |
170 | ret [],0 | 99 | ret [],0 |
diff --git a/arch/mn10300/mm/cache.inc b/arch/mn10300/mm/cache.inc new file mode 100644 index 000000000000..394a119b9c73 --- /dev/null +++ b/arch/mn10300/mm/cache.inc | |||
@@ -0,0 +1,133 @@ | |||
1 | /* MN10300 CPU core caching macros -*- asm -*- | ||
2 | * | ||
3 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. | ||
4 | * Written by David Howells (dhowells@redhat.com) | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public Licence | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the Licence, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | |||
13 | ############################################################################### | ||
14 | # | ||
15 | # Invalidate the instruction cache. | ||
16 | # A0: Should hold CHCTR | ||
17 | # D0: Should have been read from CHCTR | ||
18 | # D1: Will be clobbered | ||
19 | # | ||
20 | # On some cores it is necessary to disable the icache whilst we do this. | ||
21 | # | ||
22 | ############################################################################### | ||
23 | .macro invalidate_icache,disable_irq | ||
24 | |||
25 | #if defined(CONFIG_AM33_2) || defined(CONFIG_AM33_3) | ||
26 | .if \disable_irq | ||
27 | # don't want an interrupt routine seeing a disabled cache | ||
28 | mov epsw,d1 | ||
29 | and ~EPSW_IE,epsw | ||
30 | or EPSW_NMID,epsw | ||
31 | nop | ||
32 | nop | ||
33 | .endif | ||
34 | |||
35 | # disable the icache | ||
36 | and ~CHCTR_ICEN,d0 | ||
37 | movhu d0,(a0) | ||
38 | |||
39 | # and wait for it to calm down | ||
40 | setlb | ||
41 | movhu (a0),d0 | ||
42 | btst CHCTR_ICBUSY,d0 | ||
43 | lne | ||
44 | |||
45 | # invalidate | ||
46 | or CHCTR_ICINV,d0 | ||
47 | movhu d0,(a0) | ||
48 | |||
49 | # wait for the cache to finish | ||
50 | setlb | ||
51 | movhu (a0),d0 | ||
52 | btst CHCTR_ICBUSY,d0 | ||
53 | lne | ||
54 | |||
55 | # and reenable it | ||
56 | or CHCTR_ICEN,d0 | ||
57 | movhu d0,(a0) | ||
58 | movhu (a0),d0 | ||
59 | |||
60 | .if \disable_irq | ||
61 | LOCAL_IRQ_RESTORE(d1) | ||
62 | .endif | ||
63 | |||
64 | #else /* CONFIG_AM33_2 || CONFIG_AM33_3 */ | ||
65 | |||
66 | # invalidate | ||
67 | or CHCTR_ICINV,d0 | ||
68 | movhu d0,(a0) | ||
69 | movhu (a0),d0 | ||
70 | |||
71 | #endif /* CONFIG_AM33_2 || CONFIG_AM33_3 */ | ||
72 | .endm | ||
73 | |||
74 | ############################################################################### | ||
75 | # | ||
76 | # Invalidate the data cache. | ||
77 | # A0: Should hold CHCTR | ||
78 | # D0: Should have been read from CHCTR | ||
79 | # D1: Will be clobbered | ||
80 | # | ||
81 | # On some cores it is necessary to disable the dcache whilst we do this. | ||
82 | # | ||
83 | ############################################################################### | ||
84 | .macro invalidate_dcache,disable_irq | ||
85 | |||
86 | #if defined(CONFIG_AM33_2) || defined(CONFIG_AM33_3) | ||
87 | .if \disable_irq | ||
88 | # don't want an interrupt routine seeing a disabled cache | ||
89 | mov epsw,d1 | ||
90 | and ~EPSW_IE,epsw | ||
91 | or EPSW_NMID,epsw | ||
92 | nop | ||
93 | nop | ||
94 | .endif | ||
95 | |||
96 | # disable the dcache | ||
97 | and ~CHCTR_DCEN,d0 | ||
98 | movhu d0,(a0) | ||
99 | |||
100 | # and wait for it to calm down | ||
101 | setlb | ||
102 | movhu (a0),d0 | ||
103 | btst CHCTR_DCBUSY,d0 | ||
104 | lne | ||
105 | |||
106 | # invalidate | ||
107 | or CHCTR_DCINV,d0 | ||
108 | movhu d0,(a0) | ||
109 | |||
110 | # wait for the cache to finish | ||
111 | setlb | ||
112 | movhu (a0),d0 | ||
113 | btst CHCTR_DCBUSY,d0 | ||
114 | lne | ||
115 | |||
116 | # and reenable it | ||
117 | or CHCTR_DCEN,d0 | ||
118 | movhu d0,(a0) | ||
119 | movhu (a0),d0 | ||
120 | |||
121 | .if \disable_irq | ||
122 | LOCAL_IRQ_RESTORE(d1) | ||
123 | .endif | ||
124 | |||
125 | #else /* CONFIG_AM33_2 || CONFIG_AM33_3 */ | ||
126 | |||
127 | # invalidate | ||
128 | or CHCTR_DCINV,d0 | ||
129 | movhu d0,(a0) | ||
130 | movhu (a0),d0 | ||
131 | |||
132 | #endif /* CONFIG_AM33_2 || CONFIG_AM33_3 */ | ||
133 | .endm | ||