Blame view

arch/sh/mm/cache-shx3.c 1 KB
3cf6fa1e3   Paul Mundt   sh: Enable SH-X3 ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  /*
   * 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;
a5f6ea29f   Geert Uytterhoeven   sh: prefix sh-spe...
21
  	ccr = __raw_readl(SH_CCR);
3cf6fa1e3   Paul Mundt   sh: Enable SH-X3 ...
22

88253e845   Paul Mundt   sh: Zero out alia...
23
24
25
26
  	/*
  	 * If we've got cache aliases, resolve them in hardware.
  	 */
  	if (boot_cpu_data.dcache.n_aliases || boot_cpu_data.icache.n_aliases) {
3cf6fa1e3   Paul Mundt   sh: Enable SH-X3 ...
27
  		ccr |= CCR_CACHE_SNM;
88253e845   Paul Mundt   sh: Zero out alia...
28
29
30
31
32
33
  		boot_cpu_data.icache.n_aliases = 0;
  		boot_cpu_data.dcache.n_aliases = 0;
  
  		pr_info("Enabling hardware synonym avoidance
  ");
  	}
3cf6fa1e3   Paul Mundt   sh: Enable SH-X3 ...
34
35
36
37
38
39
  #ifdef CONFIG_SMP
  	/*
  	 * Broadcast I-cache block invalidations by default.
  	 */
  	ccr |= CCR_CACHE_IBE;
  #endif
a5f6ea29f   Geert Uytterhoeven   sh: prefix sh-spe...
40
  	writel_uncached(ccr, SH_CCR);
3cf6fa1e3   Paul Mundt   sh: Enable SH-X3 ...
41
  }