cache.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* MN10300 Cache flushing routines
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #include <linux/module.h>
  12. #include <linux/mm.h>
  13. #include <linux/mman.h>
  14. #include <linux/threads.h>
  15. #include <asm/page.h>
  16. #include <asm/pgtable.h>
  17. #include <asm/processor.h>
  18. #include <asm/cacheflush.h>
  19. #include <asm/io.h>
  20. #include <asm/uaccess.h>
  21. #include <asm/smp.h>
  22. #include "cache-smp.h"
  23. EXPORT_SYMBOL(mn10300_icache_inv);
  24. EXPORT_SYMBOL(mn10300_icache_inv_range);
  25. EXPORT_SYMBOL(mn10300_icache_inv_range2);
  26. EXPORT_SYMBOL(mn10300_icache_inv_page);
  27. EXPORT_SYMBOL(mn10300_dcache_inv);
  28. EXPORT_SYMBOL(mn10300_dcache_inv_range);
  29. EXPORT_SYMBOL(mn10300_dcache_inv_range2);
  30. EXPORT_SYMBOL(mn10300_dcache_inv_page);
  31. #ifdef CONFIG_MN10300_CACHE_WBACK
  32. EXPORT_SYMBOL(mn10300_dcache_flush);
  33. EXPORT_SYMBOL(mn10300_dcache_flush_inv);
  34. EXPORT_SYMBOL(mn10300_dcache_flush_inv_range);
  35. EXPORT_SYMBOL(mn10300_dcache_flush_inv_range2);
  36. EXPORT_SYMBOL(mn10300_dcache_flush_inv_page);
  37. EXPORT_SYMBOL(mn10300_dcache_flush_range);
  38. EXPORT_SYMBOL(mn10300_dcache_flush_range2);
  39. EXPORT_SYMBOL(mn10300_dcache_flush_page);
  40. #endif
  41. /*
  42. * allow userspace to flush the instruction cache
  43. */
  44. asmlinkage long sys_cacheflush(unsigned long start, unsigned long end)
  45. {
  46. if (end < start)
  47. return -EINVAL;
  48. flush_icache_range(start, end);
  49. return 0;
  50. }