aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/mm/cache.c
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2009-08-15 12:53:39 +0900
committerPaul Mundt <lethal@linux-sh.org>2009-08-15 12:53:39 +0900
commit0d051d90bb08b516b9d6c30d25f83d3c6b5b1c1d (patch)
treeeb4a84153cf9b7f3b6d7814e7ad61644fff75097 /arch/sh/mm/cache.c
parentsh: Convert SH-3 to new cacheflush interface. (diff)
downloadlinux-dev-0d051d90bb08b516b9d6c30d25f83d3c6b5b1c1d.tar.xz
linux-dev-0d051d90bb08b516b9d6c30d25f83d3c6b5b1c1d.zip
sh: Convert SH7705 extended mode to new cacheflush interface.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm/cache.c')
-rw-r--r--arch/sh/mm/cache.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/sh/mm/cache.c b/arch/sh/mm/cache.c
index c9480b48c746..8618ccdc1ca5 100644
--- a/arch/sh/mm/cache.c
+++ b/arch/sh/mm/cache.c
@@ -260,6 +260,13 @@ void __init cpu_cache_init(void)
extern void __weak sh3_cache_init(void);
sh3_cache_init();
+
+ if ((boot_cpu_data.type == CPU_SH7705) &&
+ (boot_cpu_data.dcache.sets == 512)) {
+ extern void __weak sh7705_cache_init(void);
+
+ sh7705_cache_init();
+ }
}
if ((boot_cpu_data.family == CPU_FAMILY_SH4) ||