-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sh: Enable SH-X3 hardware synonym avoidance handling.
This enables support for the hardware synonym avoidance handling on SH-X3 CPUs for the case where dcache aliases are possible. icache handling is retained, but we flip on broadcasting of the block invalidations due to the lack of coherency otherwise on SMP. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
- Loading branch information
Paul Mundt
committed
Apr 19, 2010
1 parent
d9c9444
commit 3cf6fa1
Showing
3 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* arch/sh/mm/cache-shx3.c - SH-X3 optimized cache ops | ||
* | ||
* Copyright (C) 2010 Paul Mundt | ||
* | ||
* This file is subject to the terms and conditions of the GNU General Public | ||
* License. See the file "COPYING" in the main directory of this archive | ||
* for more details. | ||
*/ | ||
#include <linux/init.h> | ||
#include <linux/kernel.h> | ||
#include <linux/io.h> | ||
#include <asm/cache.h> | ||
|
||
#define CCR_CACHE_SNM 0x40000 /* Hardware-assisted synonym avoidance */ | ||
#define CCR_CACHE_IBE 0x1000000 /* ICBI broadcast */ | ||
|
||
void __init shx3_cache_init(void) | ||
{ | ||
unsigned int ccr; | ||
|
||
ccr = __raw_readl(CCR); | ||
|
||
if (boot_cpu_data.dcache.n_aliases) | ||
ccr |= CCR_CACHE_SNM; | ||
|
||
#ifdef CONFIG_SMP | ||
/* | ||
* Broadcast I-cache block invalidations by default. | ||
*/ | ||
ccr |= CCR_CACHE_IBE; | ||
#endif | ||
|
||
writel_uncached(ccr, CCR); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters