diff options
Diffstat (limited to 'arch/sh/mm/cache-shx3.c')
-rw-r--r-- | arch/sh/mm/cache-shx3.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/sh/mm/cache-shx3.c b/arch/sh/mm/cache-shx3.c new file mode 100644 index 000000000000..65936c4fef03 --- /dev/null +++ b/arch/sh/mm/cache-shx3.c | |||
@@ -0,0 +1,35 @@ | |||
1 | /* | ||
2 | * arch/sh/mm/cache-shx3.c - SH-X3 optimized cache ops | ||
3 | * | ||
4 | * Copyright (C) 2010 Paul Mundt | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of the GNU General Public | ||
7 | * License. See the file "COPYING" in the main directory of this archive | ||
8 | * for more details. | ||
9 | */ | ||
10 | #include <linux/init.h> | ||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/io.h> | ||
13 | #include <asm/cache.h> | ||
14 | |||
15 | #define CCR_CACHE_SNM 0x40000 /* Hardware-assisted synonym avoidance */ | ||
16 | #define CCR_CACHE_IBE 0x1000000 /* ICBI broadcast */ | ||
17 | |||
18 | void __init shx3_cache_init(void) | ||
19 | { | ||
20 | unsigned int ccr; | ||
21 | |||
22 | ccr = __raw_readl(CCR); | ||
23 | |||
24 | if (boot_cpu_data.dcache.n_aliases) | ||
25 | ccr |= CCR_CACHE_SNM; | ||
26 | |||
27 | #ifdef CONFIG_SMP | ||
28 | /* | ||
29 | * Broadcast I-cache block invalidations by default. | ||
30 | */ | ||
31 | ccr |= CCR_CACHE_IBE; | ||
32 | #endif | ||
33 | |||
34 | writel_uncached(ccr, CCR); | ||
35 | } | ||