cacheflush.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * include/asm-sh/cpu-sh4/cacheflush.h
  3. *
  4. * Copyright (C) 1999 Niibe Yutaka
  5. * Copyright (C) 2003 Paul Mundt
  6. *
  7. * This file is subject to the terms and conditions of the GNU General Public
  8. * License. See the file "COPYING" in the main directory of this archive
  9. * for more details.
  10. */
  11. #ifndef __ASM_CPU_SH4_CACHEFLUSH_H
  12. #define __ASM_CPU_SH4_CACHEFLUSH_H
  13. /*
  14. * Caches are broken on SH-4 (unless we use write-through
  15. * caching; in which case they're only semi-broken),
  16. * so we need them.
  17. */
  18. void flush_cache_all(void);
  19. void flush_cache_mm(struct mm_struct *mm);
  20. #define flush_cache_dup_mm(mm) flush_cache_mm(mm)
  21. void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
  22. unsigned long end);
  23. void flush_cache_page(struct vm_area_struct *vma, unsigned long addr,
  24. unsigned long pfn);
  25. void flush_dcache_page(struct page *pg);
  26. #define flush_dcache_mmap_lock(mapping) do { } while (0)
  27. #define flush_dcache_mmap_unlock(mapping) do { } while (0)
  28. void flush_icache_range(unsigned long start, unsigned long end);
  29. void flush_cache_sigtramp(unsigned long addr);
  30. void flush_icache_user_range(struct vm_area_struct *vma, struct page *page,
  31. unsigned long addr, int len);
  32. #define flush_icache_page(vma,pg) do { } while (0)
  33. /* Initialization of P3 area for copy_user_page */
  34. void p3_cache_init(void);
  35. #define PG_mapped PG_arch_1
  36. #ifdef CONFIG_MMU
  37. extern int remap_area_pages(unsigned long addr, unsigned long phys_addr,
  38. unsigned long size, unsigned long flags);
  39. #else /* CONFIG_MMU */
  40. static inline int remap_area_pages(unsigned long addr, unsigned long phys_addr,
  41. unsigned long size, unsigned long flags)
  42. {
  43. return 0;
  44. }
  45. #endif /* CONFIG_MMU */
  46. #endif /* __ASM_CPU_SH4_CACHEFLUSH_H */