/*1* arch/sh/mm/cache-shx3.c - SH-X3 optimized cache ops2*3* Copyright (C) 2010 Paul Mundt4*5* This file is subject to the terms and conditions of the GNU General Public6* License. See the file "COPYING" in the main directory of this archive7* for more details.8*/9#include <linux/init.h>10#include <linux/kernel.h>11#include <linux/io.h>12#include <asm/cache.h>1314#define CCR_CACHE_SNM 0x40000 /* Hardware-assisted synonym avoidance */15#define CCR_CACHE_IBE 0x1000000 /* ICBI broadcast */1617void __init shx3_cache_init(void)18{19unsigned int ccr;2021ccr = __raw_readl(CCR);2223/*24* If we've got cache aliases, resolve them in hardware.25*/26if (boot_cpu_data.dcache.n_aliases || boot_cpu_data.icache.n_aliases) {27ccr |= CCR_CACHE_SNM;2829boot_cpu_data.icache.n_aliases = 0;30boot_cpu_data.dcache.n_aliases = 0;3132pr_info("Enabling hardware synonym avoidance\n");33}3435#ifdef CONFIG_SMP36/*37* Broadcast I-cache block invalidations by default.38*/39ccr |= CCR_CACHE_IBE;40#endif4142writel_uncached(ccr, CCR);43}444546