Merge tag 'blackfin-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/realm...
[linux-2.6.git] / arch / hexagon / mm / cache.c
blobfe14ccf285613c39f8801a8ca29389c5df6afa44
1 /*
2 * Cache management functions for Hexagon
4 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 and
8 * only version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA.
21 #include <linux/mm.h>
22 #include <asm/cacheflush.h>
23 #include <asm/hexagon_vm.h>
25 #define spanlines(start, end) \
26 (((end - (start & ~(LINESIZE - 1))) >> LINEBITS) + 1)
28 void flush_dcache_range(unsigned long start, unsigned long end)
30 unsigned long lines = spanlines(start, end-1);
31 unsigned long i, flags;
33 start &= ~(LINESIZE - 1);
35 local_irq_save(flags);
37 for (i = 0; i < lines; i++) {
38 __asm__ __volatile__ (
39 " dccleaninva(%0); "
41 : "r" (start)
43 start += LINESIZE;
45 local_irq_restore(flags);
48 void flush_icache_range(unsigned long start, unsigned long end)
50 unsigned long lines = spanlines(start, end-1);
51 unsigned long i, flags;
53 start &= ~(LINESIZE - 1);
55 local_irq_save(flags);
57 for (i = 0; i < lines; i++) {
58 __asm__ __volatile__ (
59 " dccleana(%0); "
60 " icinva(%0); "
62 : "r" (start)
64 start += LINESIZE;
66 __asm__ __volatile__ (
67 "isync"
69 local_irq_restore(flags);
72 void hexagon_clean_dcache_range(unsigned long start, unsigned long end)
74 unsigned long lines = spanlines(start, end-1);
75 unsigned long i, flags;
77 start &= ~(LINESIZE - 1);
79 local_irq_save(flags);
81 for (i = 0; i < lines; i++) {
82 __asm__ __volatile__ (
83 " dccleana(%0); "
85 : "r" (start)
87 start += LINESIZE;
89 local_irq_restore(flags);
92 void hexagon_inv_dcache_range(unsigned long start, unsigned long end)
94 unsigned long lines = spanlines(start, end-1);
95 unsigned long i, flags;
97 start &= ~(LINESIZE - 1);
99 local_irq_save(flags);
101 for (i = 0; i < lines; i++) {
102 __asm__ __volatile__ (
103 " dcinva(%0); "
105 : "r" (start)
107 start += LINESIZE;
109 local_irq_restore(flags);
116 * This is just really brutal and shouldn't be used anyways,
117 * especially on V2. Left here just in case.
119 void flush_cache_all_hexagon(void)
121 unsigned long flags;
122 local_irq_save(flags);
123 __vmcache_ickill();
124 __vmcache_dckill();
125 __vmcache_l2kill();
126 local_irq_restore(flags);
127 mb();