blob: 88d3dc3d30d50aabcbdfcff04ac197cf19470bb7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Mundtf26b2a52009-08-21 17:23:14 +09002 * arch/sh/mm/cache.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1999, 2000, 2002 Niibe Yutaka
Paul Mundta6198a22010-01-15 14:21:37 +09005 * Copyright (C) 2002 - 2010 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Released under the terms of the GNU GPL v2.0.
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mm.h>
Paul Mundtacca4f42008-11-10 20:00:45 +090010#include <linux/init.h>
Paul Mundt52e27782006-11-21 11:09:41 +090011#include <linux/mutex.h>
Paul Mundte06c4e52007-07-31 13:01:43 +090012#include <linux/fs.h>
Paul Mundtf26b2a52009-08-21 17:23:14 +090013#include <linux/smp.h>
Paul Mundt7747b9a2007-11-05 16:12:32 +090014#include <linux/highmem.h>
15#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/mmu_context.h>
17#include <asm/cacheflush.h>
18
Paul Mundtf26b2a52009-08-21 17:23:14 +090019void (*local_flush_cache_all)(void *args) = cache_noop;
20void (*local_flush_cache_mm)(void *args) = cache_noop;
21void (*local_flush_cache_dup_mm)(void *args) = cache_noop;
22void (*local_flush_cache_page)(void *args) = cache_noop;
23void (*local_flush_cache_range)(void *args) = cache_noop;
24void (*local_flush_dcache_page)(void *args) = cache_noop;
25void (*local_flush_icache_range)(void *args) = cache_noop;
26void (*local_flush_icache_page)(void *args) = cache_noop;
27void (*local_flush_cache_sigtramp)(void *args) = cache_noop;
28
Paul Mundt37443ef2009-08-15 12:29:49 +090029void (*__flush_wback_region)(void *start, int size);
Paul Mundt0a993b02009-10-27 10:51:35 +090030EXPORT_SYMBOL(__flush_wback_region);
Paul Mundt37443ef2009-08-15 12:29:49 +090031void (*__flush_purge_region)(void *start, int size);
Paul Mundt0a993b02009-10-27 10:51:35 +090032EXPORT_SYMBOL(__flush_purge_region);
Paul Mundt37443ef2009-08-15 12:29:49 +090033void (*__flush_invalidate_region)(void *start, int size);
Paul Mundt0a993b02009-10-27 10:51:35 +090034EXPORT_SYMBOL(__flush_invalidate_region);
Paul Mundt37443ef2009-08-15 12:29:49 +090035
Paul Mundt37443ef2009-08-15 12:29:49 +090036static inline void noop__flush_region(void *start, int size)
37{
38}
39
Paul Mundt6f379572009-09-01 21:21:36 +090040static inline void cacheop_on_each_cpu(void (*func) (void *info), void *info,
41 int wait)
42{
43 preempt_disable();
Paul Mundta6198a22010-01-15 14:21:37 +090044
45 /*
46 * It's possible that this gets called early on when IRQs are
47 * still disabled due to ioremapping by the boot CPU, so don't
48 * even attempt IPIs unless there are other CPUs online.
49 */
50 if (num_online_cpus() > 1)
51 smp_call_function(func, info, wait);
52
Paul Mundt6f379572009-09-01 21:21:36 +090053 func(info);
Paul Mundta6198a22010-01-15 14:21:37 +090054
Paul Mundt6f379572009-09-01 21:21:36 +090055 preempt_enable();
56}
57
Paul Mundtba1789e2007-11-05 16:18:16 +090058void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
59 unsigned long vaddr, void *dst, const void *src,
60 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Paul Mundt0dfae7d2009-07-27 21:30:17 +090062 if (boot_cpu_data.dcache.n_aliases && page_mapped(page) &&
Paul Mundt55661fc2010-12-01 15:39:51 +090063 test_bit(PG_dcache_clean, &page->flags)) {
Paul Mundt2277ab42009-07-22 19:20:49 +090064 void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
65 memcpy(vto, src, len);
Paul Mundt0906a3a2009-09-03 17:21:10 +090066 kunmap_coherent(vto);
Paul Mundt2277ab42009-07-22 19:20:49 +090067 } else {
68 memcpy(dst, src, len);
Paul Mundt0dfae7d2009-07-27 21:30:17 +090069 if (boot_cpu_data.dcache.n_aliases)
Paul Mundt55661fc2010-12-01 15:39:51 +090070 clear_bit(PG_dcache_clean, &page->flags);
Paul Mundt2277ab42009-07-22 19:20:49 +090071 }
Paul Mundtba1789e2007-11-05 16:18:16 +090072
73 if (vma->vm_flags & VM_EXEC)
74 flush_cache_page(vma, vaddr, page_to_pfn(page));
75}
76
77void copy_from_user_page(struct vm_area_struct *vma, struct page *page,
78 unsigned long vaddr, void *dst, const void *src,
79 unsigned long len)
80{
Paul Mundt0dfae7d2009-07-27 21:30:17 +090081 if (boot_cpu_data.dcache.n_aliases && page_mapped(page) &&
Paul Mundt55661fc2010-12-01 15:39:51 +090082 test_bit(PG_dcache_clean, &page->flags)) {
Paul Mundt2277ab42009-07-22 19:20:49 +090083 void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
84 memcpy(dst, vfrom, len);
Paul Mundt0906a3a2009-09-03 17:21:10 +090085 kunmap_coherent(vfrom);
Paul Mundt2277ab42009-07-22 19:20:49 +090086 } else {
87 memcpy(dst, src, len);
Paul Mundt0dfae7d2009-07-27 21:30:17 +090088 if (boot_cpu_data.dcache.n_aliases)
Paul Mundt55661fc2010-12-01 15:39:51 +090089 clear_bit(PG_dcache_clean, &page->flags);
Paul Mundt2277ab42009-07-22 19:20:49 +090090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
Paul Mundt39e688a2007-03-05 19:46:47 +090092
Paul Mundt7747b9a2007-11-05 16:12:32 +090093void copy_user_highpage(struct page *to, struct page *from,
94 unsigned long vaddr, struct vm_area_struct *vma)
95{
96 void *vfrom, *vto;
97
Paul Mundt7747b9a2007-11-05 16:12:32 +090098 vto = kmap_atomic(to, KM_USER1);
Paul Mundt7747b9a2007-11-05 16:12:32 +090099
Paul Mundt0dfae7d2009-07-27 21:30:17 +0900100 if (boot_cpu_data.dcache.n_aliases && page_mapped(from) &&
Paul Mundt55661fc2010-12-01 15:39:51 +0900101 test_bit(PG_dcache_clean, &from->flags)) {
Paul Mundt7e01c942009-12-04 15:14:52 +0900102 vfrom = kmap_coherent(from, vaddr);
Paul Mundt2277ab42009-07-22 19:20:49 +0900103 copy_page(vto, vfrom);
Paul Mundt7e01c942009-12-04 15:14:52 +0900104 kunmap_coherent(vfrom);
105 } else {
106 vfrom = kmap_atomic(from, KM_USER0);
107 copy_page(vto, vfrom);
108 kunmap_atomic(vfrom, KM_USER0);
109 }
Paul Mundt2277ab42009-07-22 19:20:49 +0900110
Paul Mundt7e01c942009-12-04 15:14:52 +0900111 if (pages_do_alias((unsigned long)vto, vaddr & PAGE_MASK))
112 __flush_purge_region(vto, PAGE_SIZE);
113
Paul Mundt7747b9a2007-11-05 16:12:32 +0900114 kunmap_atomic(vto, KM_USER1);
115 /* Make sure this page is cleared on other CPU's too before using it */
116 smp_wmb();
117}
118EXPORT_SYMBOL(copy_user_highpage);
Paul Mundtdfff0fa2009-07-27 20:53:22 +0900119
120void clear_user_highpage(struct page *page, unsigned long vaddr)
121{
122 void *kaddr = kmap_atomic(page, KM_USER0);
123
Paul Mundt7e01c942009-12-04 15:14:52 +0900124 clear_page(kaddr);
Paul Mundtdfff0fa2009-07-27 20:53:22 +0900125
Paul Mundt7e01c942009-12-04 15:14:52 +0900126 if (pages_do_alias((unsigned long)kaddr, vaddr & PAGE_MASK))
127 __flush_purge_region(kaddr, PAGE_SIZE);
Paul Mundtdfff0fa2009-07-27 20:53:22 +0900128
129 kunmap_atomic(kaddr, KM_USER0);
130}
131EXPORT_SYMBOL(clear_user_highpage);
Paul Mundt9cef7492009-07-29 00:12:17 +0900132
133void __update_cache(struct vm_area_struct *vma,
134 unsigned long address, pte_t pte)
135{
136 struct page *page;
137 unsigned long pfn = pte_pfn(pte);
138
139 if (!boot_cpu_data.dcache.n_aliases)
140 return;
141
142 page = pfn_to_page(pfn);
Paul Mundt964f7e52009-10-13 11:18:34 +0900143 if (pfn_valid(pfn)) {
Paul Mundt55661fc2010-12-01 15:39:51 +0900144 int dirty = !test_and_set_bit(PG_dcache_clean, &page->flags);
Markus Pietrek76382b52009-12-24 15:12:02 +0900145 if (dirty)
146 __flush_purge_region(page_address(page), PAGE_SIZE);
Paul Mundt9cef7492009-07-29 00:12:17 +0900147 }
148}
Paul Mundtc0fe4782009-08-04 16:02:43 +0900149
150void __flush_anon_page(struct page *page, unsigned long vmaddr)
151{
152 unsigned long addr = (unsigned long) page_address(page);
153
154 if (pages_do_alias(addr, vmaddr)) {
155 if (boot_cpu_data.dcache.n_aliases && page_mapped(page) &&
Paul Mundt55661fc2010-12-01 15:39:51 +0900156 test_bit(PG_dcache_clean, &page->flags)) {
Paul Mundtc0fe4782009-08-04 16:02:43 +0900157 void *kaddr;
158
159 kaddr = kmap_coherent(page, vmaddr);
Paul Mundt6e4154d2009-09-08 16:21:00 +0900160 /* XXX.. For now kunmap_coherent() does a purge */
161 /* __flush_purge_region((void *)kaddr, PAGE_SIZE); */
Paul Mundt0906a3a2009-09-03 17:21:10 +0900162 kunmap_coherent(kaddr);
Paul Mundtc0fe4782009-08-04 16:02:43 +0900163 } else
Paul Mundt6e4154d2009-09-08 16:21:00 +0900164 __flush_purge_region((void *)addr, PAGE_SIZE);
Paul Mundtc0fe4782009-08-04 16:02:43 +0900165 }
166}
Paul Mundtecba1062009-08-15 11:05:42 +0900167
Paul Mundtf26b2a52009-08-21 17:23:14 +0900168void flush_cache_all(void)
169{
Paul Mundt6f379572009-09-01 21:21:36 +0900170 cacheop_on_each_cpu(local_flush_cache_all, NULL, 1);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900171}
Paul Mundt0a993b02009-10-27 10:51:35 +0900172EXPORT_SYMBOL(flush_cache_all);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900173
174void flush_cache_mm(struct mm_struct *mm)
175{
Paul Mundt654d3642009-09-09 14:04:06 +0900176 if (boot_cpu_data.dcache.n_aliases == 0)
177 return;
178
Paul Mundt6f379572009-09-01 21:21:36 +0900179 cacheop_on_each_cpu(local_flush_cache_mm, mm, 1);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900180}
181
182void flush_cache_dup_mm(struct mm_struct *mm)
183{
Paul Mundt654d3642009-09-09 14:04:06 +0900184 if (boot_cpu_data.dcache.n_aliases == 0)
185 return;
186
Paul Mundt6f379572009-09-01 21:21:36 +0900187 cacheop_on_each_cpu(local_flush_cache_dup_mm, mm, 1);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900188}
189
190void flush_cache_page(struct vm_area_struct *vma, unsigned long addr,
191 unsigned long pfn)
192{
193 struct flusher_data data;
194
195 data.vma = vma;
196 data.addr1 = addr;
197 data.addr2 = pfn;
198
Paul Mundt6f379572009-09-01 21:21:36 +0900199 cacheop_on_each_cpu(local_flush_cache_page, (void *)&data, 1);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900200}
201
202void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
203 unsigned long end)
204{
205 struct flusher_data data;
206
207 data.vma = vma;
208 data.addr1 = start;
209 data.addr2 = end;
210
Paul Mundt6f379572009-09-01 21:21:36 +0900211 cacheop_on_each_cpu(local_flush_cache_range, (void *)&data, 1);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900212}
Paul Mundt0a993b02009-10-27 10:51:35 +0900213EXPORT_SYMBOL(flush_cache_range);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900214
215void flush_dcache_page(struct page *page)
216{
Paul Mundt6f379572009-09-01 21:21:36 +0900217 cacheop_on_each_cpu(local_flush_dcache_page, page, 1);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900218}
Paul Mundt0a993b02009-10-27 10:51:35 +0900219EXPORT_SYMBOL(flush_dcache_page);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900220
221void flush_icache_range(unsigned long start, unsigned long end)
222{
223 struct flusher_data data;
224
225 data.vma = NULL;
226 data.addr1 = start;
227 data.addr2 = end;
228
Paul Mundt6f379572009-09-01 21:21:36 +0900229 cacheop_on_each_cpu(local_flush_icache_range, (void *)&data, 1);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900230}
231
232void flush_icache_page(struct vm_area_struct *vma, struct page *page)
233{
234 /* Nothing uses the VMA, so just pass the struct page along */
Paul Mundt6f379572009-09-01 21:21:36 +0900235 cacheop_on_each_cpu(local_flush_icache_page, page, 1);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900236}
237
238void flush_cache_sigtramp(unsigned long address)
239{
Paul Mundt6f379572009-09-01 21:21:36 +0900240 cacheop_on_each_cpu(local_flush_cache_sigtramp, (void *)address, 1);
Paul Mundtf26b2a52009-08-21 17:23:14 +0900241}
242
Paul Mundt27d59ec2009-08-15 11:11:16 +0900243static void compute_alias(struct cache_info *c)
244{
245 c->alias_mask = ((c->sets - 1) << c->entry_shift) & ~(PAGE_SIZE - 1);
246 c->n_aliases = c->alias_mask ? (c->alias_mask >> PAGE_SHIFT) + 1 : 0;
247}
248
249static void __init emit_cache_params(void)
250{
251 printk(KERN_NOTICE "I-cache : n_ways=%d n_sets=%d way_incr=%d\n",
252 boot_cpu_data.icache.ways,
253 boot_cpu_data.icache.sets,
254 boot_cpu_data.icache.way_incr);
255 printk(KERN_NOTICE "I-cache : entry_mask=0x%08x alias_mask=0x%08x n_aliases=%d\n",
256 boot_cpu_data.icache.entry_mask,
257 boot_cpu_data.icache.alias_mask,
258 boot_cpu_data.icache.n_aliases);
259 printk(KERN_NOTICE "D-cache : n_ways=%d n_sets=%d way_incr=%d\n",
260 boot_cpu_data.dcache.ways,
261 boot_cpu_data.dcache.sets,
262 boot_cpu_data.dcache.way_incr);
263 printk(KERN_NOTICE "D-cache : entry_mask=0x%08x alias_mask=0x%08x n_aliases=%d\n",
264 boot_cpu_data.dcache.entry_mask,
265 boot_cpu_data.dcache.alias_mask,
266 boot_cpu_data.dcache.n_aliases);
267
268 /*
269 * Emit Secondary Cache parameters if the CPU has a probed L2.
270 */
271 if (boot_cpu_data.flags & CPU_HAS_L2_CACHE) {
272 printk(KERN_NOTICE "S-cache : n_ways=%d n_sets=%d way_incr=%d\n",
273 boot_cpu_data.scache.ways,
274 boot_cpu_data.scache.sets,
275 boot_cpu_data.scache.way_incr);
276 printk(KERN_NOTICE "S-cache : entry_mask=0x%08x alias_mask=0x%08x n_aliases=%d\n",
277 boot_cpu_data.scache.entry_mask,
278 boot_cpu_data.scache.alias_mask,
279 boot_cpu_data.scache.n_aliases);
280 }
281}
282
Paul Mundtecba1062009-08-15 11:05:42 +0900283void __init cpu_cache_init(void)
284{
Paul Mundt3af539e2009-11-12 17:03:28 +0900285 unsigned int cache_disabled = 0;
286
287#ifdef CCR
288 cache_disabled = !(__raw_readl(CCR) & CCR_CACHE_ENABLE);
289#endif
Magnus Damm5fb80ae2009-10-16 14:38:48 +0900290
Paul Mundt27d59ec2009-08-15 11:11:16 +0900291 compute_alias(&boot_cpu_data.icache);
292 compute_alias(&boot_cpu_data.dcache);
293 compute_alias(&boot_cpu_data.scache);
294
Paul Mundt37443ef2009-08-15 12:29:49 +0900295 __flush_wback_region = noop__flush_region;
296 __flush_purge_region = noop__flush_region;
297 __flush_invalidate_region = noop__flush_region;
298
Magnus Damm5fb80ae2009-10-16 14:38:48 +0900299 /*
300 * No flushing is necessary in the disabled cache case so we can
301 * just keep the noop functions in local_flush_..() and __flush_..()
302 */
303 if (unlikely(cache_disabled))
304 goto skip;
305
Paul Mundt109b44a2009-08-15 12:35:15 +0900306 if (boot_cpu_data.family == CPU_FAMILY_SH2) {
307 extern void __weak sh2_cache_init(void);
308
309 sh2_cache_init();
310 }
311
Paul Mundta58e1a22009-08-15 12:38:29 +0900312 if (boot_cpu_data.family == CPU_FAMILY_SH2A) {
313 extern void __weak sh2a_cache_init(void);
314
315 sh2a_cache_init();
316 }
317
Paul Mundt79f1c9d2009-08-15 12:42:55 +0900318 if (boot_cpu_data.family == CPU_FAMILY_SH3) {
319 extern void __weak sh3_cache_init(void);
320
321 sh3_cache_init();
Paul Mundt0d051d92009-08-15 12:53:39 +0900322
323 if ((boot_cpu_data.type == CPU_SH7705) &&
324 (boot_cpu_data.dcache.sets == 512)) {
325 extern void __weak sh7705_cache_init(void);
326
327 sh7705_cache_init();
328 }
Paul Mundt79f1c9d2009-08-15 12:42:55 +0900329 }
330
Paul Mundtecba1062009-08-15 11:05:42 +0900331 if ((boot_cpu_data.family == CPU_FAMILY_SH4) ||
332 (boot_cpu_data.family == CPU_FAMILY_SH4A) ||
333 (boot_cpu_data.family == CPU_FAMILY_SH4AL_DSP)) {
334 extern void __weak sh4_cache_init(void);
335
336 sh4_cache_init();
Paul Mundt3cf6fa12010-04-19 17:27:17 +0900337
338 if ((boot_cpu_data.type == CPU_SH7786) ||
339 (boot_cpu_data.type == CPU_SHX3)) {
340 extern void __weak shx3_cache_init(void);
341
342 shx3_cache_init();
343 }
Paul Mundtecba1062009-08-15 11:05:42 +0900344 }
Paul Mundt27d59ec2009-08-15 11:11:16 +0900345
Paul Mundt2b431512009-08-16 02:16:44 +0900346 if (boot_cpu_data.family == CPU_FAMILY_SH5) {
347 extern void __weak sh5_cache_init(void);
348
349 sh5_cache_init();
350 }
351
Magnus Damm5fb80ae2009-10-16 14:38:48 +0900352skip:
Paul Mundt27d59ec2009-08-15 11:11:16 +0900353 emit_cache_params();
Paul Mundtecba1062009-08-15 11:05:42 +0900354}