cache-shx3.c 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * arch/sh/mm/cache-shx3.c - SH-X3 optimized cache ops
  3. *
  4. * Copyright (C) 2010 Paul Mundt
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #include <linux/init.h>
  11. #include <linux/kernel.h>
  12. #include <linux/io.h>
  13. #include <asm/cache.h>
  14. #include <asm/cacheflush.h>
  15. #define CCR_CACHE_SNM 0x40000 /* Hardware-assisted synonym avoidance */
  16. #define CCR_CACHE_IBE 0x1000000 /* ICBI broadcast */
  17. void __init shx3_cache_init(void)
  18. {
  19. unsigned int ccr;
  20. ccr = __raw_readl(SH_CCR);
  21. /*
  22. * If we've got cache aliases, resolve them in hardware.
  23. */
  24. if (boot_cpu_data.dcache.n_aliases || boot_cpu_data.icache.n_aliases) {
  25. ccr |= CCR_CACHE_SNM;
  26. boot_cpu_data.icache.n_aliases = 0;
  27. boot_cpu_data.dcache.n_aliases = 0;
  28. pr_info("Enabling hardware synonym avoidance\n");
  29. }
  30. #ifdef CONFIG_SMP
  31. /*
  32. * Broadcast I-cache block invalidations by default.
  33. */
  34. ccr |= CCR_CACHE_IBE;
  35. #endif
  36. writel_uncached(ccr, SH_CCR);
  37. }