cacheflush.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * include/asm-v850/cacheflush.h
  3. *
  4. * Copyright (C) 2001,02,03 NEC Electronics Corporation
  5. * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
  6. *
  7. * This file is subject to the terms and conditions of the GNU General
  8. * Public License. See the file COPYING in the main directory of this
  9. * archive for more details.
  10. *
  11. * Written by Miles Bader <miles@gnu.org>
  12. */
  13. #ifndef __V850_CACHEFLUSH_H__
  14. #define __V850_CACHEFLUSH_H__
  15. /* Somebody depends on this; sigh... */
  16. #include <linux/mm.h>
  17. #include <asm/machdep.h>
  18. /* The following are all used by the kernel in ways that only affect
  19. systems with MMUs, so we don't need them. */
  20. #define flush_cache_all() ((void)0)
  21. #define flush_cache_mm(mm) ((void)0)
  22. #define flush_cache_dup_mm(mm) ((void)0)
  23. #define flush_cache_range(vma, start, end) ((void)0)
  24. #define flush_cache_page(vma, vmaddr, pfn) ((void)0)
  25. #define flush_dcache_page(page) ((void)0)
  26. #define flush_dcache_mmap_lock(mapping) ((void)0)
  27. #define flush_dcache_mmap_unlock(mapping) ((void)0)
  28. #define flush_cache_vmap(start, end) ((void)0)
  29. #define flush_cache_vunmap(start, end) ((void)0)
  30. #ifdef CONFIG_NO_CACHE
  31. /* Some systems have no cache at all, in which case we don't need these
  32. either. */
  33. #define flush_icache() ((void)0)
  34. #define flush_icache_range(start, end) ((void)0)
  35. #define flush_icache_page(vma,pg) ((void)0)
  36. #define flush_icache_user_range(vma,pg,adr,len) ((void)0)
  37. #define flush_cache_sigtramp(vaddr) ((void)0)
  38. #else /* !CONFIG_NO_CACHE */
  39. struct page;
  40. struct mm_struct;
  41. struct vm_area_struct;
  42. /* Otherwise, somebody had better define them. */
  43. extern void flush_icache (void);
  44. extern void flush_icache_range (unsigned long start, unsigned long end);
  45. extern void flush_icache_page (struct vm_area_struct *vma, struct page *page);
  46. extern void flush_icache_user_range (struct vm_area_struct *vma,
  47. struct page *page,
  48. unsigned long adr, int len);
  49. extern void flush_cache_sigtramp (unsigned long addr);
  50. #endif /* CONFIG_NO_CACHE */
  51. #define copy_to_user_page(vma, page, vaddr, dst, src, len) \
  52. do { memcpy(dst, src, len); \
  53. flush_icache_user_range(vma, page, vaddr, len); \
  54. } while (0)
  55. #define copy_from_user_page(vma, page, vaddr, dst, src, len) \
  56. memcpy(dst, src, len)
  57. #endif /* __V850_CACHEFLUSH_H__ */