/*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>13#include <asm/cacheflush.h>1415#define CCR_CACHE_SNM 0x40000 /* Hardware-assisted synonym avoidance */16#define CCR_CACHE_IBE 0x1000000 /* ICBI broadcast */1718void __init shx3_cache_init(void)19{20unsigned int ccr;2122ccr = __raw_readl(SH_CCR);2324/*25* If we've got cache aliases, resolve them in hardware.26*/27if (boot_cpu_data.dcache.n_aliases || boot_cpu_data.icache.n_aliases) {28ccr |= CCR_CACHE_SNM;2930boot_cpu_data.icache.n_aliases = 0;31boot_cpu_data.dcache.n_aliases = 0;3233pr_info("Enabling hardware synonym avoidance\n");34}3536#ifdef CONFIG_SMP37/*38* Broadcast I-cache block invalidations by default.39*/40ccr |= CCR_CACHE_IBE;41#endif4243writel_uncached(ccr, SH_CCR);44}454647